├── .github └── workflows │ ├── ansible-test.yml │ └── galaxy-importer.cfg ├── .gitignore ├── CHANGELOG.rst ├── Dockerfile ├── Dockerfile_integration ├── LICENSE ├── README.md ├── __init__.py ├── ansible.cfg ├── changelogs ├── .plugin-cache.yaml ├── changelog.yaml └── config.yaml ├── docs ├── running_in_docker.md └── usage.md ├── galaxy.yml ├── inventory └── sample_hosts ├── meta └── runtime.yml ├── plugins ├── httpapi │ ├── __init__.py │ ├── client.py │ └── fmc.py ├── module_utils │ ├── __init__.py │ ├── common.py │ ├── configuration.py │ └── fmc_swagger_client.py └── modules │ ├── __init__.py │ └── fmc_configuration.py ├── requirements.txt ├── samples ├── docs │ ├── components │ │ ├── access_policy.md │ │ ├── access_policy_category.md │ │ ├── access_policy_category_list_container.md │ │ ├── access_policy_category_metadata.md │ │ ├── access_policy_inheritance_setting.md │ │ ├── access_policy_inheritance_setting_list_container.md │ │ ├── access_policy_list_container.md │ │ ├── access_policy_logging_setting_model.md │ │ ├── access_policy_logging_setting_model_list_container.md │ │ ├── access_policy_security_intelligence_policy.md │ │ ├── access_policy_security_intelligence_policy_list_container.md │ │ ├── access_rule.md │ │ ├── access_rule_list_container.md │ │ ├── access_rule_metadata.md │ │ ├── allow_dns_rule.md │ │ ├── allow_dns_rule_list_container.md │ │ ├── any_connect_custom_attribute_model.md │ │ ├── any_connect_custom_attribute_model_list_container.md │ │ ├── any_connect_custom_attribute_override.md │ │ ├── any_connect_custom_attribute_override_list_container.md │ │ ├── any_connect_external_browser_package_model.md │ │ ├── any_connect_external_browser_package_model_list_container.md │ │ ├── any_connect_package_model.md │ │ ├── any_connect_package_model_list_container.md │ │ ├── any_connect_profile_model.md │ │ ├── any_connect_profile_model_list_container.md │ │ ├── any_protocol_port_object.md │ │ ├── any_protocol_port_object_list_container.md │ │ ├── applicable_device.md │ │ ├── applicable_device_list_container.md │ │ ├── application.md │ │ ├── application_category.md │ │ ├── application_category_list_container.md │ │ ├── application_filter.md │ │ ├── application_filter_list_container.md │ │ ├── application_list_container.md │ │ ├── application_productivity.md │ │ ├── application_productivity_list_container.md │ │ ├── application_risk.md │ │ ├── application_risk_list_container.md │ │ ├── application_tag.md │ │ ├── application_tag_list_container.md │ │ ├── application_type.md │ │ ├── application_type_list_container.md │ │ ├── archive_snapshot.md │ │ ├── as_path_list.md │ │ ├── as_path_list_list_container.md │ │ ├── attributes.md │ │ ├── audit_model.md │ │ ├── audit_model_list_container.md │ │ ├── auth_roles.md │ │ ├── auth_roles_list_container.md │ │ ├── backup.md │ │ ├── backup_file.md │ │ ├── backup_file_list_container.md │ │ ├── backup_metadata.md │ │ ├── bfd_policy_model.md │ │ ├── bfd_policy_model_list_container.md │ │ ├── bfd_policy_model_meta_data.md │ │ ├── bfd_template.md │ │ ├── bfd_template_list_container.md │ │ ├── bgp_general_setting_model.md │ │ ├── bgp_general_setting_model_list_container.md │ │ ├── bgpi_pv_address_family_model.md │ │ ├── bgpi_pv_address_family_model_list_container.md │ │ ├── block_dns_rule.md │ │ ├── block_dns_rule_list_container.md │ │ ├── breakout_interface.md │ │ ├── cancel_upgrade.md │ │ ├── cert_enrollment_status.md │ │ ├── certificate_info.md │ │ ├── certificate_map_model.md │ │ ├── certificate_map_model_list_container.md │ │ ├── change_config_manager_ftd_metadata.md │ │ ├── change_config_manager_ftd_request.md │ │ ├── chassis_interface.md │ │ ├── chassis_interface_list_container.md │ │ ├── chassis_interface_metadata.md │ │ ├── cloud_events.md │ │ ├── cloud_events_list_container.md │ │ ├── cloud_region.md │ │ ├── cloud_region_list_container.md │ │ ├── cluster_health_monitor_setting_metadata.md │ │ ├── cluster_health_monitor_settings_model.md │ │ ├── commands.md │ │ ├── commands_list_container.md │ │ ├── community_list.md │ │ ├── community_list_list_container.md │ │ ├── config.json │ │ ├── continent_object.md │ │ ├── continent_object_list_container.md │ │ ├── country_object.md │ │ ├── country_object_list_container.md │ │ ├── csdac_status.md │ │ ├── csdac_status_list_container.md │ │ ├── custom_upgrade.md │ │ ├── dap_authorization_attributes.md │ │ ├── default_action.md │ │ ├── default_action_list_container.md │ │ ├── deployable_device.md │ │ ├── deployable_device_list_container.md │ │ ├── deployment_detail.md │ │ ├── deployment_detail_list_container.md │ │ ├── deployment_request.md │ │ ├── deployment_request_metadata.md │ │ ├── device.md │ │ ├── device_backup.md │ │ ├── device_chassis_data.md │ │ ├── device_copy_config_request.md │ │ ├── device_credentials_entry.md │ │ ├── device_entry.md │ │ ├── device_export.md │ │ ├── device_group.md │ │ ├── device_group_list_container.md │ │ ├── device_import.md │ │ ├── device_import_export_metadata.md │ │ ├── device_import_export_options.md │ │ ├── device_inventory_data.md │ │ ├── device_license.md │ │ ├── device_license_list_container.md │ │ ├── device_list_container.md │ │ ├── device_metadata.md │ │ ├── device_settings.md │ │ ├── device_settings_list_container.md │ │ ├── dhcpi_pv6_other_server_options.md │ │ ├── dhcpi_pv6_pool.md │ │ ├── dhcpi_pv6_pool_list_container.md │ │ ├── dns_policy.md │ │ ├── dns_policy_list_container.md │ │ ├── dns_server_group_object.md │ │ ├── dns_server_group_object_list_container.md │ │ ├── dns_server_group_override.md │ │ ├── dns_server_group_override_list_container.md │ │ ├── domain.md │ │ ├── domain_list_container.md │ │ ├── download_backup.md │ │ ├── download_internal_ca.md │ │ ├── download_report.md │ │ ├── download_report_list_container.md │ │ ├── duo_config.md │ │ ├── duo_config_list_container.md │ │ ├── duration.md │ │ ├── dynamic_access_policy.md │ │ ├── dynamic_access_policy_list_container.md │ │ ├── dynamic_attribute_feed_config.md │ │ ├── dynamic_attribute_feed_config_list_container.md │ │ ├── dynamic_object.md │ │ ├── dynamic_object_bulk.md │ │ ├── dynamic_object_bulk_remove.md │ │ ├── dynamic_object_list_container.md │ │ ├── dynamic_object_mappings.md │ │ ├── dynamic_object_mappings_bulk.md │ │ ├── dynamic_object_mappings_list_container.md │ │ ├── dynamic_object_metadata.md │ │ ├── dynamic_object_with_mappings_bulk.md │ │ ├── dynamic_objects_bulk.md │ │ ├── ebs_snapshot.md │ │ ├── ecmp_zone_model.md │ │ ├── ecmp_zone_model_list_container.md │ │ ├── eigrp_distribution_list_model.md │ │ ├── eigrp_interface_model.md │ │ ├── eigrp_neighbor_model.md │ │ ├── eigrp_policy_model.md │ │ ├── eigrp_policy_model_list_container.md │ │ ├── eigrp_redistribution_model.md │ │ ├── eigrp_summary_address_model.md │ │ ├── email_report.md │ │ ├── end_point_device_type.md │ │ ├── end_point_device_type_list_container.md │ │ ├── epm_request_metadata.md │ │ ├── error_messages_container.md │ │ ├── error_response.md │ │ ├── evaluate_chassis_operation.md │ │ ├── evaluate_chassis_operation_list_container.md │ │ ├── expanded_community_list.md │ │ ├── expanded_community_list_list_container.md │ │ ├── expiration_life_time.md │ │ ├── extended_access_list_model.md │ │ ├── extended_access_list_model_list_container.md │ │ ├── extended_community_list.md │ │ ├── extended_community_list_list_container.md │ │ ├── extended_community_list_override.md │ │ ├── extended_community_list_override_list_container.md │ │ ├── external_lookup.md │ │ ├── external_lookup_list_container.md │ │ ├── external_storage.md │ │ ├── external_storage_list_container.md │ │ ├── file_policy.md │ │ ├── file_policy_list_container.md │ │ ├── flex_config.md │ │ ├── flex_config_list_container.md │ │ ├── flex_config_migration.md │ │ ├── fmc_managed_chassis.md │ │ ├── fmc_managed_chassis_list_container.md │ │ ├── fmcha_status.md │ │ ├── fmcha_status_list_container.md │ │ ├── fp_interface_statistics.md │ │ ├── fp_interface_statistics_list_container.md │ │ ├── fp_logical_interface.md │ │ ├── fp_logical_interface_list_container.md │ │ ├── fp_physical_interface.md │ │ ├── fp_physical_interface_list_container.md │ │ ├── fqdn_object.md │ │ ├── fqdn_object_list_container.md │ │ ├── fqdn_override.md │ │ ├── fqdn_override_list_container.md │ │ ├── ftd_all_interfaces_model.md │ │ ├── ftd_all_interfaces_model_list_container.md │ │ ├── ftd_auto_nat_rule.md │ │ ├── ftd_auto_nat_rule_list_container.md │ │ ├── ftd_base_interface.md │ │ ├── ftd_bridge_group_interface.md │ │ ├── ftd_bridge_group_interface_list_container.md │ │ ├── ftd_cluster_device_command_container.md │ │ ├── ftd_cluster_device_readiness_container.md │ │ ├── ftd_ether_channel_interface.md │ │ ├── ftd_ether_channel_interface_list_container.md │ │ ├── ftd_loopback_interface.md │ │ ├── ftd_loopback_interface_list_container.md │ │ ├── ftd_manual_nat_rule.md │ │ ├── ftd_manual_nat_rule_list_container.md │ │ ├── ftd_nat_policy.md │ │ ├── ftd_nat_policy_list_container.md │ │ ├── ftd_nat_rule.md │ │ ├── ftd_nat_rule_list_container.md │ │ ├── ftd_physical_interface.md │ │ ├── ftd_physical_interface_list_container.md │ │ ├── ftd_platform_settings_policy.md │ │ ├── ftd_platform_settings_policy_list_container.md │ │ ├── ftd_redundant_interface.md │ │ ├── ftd_redundant_interface_list_container.md │ │ ├── ftd_sub_interface.md │ │ ├── ftd_sub_interface_list_container.md │ │ ├── ftd_vlan_interface.md │ │ ├── ftd_vlan_interface_list_container.md │ │ ├── ftdha_device_container.md │ │ ├── ftdha_device_container_list_container.md │ │ ├── ftdha_interface_mac_addresses.md │ │ ├── ftdha_interface_mac_addresses_list_container.md │ │ ├── ftdha_monitored_interfaces.md │ │ ├── ftdha_monitored_interfaces_list_container.md │ │ ├── ftdhai_pv4_configuration.md │ │ ├── ftdhai_pv6_configuration.md │ │ ├── ftdra_vpn_address_assignment_setting.md │ │ ├── ftdra_vpn_address_assignment_setting_list_container.md │ │ ├── ftdra_vpn_certificate_map_settings.md │ │ ├── ftdra_vpn_connection_profile_model.md │ │ ├── ftdra_vpn_connection_profile_model_list_container.md │ │ ├── ftdra_vpn_ip_sec_crypto_map_model.md │ │ ├── ftdra_vpn_ip_sec_crypto_map_model_list_container.md │ │ ├── ftdra_vpn_ip_sec_ik_ev2_advance_settings_model.md │ │ ├── ftdra_vpn_ip_sec_ik_ev2_advance_settings_model_list_container.md │ │ ├── ftdra_vpn_ldap_attribute_model.md │ │ ├── ftdra_vpn_ldap_attribute_model_list_container.md │ │ ├── ftdra_vpn_load_balance_setting.md │ │ ├── ftdra_vpn_load_balance_setting_list_container.md │ │ ├── ftdra_vpn_model.md │ │ ├── ftdra_vpn_model_list_container.md │ │ ├── ftds2_s_vpn_model.md │ │ ├── ftds2_s_vpn_model_list_container.md │ │ ├── ftdvni_interface.md │ │ ├── ftdvni_interface_list_container.md │ │ ├── ftdvti_interface.md │ │ ├── ftdvti_interface_list_container.md │ │ ├── geo_location_object.md │ │ ├── geo_location_object_list_container.md │ │ ├── global_device_search.md │ │ ├── global_device_search_list_container.md │ │ ├── global_object_search.md │ │ ├── global_object_search_list_container.md │ │ ├── global_policy_search.md │ │ ├── global_policy_search_list_container.md │ │ ├── global_search.md │ │ ├── global_search_list_container.md │ │ ├── global_time_zone.md │ │ ├── global_time_zone_list_container.md │ │ ├── group_policy_model.md │ │ ├── group_policy_model_list_container.md │ │ ├── health_alert_model.md │ │ ├── health_alert_model_list_container.md │ │ ├── health_metric.md │ │ ├── health_metric_list_container.md │ │ ├── health_monitor_model.md │ │ ├── health_monitor_model_list_container.md │ │ ├── health_policy.md │ │ ├── health_policy_list_container.md │ │ ├── hit_count.md │ │ ├── hit_count_list_container.md │ │ ├── hit_count_metadata.md │ │ ├── host_object.md │ │ ├── host_object_list_container.md │ │ ├── host_override.md │ │ ├── host_override_list_container.md │ │ ├── host_scan_package_object.md │ │ ├── host_scan_package_object_list_container.md │ │ ├── i_access_policy_decryption_policy_setting.md │ │ ├── i_access_policy_default_action.md │ │ ├── i_access_policy_model.md │ │ ├── i_access_policy_prefilter_policy_setting_model.md │ │ ├── i_address_container.md │ │ ├── i_advanced.md │ │ ├── i_advertisement.md │ │ ├── i_aggregate_addresses.md │ │ ├── i_any_connect_defer_update_attribute.md │ │ ├── i_any_connect_dynamic_split_tunnel_attribute.md │ │ ├── i_any_connect_user_defined_attribute.md │ │ ├── i_app_condition.md │ │ ├── i_application_category.md │ │ ├── i_application_filter.md │ │ ├── i_application_model.md │ │ ├── i_application_productivity.md │ │ ├── i_application_risk.md │ │ ├── i_application_tag.md │ │ ├── i_application_type.md │ │ ├── i_applications_container.md │ │ ├── i_as_path_list_entry.md │ │ ├── i_auth_type_and_string.md │ │ ├── i_base_device.md │ │ ├── i_base_port_literal.md │ │ ├── i_bgp_networks.md │ │ ├── i_certificate_map_rules.md │ │ ├── i_certificate_map_settings.md │ │ ├── i_change_config_manager_ftd_info.md │ │ ├── i_change_config_manager_ftd_report_device_info.md │ │ ├── i_change_config_manager_ftd_report_job_summary.md │ │ ├── i_change_config_manager_ftd_report_options.md │ │ ├── i_cluster_auto_rejoin.md │ │ ├── i_cluster_monitor_interface.md │ │ ├── i_comment_history.md │ │ ├── i_conn_profile_certificate_username_settings.md │ │ ├── i_connection_profile_group_alias.md │ │ ├── i_connection_profile_group_url.md │ │ ├── i_console_user.md │ │ ├── i_continent_model.md │ │ ├── i_country_model.md │ │ ├── i_dependent_policy.md │ │ ├── i_deployment_settings.md │ │ ├── i_device.md │ │ ├── i_device_1.md │ │ ├── i_device_2.md │ │ ├── i_device_chassis_data.md │ │ ├── i_device_cluster_readiness_data.md │ │ ├── i_device_group.md │ │ ├── i_device_import_export_options.md │ │ ├── i_device_import_export_request_options.md │ │ ├── i_device_inventory_data.md │ │ ├── i_device_license.md │ │ ├── i_device_list_entry.md │ │ ├── i_device_mapping_options.md │ │ ├── i_directory_configuration.md │ │ ├── i_distance.md │ │ ├── i_distribute_lists.md │ │ ├── i_domain.md │ │ ├── i_dynamic_attribute_feed.md │ │ ├── i_dynamic_object_base.md │ │ ├── i_dynamic_objects_container.md │ │ ├── i_eigrp_administrative_distance.md │ │ ├── i_eigrp_advanced_config_model.md │ │ ├── i_eigrp_advertise.md │ │ ├── i_eigrp_basic_config_model.md │ │ ├── i_eigrp_interface_authentication.md │ │ ├── i_eigrp_interface_timer.md │ │ ├── i_eigrp_passive_interface_model.md │ │ ├── i_eigrp_protocol_config_model.md │ │ ├── i_eigrp_route_metric.md │ │ ├── i_eigrp_stub.md │ │ ├── i_end_point_device_type.md │ │ ├── i_expanded_community_list_entry.md │ │ ├── i_extended_acl_entry.md │ │ ├── i_extended_community_api_entry.md │ │ ├── i_external_ca_certificate.md │ │ ├── i_file_policy.md │ │ ├── i_file_wrapper.md │ │ ├── i_filter_protocol.md │ │ ├── i_group_dependency_detail_entry.md │ │ ├── i_group_policy_address_assignment_model.md │ │ ├── i_group_policy_advanced_settings_model.md │ │ ├── i_group_policy_any_connect_settings_model.md │ │ ├── i_group_policy_client_modules_model.md │ │ ├── i_group_policy_connection_settings_model.md │ │ ├── i_group_policy_custom_attributes_model.md │ │ ├── i_group_policy_general_settings_model.md │ │ ├── i_group_policy_session_settings_model.md │ │ ├── i_group_policy_split_tunnel_settings_model.md │ │ ├── i_group_policy_ssl_settings_model.md │ │ ├── i_hardware_container.md │ │ ├── i_health_monitor_metric.md │ │ ├── i_health_policy.md │ │ ├── i_host.md │ │ ├── i_host_object_container.md │ │ ├── i_host_scan_package_object_model.md │ │ ├── i_ike_keepalive_settings.md │ │ ├── i_inline_pair.md │ │ ├── i_interface.md │ │ ├── i_interface_auto_rejoin.md │ │ ├── i_interface_device_model.md │ │ ├── i_interface_group_object_model.md │ │ ├── i_interface_object_model.md │ │ ├── i_intrusion_mapped_policy.md │ │ ├── i_intrusion_policy_metadata.md │ │ ├── i_intrusion_policy_model.md │ │ ├── i_intrusion_rule_suppression.md │ │ ├── i_intrusion_rule_threshold.md │ │ ├── i_intrusion_usage.md │ │ ├── i_ipv_prefix_list_filter.md │ │ ├── i_key_chain_object.md │ │ ├── i_key_object.md │ │ ├── i_life_time.md │ │ ├── i_links.md │ │ ├── i_load_balance_group_setting_model.md │ │ ├── i_load_balance_ipsec_encryption.md │ │ ├── i_load_balance_participating_device.md │ │ ├── i_load_balance_redirect_setting.md │ │ ├── i_log_host.md │ │ ├── i_lsa_throttle_timer.md │ │ ├── i_maximum_paths.md │ │ ├── i_maximum_transmission_unit_aging.md │ │ ├── i_metadata.md │ │ ├── i_metadata_user.md │ │ ├── i_model.md │ │ ├── i_modified_user_info.md │ │ ├── i_name_server.md │ │ ├── i_nat_keepalive_traversal.md │ │ ├── i_neighbor_advanced.md │ │ ├── i_neighbor_advertise_maps.md │ │ ├── i_neighbor_default_originate.md │ │ ├── i_neighbor_distribute_lists.md │ │ ├── i_neighbor_filter_list.md │ │ ├── i_neighbor_filtering.md │ │ ├── i_neighbor_general.md │ │ ├── i_neighbor_ha_mode.md │ │ ├── i_neighbor_hops.md │ │ ├── i_neighbor_local_as.md │ │ ├── i_neighbor_maximum_prefix.md │ │ ├── i_neighbor_route_map.md │ │ ├── i_neighbor_routes.md │ │ ├── i_neighbor_timers.md │ │ ├── i_neighbor_transport_connection_mode.md │ │ ├── i_neighbor_transport_path_mtu_discovery.md │ │ ├── i_neighbors.md │ │ ├── i_network_address.md │ │ ├── i_network_address_literal.md │ │ ├── i_network_base.md │ │ ├── i_network_object_container.md │ │ ├── i_network_objects_container.md │ │ ├── i_network_objects_only.md │ │ ├── i_ospf_administrative_distance.md │ │ ├── i_ospf_area.md │ │ ├── i_ospf_area_auth.md │ │ ├── i_ospf_area_ranges.md │ │ ├── i_ospf_area_type.md │ │ ├── i_ospf_authentication.md │ │ ├── i_ospf_dead_interval_mechanism.md │ │ ├── i_ospf_default_info_originate.md │ │ ├── i_ospf_filter_list.md │ │ ├── i_ospf_filter_rule.md │ │ ├── i_ospf_hello_multiplier_mechanism.md │ │ ├── i_ospf_interval.md │ │ ├── i_ospf_key_chain_auth.md │ │ ├── i_ospf_log_adj_changes.md │ │ ├── i_ospf_md5_auth.md │ │ ├── i_ospf_neighbors.md │ │ ├── i_ospf_nsf_graceful_restart.md │ │ ├── i_ospf_passwd_auth.md │ │ ├── i_ospf_process_model.md │ │ ├── i_ospf_protocol_configuration.md │ │ ├── i_ospf_route_metric.md │ │ ├── i_ospf_summary_addresses.md │ │ ├── i_ospf_timers.md │ │ ├── i_ospf_virtual_links.md │ │ ├── i_ospfv3_area.md │ │ ├── i_ospfv3_default_info_originate.md │ │ ├── i_ospfv3_graceful_restart.md │ │ ├── i_ospfv3_graceful_restart_helper.md │ │ ├── i_ospfv3_interface_authentication_base.md │ │ ├── i_ospfv3_interface_configuration.md │ │ ├── i_ospfv3_log_adjacency_changes.md │ │ ├── i_ospfv3_neighbor.md │ │ ├── i_ospfv3_neighbor_configuration.md │ │ ├── i_ospfv3_neighbor_cost.md │ │ ├── i_ospfv3_neighbor_priority.md │ │ ├── i_ospfv3_neighbor_properties.md │ │ ├── i_ospfv3_nsf_graceful_restart.md │ │ ├── i_ospfv3_process_model.md │ │ ├── i_ospfv3_route_summary.md │ │ ├── i_ospfv3_summary_prefix.md │ │ ├── i_ospfv3_timers.md │ │ ├── i_ospfv3_virtual_links.md │ │ ├── i_override.md │ │ ├── i_override_default_fragment_setting.md │ │ ├── i_packet_tracer_device_response.md │ │ ├── i_packet_tracer_pcap_details.md │ │ ├── i_packet_tracer_pcap_packets.md │ │ ├── i_packet_tracer_phase.md │ │ ├── i_packet_tracer_result.md │ │ ├── i_packet_tracer_unit_details.md │ │ ├── i_pat_options_container.md │ │ ├── i_path_monitored_interface_details.md │ │ ├── i_path_monitoring.md │ │ ├── i_pbr_forwarding_action_model.md │ │ ├── i_pending_device_reg_info.md │ │ ├── i_poe_config.md │ │ ├── i_policy_lock_data.md │ │ ├── i_policy_lock_metadata.md │ │ ├── i_policy_model.md │ │ ├── i_policy_object_model.md │ │ ├── i_policy_status.md │ │ ├── i_port_object.md │ │ ├── i_port_objects_container.md │ │ ├── i_prefilter_policy_default_action.md │ │ ├── i_prefix_container.md │ │ ├── i_protocol_port_object.md │ │ ├── i_proxy.md │ │ ├── i_pv4_address_pool.md │ │ ├── i_pv4_address_pool_list_container.md │ │ ├── i_pv4_address_pool_override.md │ │ ├── i_pv4_address_pool_override_list_container.md │ │ ├── i_pv4_prefix_list.md │ │ ├── i_pv4_prefix_list_list_container.md │ │ ├── i_pv4_static_route_model.md │ │ ├── i_pv4_static_route_model_list_container.md │ │ ├── i_pv6_address_pool.md │ │ ├── i_pv6_address_pool_list_container.md │ │ ├── i_pv6_address_pool_override.md │ │ ├── i_pv6_address_pool_override_list_container.md │ │ ├── i_pv6_prefix_list.md │ │ ├── i_pv6_prefix_list_list_container.md │ │ ├── i_pv6_static_route_model.md │ │ ├── i_pv6_static_route_model_list_container.md │ │ ├── i_radius_servers.md │ │ ├── i_readonly.md │ │ ├── i_realm.md │ │ ├── i_realm_entity.md │ │ ├── i_recurrence.md │ │ ├── i_redistribute_protocol_base.md │ │ ├── i_reference.md │ │ ├── i_reference_container.md │ │ ├── i_reference_update.md │ │ ├── i_rollback_device_list_entry.md │ │ ├── i_route_import_export.md │ │ ├── i_route_injection.md │ │ ├── i_route_map.md │ │ ├── i_route_map_entry.md │ │ ├── i_rule_action.md │ │ ├── i_rule_recommendation.md │ │ ├── i_safe_search.md │ │ ├── i_search_result.md │ │ ├── i_secondary_authentication_settings.md │ │ ├── i_security_group_tag.md │ │ ├── i_security_group_tag_container.md │ │ ├── i_security_group_tag_literal.md │ │ ├── i_security_zone_container.md │ │ ├── i_security_zone_object_model.md │ │ ├── i_selected_policiesfor_devices.md │ │ ├── i_smart_license_meta_data.md │ │ ├── i_snort3_default_set_by.md │ │ ├── i_snort3_intrusion_rule_group_sec_levels.md │ │ ├── i_snort3_intrusion_rule_groups_model.md │ │ ├── i_snort3_policy_rule_count.md │ │ ├── i_source_zone_container.md │ │ ├── i_source_zone_object.md │ │ ├── i_spf_throttle_timer.md │ │ ├── i_standard_acl.md │ │ ├── i_standard_acl_entry.md │ │ ├── i_standard_community_list_entry.md │ │ ├── i_static_arp_entry.md │ │ ├── i_static_ip_container.md │ │ ├── i_static_mac_entry.md │ │ ├── i_sub_task.md │ │ ├── i_switch_port_config.md │ │ ├── i_syslog_config.md │ │ ├── i_target.md │ │ ├── i_task_status.md │ │ ├── i_time_range_model.md │ │ ├── i_time_zone_date_range_fragment.md │ │ ├── i_time_zone_day_recurrence_fragment.md │ │ ├── i_umbrella_data_center.md │ │ ├── i_umbrella_deploy_endpoints_info.md │ │ ├── i_url_base.md │ │ ├── i_url_category_and_reputation.md │ │ ├── i_url_literal.md │ │ ├── i_url_model.md │ │ ├── i_url_objects_container.md │ │ ├── i_usage_data.md │ │ ├── i_users_container.md │ │ ├── i_value_add.md │ │ ├── i_value_delete.md │ │ ├── i_value_literal.md │ │ ├── i_value_update.md │ │ ├── i_variable_set.md │ │ ├── i_virtual_switch.md │ │ ├── i_vlan_base.md │ │ ├── i_vlan_model.md │ │ ├── i_vlan_tag_literal.md │ │ ├── i_vpn_addresses.md │ │ ├── i_vpn_backup_interface.md │ │ ├── i_vpn_extranet_info.md │ │ ├── i_vpn_ikev1_settings.md │ │ ├── i_vpn_ikev2_settings.md │ │ ├── i_vpn_interface.md │ │ ├── i_vpn_peer.md │ │ ├── i_vpn_pkcs12_content_model.md │ │ ├── i_vpn_protected_network.md │ │ ├── i_you_tube.md │ │ ├── iac_policy_identity_policy_settings.md │ │ ├── iarp_config_container.md │ │ ├── ibfd_template_authentication.md │ │ ├── ibgp_address_family_model.md │ │ ├── ibgpgs_best_path.md │ │ ├── ibgpgs_graceful_restart.md │ │ ├── ibgpgs_timers.md │ │ ├── icmpv4_object.md │ │ ├── icmpv4_object_list_container.md │ │ ├── icmpv4_object_override.md │ │ ├── icmpv4_object_override_list_container.md │ │ ├── icmpv6_object.md │ │ ├── icmpv6_object_list_container.md │ │ ├── icmpv6_object_override.md │ │ ├── icmpv6_object_override_list_container.md │ │ ├── identity_policy.md │ │ ├── identity_policy_list_container.md │ │ ├── idhcp_container.md │ │ ├── idhcpi_pv6_dns_server.md │ │ ├── idhcpi_pv6_domain_name.md │ │ ├── idhcpi_pv6_other_server_options.md │ │ ├── idhcpi_pv6_pool.md │ │ ├── ifmc_access_config.md │ │ ├── ifmc_server_info.md │ │ ├── ifp_physical_interface.md │ │ ├── iftd_base_interface.md │ │ ├── iftd_cluster_device_readiness_entity.md │ │ ├── iftd_cluster_node_bootstrap.md │ │ ├── iftd_device_details.md │ │ ├── iftd_device_ha_boot_strap.md │ │ ├── iftd_device_ha_failover_link.md │ │ ├── iftd_interface.md │ │ ├── iftdha_failover_interface_policy_trigger.md │ │ ├── iftdhai_pv6_active_standby_pair.md │ │ ├── iftdra_vpn_access_interface.md │ │ ├── iftdra_vpn_any_connect_image.md │ │ ├── iftdra_vpn_cert_to_connection_profile_map.md │ │ ├── iftdra_vpn_interface_settings.md │ │ ├── iftdra_vpn_ip_sec_ik_ev2_settings_model.md │ │ ├── iftdra_vpn_ip_sec_maximum_transmission_unit_aging_model.md │ │ ├── iftdra_vpn_ip_sec_nat_keepalive_message_traversal_model.md │ │ ├── iftdra_vpn_ip_sec_pfs_model.md │ │ ├── iftdra_vpn_ip_sec_settings_model.md │ │ ├── iftdra_vpn_ip_sec_tfc_packets_model.md │ │ ├── iftds2_s_vpn_model.md │ │ ├── ii_pv4_container.md │ │ ├── ii_pv4_verify_availability_model.md │ │ ├── ii_pv6_client_pd_container.md │ │ ├── ii_pv6_container.md │ │ ├── ii_pv6_dhcp_container.md │ │ ├── ii_pv6_prefix_container.md │ │ ├── ii_pv_prefix_list_entry.md │ │ ├── ik_ev1_i_psec_proposal.md │ │ ├── ik_ev1_i_psec_proposal_list_container.md │ │ ├── ik_ev2_i_psec_proposal.md │ │ ├── ik_ev2_i_psec_proposal_list_container.md │ │ ├── ikev1_policy_object.md │ │ ├── ikev1_policy_object_list_container.md │ │ ├── ikev2_policy_object.md │ │ ├── ikev2_policy_object_list_container.md │ │ ├── ildap_attribute_value.md │ │ ├── illdp_container.md │ │ ├── index.md │ │ ├── inline_set.md │ │ ├── inline_set_list_container.md │ │ ├── inspector_config.md │ │ ├── inspector_config_list_container.md │ │ ├── inspector_override_config.md │ │ ├── inspector_override_config_list_container.md │ │ ├── interface_base_policy_entry.md │ │ ├── interface_event.md │ │ ├── interface_event_list_container.md │ │ ├── interface_group_object.md │ │ ├── interface_group_object_list_container.md │ │ ├── interface_ipv4.md │ │ ├── interface_ipv6.md │ │ ├── interface_ipv6_address.md │ │ ├── interface_ipv6_prefix.md │ │ ├── interface_mapping.md │ │ ├── interface_object.md │ │ ├── interface_object_list_container.md │ │ ├── interface_setting_arp.md │ │ ├── interface_setting_mac.md │ │ ├── interface_settings.md │ │ ├── internal_ca.md │ │ ├── internal_ca_list_container.md │ │ ├── internal_certificate.md │ │ ├── internal_certificate_list_container.md │ │ ├── intrusion_policy.md │ │ ├── intrusion_policy_list_container.md │ │ ├── ip_addresses.md │ │ ├── ipfs_settings.md │ │ ├── ipp_po_e_contianer.md │ │ ├── ipv6_prefixes.md │ │ ├── is2_s_ike_advance_setting_model.md │ │ ├── is2_s_ip_sec_advance_setting_model.md │ │ ├── is2_s_tunnel_advance_setting_model.md │ │ ├── ise_security_group_tag.md │ │ ├── ise_security_group_tag_list_container.md │ │ ├── isfcn_service.md │ │ ├── isi_logging.md │ │ ├── isi_object.md │ │ ├── isi_settings.md │ │ ├── isidns_policy.md │ │ ├── isla_monitor_model.md │ │ ├── isnmp_config.md │ │ ├── isso_advanced_config.md │ │ ├── isso_role.md │ │ ├── itfc_packets.md │ │ ├── iurl_category.md │ │ ├── iv_lan_tags_container.md │ │ ├── ivtep_entry.md │ │ ├── job_history.md │ │ ├── job_history_list_container.md │ │ ├── join_interface.md │ │ ├── key_chain_object.md │ │ ├── key_chain_object_list_container.md │ │ ├── key_chain_object_override.md │ │ ├── key_chain_object_override_list_container.md │ │ ├── ldap_attribute_map.md │ │ ├── ldap_attribute_map_entry.md │ │ ├── ldap_attribute_map_model.md │ │ ├── ldap_attribute_name_entry.md │ │ ├── ldap_attribute_value_entry.md │ │ ├── links.md │ │ ├── ll_additional_properties.md │ │ ├── ll_collection_topic.md │ │ ├── ll_device_map.md │ │ ├── ll_element.md │ │ ├── ll_equation_node.md │ │ ├── ll_feed_config.md │ │ ├── ll_feed_property.md │ │ ├── ll_files_map.md │ │ ├── ll_form.md │ │ ├── ll_hash_map.md │ │ ├── ll_headers.md │ │ ├── ll_incident.md │ │ ├── ll_indicator.md │ │ ├── ll_inspector_config.md │ │ ├── ll_inspector_override_config.md │ │ ├── ll_misc_data.md │ │ ├── ll_observable.md │ │ ├── ll_observation.md │ │ ├── ll_observation_data.md │ │ ├── ll_params.md │ │ ├── ll_settings.md │ │ ├── ll_status_msg.md │ │ ├── ll_tags.md │ │ ├── lldp_container.md │ │ ├── local_realm_user.md │ │ ├── local_realm_user_list_container.md │ │ ├── metadata.md │ │ ├── metadata_user.md │ │ ├── named_entry.md │ │ ├── netmap_host.md │ │ ├── netmap_host_list_container.md │ │ ├── netmap_vuln.md │ │ ├── netmap_vuln_list_container.md │ │ ├── network_address.md │ │ ├── network_address_list_container.md │ │ ├── network_group.md │ │ ├── network_group_list_container.md │ │ ├── network_group_override.md │ │ ├── network_group_override_list_container.md │ │ ├── network_module.md │ │ ├── network_module_list_container.md │ │ ├── network_module_sync.md │ │ ├── network_object.md │ │ ├── network_object_entry.md │ │ ├── network_object_list_container.md │ │ ├── network_override.md │ │ ├── network_override_list_container.md │ │ ├── object.md │ │ ├── object_entry.md │ │ ├── object_refs.md │ │ ├── object_usage.md │ │ ├── object_usage_list_container.md │ │ ├── ospf_interface_policy_model.md │ │ ├── ospf_interface_policy_model_list_container.md │ │ ├── ospf_policy_model.md │ │ ├── ospf_policy_model_list_container.md │ │ ├── ospfv3_interface_policy_model.md │ │ ├── ospfv3_interface_policy_model_list_container.md │ │ ├── ospfv3_policy_model.md │ │ ├── ospfv3_policy_model_list_container.md │ │ ├── packet_tracer.md │ │ ├── packet_tracer_pcap.md │ │ ├── packet_tracer_pcap_extract.md │ │ ├── packet_tracer_pcap_extract_list_container.md │ │ ├── packet_tracer_pcap_files.md │ │ ├── packet_tracer_pcap_files_list_container.md │ │ ├── paging_container.md │ │ ├── path_monitored_interface.md │ │ ├── path_monitored_interface_list_container.md │ │ ├── path_monitoring_entry.md │ │ ├── pbr_policy_model.md │ │ ├── pbr_policy_model_list_container.md │ │ ├── pending_changes.md │ │ ├── pending_changes_list_container.md │ │ ├── physical_interface.md │ │ ├── physical_interface_list_container.md │ │ ├── policy_assignment.md │ │ ├── policy_assignment_list_container.md │ │ ├── policy_list.md │ │ ├── policy_list_list_container.md │ │ ├── policy_lock.md │ │ ├── policy_lock_list_container.md │ │ ├── policy_object_entry.md │ │ ├── port_metadata.md │ │ ├── port_object.md │ │ ├── port_object_group.md │ │ ├── port_object_group_list_container.md │ │ ├── port_object_group_override.md │ │ ├── port_object_group_override_list_container.md │ │ ├── port_object_list_container.md │ │ ├── prefer_life_time.md │ │ ├── prefilter_default_action.md │ │ ├── prefilter_default_action_list_container.md │ │ ├── prefilter_hit_count.md │ │ ├── prefilter_hit_count_list_container.md │ │ ├── prefilter_policy.md │ │ ├── prefilter_policy_list_container.md │ │ ├── prefilter_rule.md │ │ ├── prefilter_rule_list_container.md │ │ ├── protocol_port_object.md │ │ ├── protocol_port_object_list_container.md │ │ ├── protocol_port_object_override.md │ │ ├── protocol_port_object_override_list_container.md │ │ ├── ra_vpn_gateway.md │ │ ├── ra_vpn_gateway_list_container.md │ │ ├── ra_vpn_load_balance_peer_setting.md │ │ ├── radius_server_group_model.md │ │ ├── radius_server_group_model_list_container.md │ │ ├── range_object.md │ │ ├── range_object_list_container.md │ │ ├── range_override.md │ │ ├── range_override_list_container.md │ │ ├── read_only.md │ │ ├── realm.md │ │ ├── realm_list_container.md │ │ ├── realm_metadata.md │ │ ├── realm_user.md │ │ ├── realm_user_group.md │ │ ├── realm_user_group_list_container.md │ │ ├── realm_user_group_metadata.md │ │ ├── realm_user_list_container.md │ │ ├── realm_user_metadata.md │ │ ├── reference_object.md │ │ ├── rest_collection_topic.md │ │ ├── rest_discovery_info.md │ │ ├── rest_element.md │ │ ├── rest_element_list_container.md │ │ ├── rest_feed_property.md │ │ ├── rest_ftd_cluster_device.md │ │ ├── rest_ftd_cluster_device_container.md │ │ ├── rest_ftd_cluster_device_container_list_container.md │ │ ├── rest_ftd_cluster_device_metadata.md │ │ ├── rest_iftd_base_interface.md │ │ ├── rest_iftd_cluster_bootstrap.md │ │ ├── rest_iftd_cluster_device.md │ │ ├── rest_incident.md │ │ ├── rest_incident_list_container.md │ │ ├── rest_indicator.md │ │ ├── rest_indicator_equation_node.md │ │ ├── rest_indicator_list_container.md │ │ ├── rest_observable.md │ │ ├── rest_observable_list_container.md │ │ ├── rest_observation.md │ │ ├── rest_observation_data.md │ │ ├── rest_settings.md │ │ ├── rest_task_status.md │ │ ├── rest_taxii_collection.md │ │ ├── rest_tid_source.md │ │ ├── rest_tid_source_list_container.md │ │ ├── retry_upgrade.md │ │ ├── revert_upgrade.md │ │ ├── rollback_request.md │ │ ├── rollback_request_metadata.md │ │ ├── route_map.md │ │ ├── route_map_list_container.md │ │ ├── rule_import_summary.md │ │ ├── rule_import_summary_entry.md │ │ ├── rule_recommendation.md │ │ ├── s2_s_vpn_summary_model.md │ │ ├── s2_s_vpn_summary_model_list_container.md │ │ ├── securex_config.md │ │ ├── securex_config_list_container.md │ │ ├── security_group_tag.md │ │ ├── security_group_tag_list_container.md │ │ ├── security_zone_object.md │ │ ├── security_zone_object_list_container.md │ │ ├── server_version.md │ │ ├── server_version_list_container.md │ │ ├── sfcn_cluster.md │ │ ├── sfcn_cluster_metadata.md │ │ ├── si_feed_metadata.md │ │ ├── si_list_metadata.md │ │ ├── si_network_feed.md │ │ ├── si_network_feed_list_container.md │ │ ├── si_network_list.md │ │ ├── si_network_list_list_container.md │ │ ├── sidns_feed.md │ │ ├── sidns_feed_list_container.md │ │ ├── sidns_list.md │ │ ├── sidns_list_list_container.md │ │ ├── sinkhole.md │ │ ├── sinkhole_list_container.md │ │ ├── siurl_feed.md │ │ ├── siurl_feed_list_container.md │ │ ├── siurl_list.md │ │ ├── siurl_list_list_container.md │ │ ├── sla_monitor_object_model.md │ │ ├── sla_monitor_object_model_list_container.md │ │ ├── smart_license.md │ │ ├── smart_license_list_container.md │ │ ├── snmp_config.md │ │ ├── snmp_config_list_container.md │ │ ├── snort3_intrusion_rule_group_metadata.md │ │ ├── snort3_intrusion_rule_groups.md │ │ ├── snort3_intrusion_rule_groups_list_container.md │ │ ├── snort3_intrusion_rule_groups_object.md │ │ ├── snort3_intrusion_rule_groups_object_list_container.md │ │ ├── snort3_ips_reference_object.md │ │ ├── snort3_ips_rule_metadata.md │ │ ├── snort3_ips_rules.md │ │ ├── snort3_ips_rules_file_upload.md │ │ ├── snort3_ips_rules_list_container.md │ │ ├── snort3_ips_rules_object.md │ │ ├── snort3_ips_rules_object_list_container.md │ │ ├── snort3_network_analysis_policy.md │ │ ├── snort3_network_analysis_policy_list_container.md │ │ ├── sso_config.md │ │ ├── sso_config_list_container.md │ │ ├── sso_server.md │ │ ├── sso_server_list_container.md │ │ ├── sso_server_override.md │ │ ├── sso_server_override_list_container.md │ │ ├── standard_acl.md │ │ ├── standard_acl_list_container.md │ │ ├── standard_community_list.md │ │ ├── standard_community_list_list_container.md │ │ ├── static_route_model.md │ │ ├── static_route_model_list_container.md │ │ ├── syslog_config.md │ │ ├── syslog_config_list_container.md │ │ ├── task_status.md │ │ ├── task_status_list_container.md │ │ ├── terminate_ravpn_session.md │ │ ├── test_umbrella_connection.md │ │ ├── time_range.md │ │ ├── time_range_list_container.md │ │ ├── time_zone_object.md │ │ ├── time_zone_object_list_container.md │ │ ├── time_zone_object_override.md │ │ ├── time_zone_object_override_list_container.md │ │ ├── troubleshoot.md │ │ ├── troubleshoot_metadata.md │ │ ├── tunnel_status.md │ │ ├── tunnel_status_list_container.md │ │ ├── tunnel_summary.md │ │ ├── tunnel_summary_list_container.md │ │ ├── tunnel_tags.md │ │ ├── tunnel_tags_list_container.md │ │ ├── umbrella_connection.md │ │ ├── umbrella_connection_list_container.md │ │ ├── umbrella_data_center.md │ │ ├── umbrella_data_center_list_container.md │ │ ├── umbrella_deployment_data.md │ │ ├── umbrella_deployment_transcript.md │ │ ├── umbrella_dns_policy.md │ │ ├── umbrella_dns_policy_list_container.md │ │ ├── umbrella_dns_rule.md │ │ ├── umbrella_dns_rule_list_container.md │ │ ├── umbrella_protection_policy.md │ │ ├── umbrella_protection_policy_list_container.md │ │ ├── upgrade.md │ │ ├── upgrade_package.md │ │ ├── upgrade_package_list_container.md │ │ ├── upgrade_snapshot.md │ │ ├── url_category.md │ │ ├── url_category_list_container.md │ │ ├── url_group_object.md │ │ ├── url_group_object_list_container.md │ │ ├── url_group_override.md │ │ ├── url_group_override_list_container.md │ │ ├── url_object.md │ │ ├── url_object_list_container.md │ │ ├── url_override.md │ │ ├── url_override_list_container.md │ │ ├── validate_cert_file.md │ │ ├── variable_set.md │ │ ├── variable_set_list_container.md │ │ ├── virtual_router_model.md │ │ ├── virtual_router_model_list_container.md │ │ ├── virtual_switch.md │ │ ├── virtual_switch_list_container.md │ │ ├── vlan_override.md │ │ ├── vlan_override_list_container.md │ │ ├── vlan_tag.md │ │ ├── vlan_tag_group.md │ │ ├── vlan_tag_group_list_container.md │ │ ├── vlan_tag_group_override.md │ │ ├── vlan_tag_group_override_list_container.md │ │ ├── vlan_tag_list_container.md │ │ ├── vpn_advanced_settings.md │ │ ├── vpn_advanced_settings_list_container.md │ │ ├── vpn_backup_interface_entry.md │ │ ├── vpn_cert_enrollment_model.md │ │ ├── vpn_cert_enrollment_model_list_container.md │ │ ├── vpn_endpoint.md │ │ ├── vpn_endpoint_list_container.md │ │ ├── vpn_ike_settings.md │ │ ├── vpn_ike_settings_list_container.md │ │ ├── vpn_ip_sec_settings.md │ │ ├── vpn_ip_sec_settings_list_container.md │ │ ├── vpn_node_entry.md │ │ ├── vrf_bfd_policy_model.md │ │ ├── vrf_bfd_policy_model_list_container.md │ │ ├── vrf_bgpi_pv_address_family_model.md │ │ ├── vrf_bgpi_pv_address_family_model_list_container.md │ │ ├── vrf_ecmp_zone_model.md │ │ ├── vrf_ecmp_zone_model_list_container.md │ │ ├── vrf_eigrp_policy_model.md │ │ ├── vrf_eigrp_policy_model_list_container.md │ │ ├── vrf_i_pv4_static_route_model.md │ │ ├── vrf_i_pv4_static_route_model_list_container.md │ │ ├── vrf_i_pv6_static_route_model.md │ │ ├── vrf_i_pv6_static_route_model_list_container.md │ │ ├── vrf_interface_entry.md │ │ ├── vrf_ospf_interface_policy_model.md │ │ ├── vrf_ospf_interface_policy_model_list_container.md │ │ ├── vrf_ospf_policy_model.md │ │ ├── vrf_ospf_policy_model_list_container.md │ │ ├── vrf_pbr_policy_model.md │ │ ├── vrf_pbr_policy_model_list_container.md │ │ ├── vrf_policy_entry.md │ │ ├── vrf_static_route_model.md │ │ ├── vrf_static_route_model_list_container.md │ │ ├── vtep_policy.md │ │ └── vtep_policy_list_container.md │ ├── groups │ │ ├── audit.md │ │ ├── backup.md │ │ ├── chassis.md │ │ ├── deployment.md │ │ ├── device _clusters.md │ │ ├── device _groups.md │ │ ├── device ha _pairs.md │ │ ├── devices.md │ │ ├── health.md │ │ ├── integration.md │ │ ├── intelligence.md │ │ ├── license.md │ │ ├── network _map.md │ │ ├── object.md │ │ ├── policy _assignments.md │ │ ├── policy.md │ │ ├── search.md │ │ ├── status.md │ │ ├── system _information.md │ │ ├── troubleshoot.md │ │ ├── updates.md │ │ └── users.md │ ├── introduction │ │ ├── intro.md │ │ └── user_guide.md │ └── operations │ │ ├── config.json │ │ ├── create_access_policy.md │ │ ├── create_access_policy_category.md │ │ ├── create_any_connect_custom_attribute_model.md │ │ ├── create_any_connect_external_browser_package_model.md │ │ ├── create_any_connect_package_model.md │ │ ├── create_any_connect_profile_model.md │ │ ├── create_application_filter.md │ │ ├── create_as_path_list.md │ │ ├── create_bfd_policy_model.md │ │ ├── create_bfd_template.md │ │ ├── create_bgp_general_setting_model.md │ │ ├── create_bgpi_pv_address_family_model.md │ │ ├── create_breakout_interface.md │ │ ├── create_cancel_upgrade.md │ │ ├── create_certificate_map_model.md │ │ ├── create_change_config_manager_ftd_request.md │ │ ├── create_csdac_status.md │ │ ├── create_deployment_request.md │ │ ├── create_device_backup.md │ │ ├── create_device_copy_config_request.md │ │ ├── create_device_export.md │ │ ├── create_device_group.md │ │ ├── create_device_import.md │ │ ├── create_dhcpi_pv6_pool.md │ │ ├── create_dns_server_group_object.md │ │ ├── create_download_internal_ca.md │ │ ├── create_dynamic_access_policy.md │ │ ├── create_dynamic_object_mappings_bulk.md │ │ ├── create_dynamic_objects_bulk.md │ │ ├── create_ebs_snapshot.md │ │ ├── create_ecmp_zone_model.md │ │ ├── create_eigrp_policy_model.md │ │ ├── create_email_report.md │ │ ├── create_expanded_community_list.md │ │ ├── create_extended_access_list_model.md │ │ ├── create_extended_community_list.md │ │ ├── create_external_lookup.md │ │ ├── create_flex_config.md │ │ ├── create_flex_config_migration.md │ │ ├── create_fp_logical_interface.md │ │ ├── create_ftd_bridge_group_interface.md │ │ ├── create_ftd_cluster_device_command_container.md │ │ ├── create_ftd_cluster_device_readiness_container.md │ │ ├── create_ftd_ether_channel_interface.md │ │ ├── create_ftd_loopback_interface.md │ │ ├── create_ftd_nat_policy.md │ │ ├── create_ftd_redundant_interface.md │ │ ├── create_ftd_vlan_interface.md │ │ ├── create_ftdha_device_container.md │ │ ├── create_ftdha_interface_mac_addresses.md │ │ ├── create_ftdra_vpn_connection_profile_model.md │ │ ├── create_ftdra_vpn_model.md │ │ ├── create_ftds2_s_vpn_model.md │ │ ├── create_ftdvni_interface.md │ │ ├── create_geo_location_object.md │ │ ├── create_host_scan_package_object.md │ │ ├── create_i_pv4_address_pool.md │ │ ├── create_i_pv4_prefix_list.md │ │ ├── create_i_pv6_address_pool.md │ │ ├── create_i_pv6_prefix_list.md │ │ ├── create_ik_ev1_i_psec_proposal.md │ │ ├── create_ik_ev2_i_psec_proposal.md │ │ ├── create_ikev1_policy_object.md │ │ ├── create_ikev2_policy_object.md │ │ ├── create_inline_set.md │ │ ├── create_interface_event.md │ │ ├── create_internal_ca.md │ │ ├── create_internal_certificate.md │ │ ├── create_intrusion_policy.md │ │ ├── create_join_interface.md │ │ ├── create_multiple_access_rule.md │ │ ├── create_multiple_device.md │ │ ├── create_multiple_dynamic_object.md │ │ ├── create_multiple_fqdn_object.md │ │ ├── create_multiple_ftd_auto_nat_rule.md │ │ ├── create_multiple_ftd_manual_nat_rule.md │ │ ├── create_multiple_ftd_sub_interface.md │ │ ├── create_multiple_ftdvti_interface.md │ │ ├── create_multiple_group_policy_model.md │ │ ├── create_multiple_host_object.md │ │ ├── create_multiple_i_pv4_static_route_model.md │ │ ├── create_multiple_i_pv6_static_route_model.md │ │ ├── create_multiple_icmpv4_object.md │ │ ├── create_multiple_icmpv6_object.md │ │ ├── create_multiple_interface_group_object.md │ │ ├── create_multiple_key_chain_object.md │ │ ├── create_multiple_local_realm_user.md │ │ ├── create_multiple_netmap_host.md │ │ ├── create_multiple_netmap_vuln.md │ │ ├── create_multiple_network_group.md │ │ ├── create_multiple_network_object.md │ │ ├── create_multiple_pbr_policy_model.md │ │ ├── create_multiple_port_object_group.md │ │ ├── create_multiple_prefilter_rule.md │ │ ├── create_multiple_protocol_port_object.md │ │ ├── create_multiple_radius_server_group_model.md │ │ ├── create_multiple_range_object.md │ │ ├── create_multiple_security_zone_object.md │ │ ├── create_multiple_sla_monitor_object_model.md │ │ ├── create_multiple_snort3_intrusion_rule_groups_object.md │ │ ├── create_multiple_snort3_ips_rules_object.md │ │ ├── create_multiple_sso_server.md │ │ ├── create_multiple_time_range.md │ │ ├── create_multiple_time_zone_object.md │ │ ├── create_multiple_tunnel_tags.md │ │ ├── create_multiple_url_group_object.md │ │ ├── create_multiple_url_object.md │ │ ├── create_multiple_vlan_tag.md │ │ ├── create_multiple_vlan_tag_group.md │ │ ├── create_packet_tracer.md │ │ ├── create_packet_tracer_pcap.md │ │ ├── create_packet_tracer_pcap_files.md │ │ ├── create_policy_assignment.md │ │ ├── create_policy_list.md │ │ ├── create_policy_lock.md │ │ ├── create_prefilter_policy.md │ │ ├── create_realm.md │ │ ├── create_rest_discovery_info.md │ │ ├── create_rest_ftd_cluster_device_container.md │ │ ├── create_rest_taxii_collection.md │ │ ├── create_rest_tid_source.md │ │ ├── create_retry_upgrade.md │ │ ├── create_revert_upgrade.md │ │ ├── create_rollback_request.md │ │ ├── create_route_map.md │ │ ├── create_security_group_tag.md │ │ ├── create_siurl_list.md │ │ ├── create_smart_license.md │ │ ├── create_snort3_ips_rules_file_upload.md │ │ ├── create_snort3_network_analysis_policy.md │ │ ├── create_standard_acl.md │ │ ├── create_standard_community_list.md │ │ ├── create_terminate_ravpn_session.md │ │ ├── create_test_umbrella_connection.md │ │ ├── create_umbrella_deployment_data.md │ │ ├── create_umbrella_dns_policy.md │ │ ├── create_umbrella_protection_policy.md │ │ ├── create_upgrade.md │ │ ├── create_validate_cert_file.md │ │ ├── create_virtual_router_model.md │ │ ├── create_virtual_switch.md │ │ ├── create_vpn_cert_enrollment_model.md │ │ ├── create_vpn_endpoint.md │ │ ├── create_vrf_bfd_policy_model.md │ │ ├── create_vrf_bgpi_pv_address_family_model.md │ │ ├── create_vrf_ecmp_zone_model.md │ │ ├── create_vrf_eigrp_policy_model.md │ │ ├── create_vrf_i_pv4_static_route_model.md │ │ ├── create_vrf_i_pv6_static_route_model.md │ │ ├── create_vrf_pbr_policy_model.md │ │ ├── create_vtep_policy.md │ │ ├── delete_access_policy.md │ │ ├── delete_access_policy_category.md │ │ ├── delete_access_rule.md │ │ ├── delete_any_connect_custom_attribute_model.md │ │ ├── delete_any_connect_external_browser_package_model.md │ │ ├── delete_any_connect_package_model.md │ │ ├── delete_any_connect_profile_model.md │ │ ├── delete_application_filter.md │ │ ├── delete_as_path_list.md │ │ ├── delete_backup_file.md │ │ ├── delete_bfd_policy_model.md │ │ ├── delete_bfd_template.md │ │ ├── delete_bgp_general_setting_model.md │ │ ├── delete_bgpi_pv_address_family_model.md │ │ ├── delete_certificate_map_model.md │ │ ├── delete_device.md │ │ ├── delete_device_group.md │ │ ├── delete_dhcpi_pv6_pool.md │ │ ├── delete_dns_server_group_object.md │ │ ├── delete_dynamic_access_policy.md │ │ ├── delete_dynamic_object.md │ │ ├── delete_ecmp_zone_model.md │ │ ├── delete_eigrp_policy_model.md │ │ ├── delete_expanded_community_list.md │ │ ├── delete_extended_access_list_model.md │ │ ├── delete_extended_community_list.md │ │ ├── delete_external_lookup.md │ │ ├── delete_fp_logical_interface.md │ │ ├── delete_fqdn_object.md │ │ ├── delete_ftd_auto_nat_rule.md │ │ ├── delete_ftd_bridge_group_interface.md │ │ ├── delete_ftd_ether_channel_interface.md │ │ ├── delete_ftd_loopback_interface.md │ │ ├── delete_ftd_manual_nat_rule.md │ │ ├── delete_ftd_nat_policy.md │ │ ├── delete_ftd_redundant_interface.md │ │ ├── delete_ftd_sub_interface.md │ │ ├── delete_ftd_vlan_interface.md │ │ ├── delete_ftdha_device_container.md │ │ ├── delete_ftdha_interface_mac_addresses.md │ │ ├── delete_ftdra_vpn_connection_profile_model.md │ │ ├── delete_ftdra_vpn_model.md │ │ ├── delete_ftds2_s_vpn_model.md │ │ ├── delete_ftdvni_interface.md │ │ ├── delete_ftdvti_interface.md │ │ ├── delete_geo_location_object.md │ │ ├── delete_group_policy_model.md │ │ ├── delete_hit_count.md │ │ ├── delete_host_object.md │ │ ├── delete_host_scan_package_object.md │ │ ├── delete_i_pv4_address_pool.md │ │ ├── delete_i_pv4_prefix_list.md │ │ ├── delete_i_pv4_static_route_model.md │ │ ├── delete_i_pv6_address_pool.md │ │ ├── delete_i_pv6_prefix_list.md │ │ ├── delete_i_pv6_static_route_model.md │ │ ├── delete_icmpv4_object.md │ │ ├── delete_icmpv6_object.md │ │ ├── delete_ik_ev1_i_psec_proposal.md │ │ ├── delete_ik_ev2_i_psec_proposal.md │ │ ├── delete_ikev1_policy_object.md │ │ ├── delete_ikev2_policy_object.md │ │ ├── delete_inline_set.md │ │ ├── delete_interface_group_object.md │ │ ├── delete_internal_ca.md │ │ ├── delete_internal_certificate.md │ │ ├── delete_intrusion_policy.md │ │ ├── delete_key_chain_object.md │ │ ├── delete_local_realm_user.md │ │ ├── delete_multiple_access_rule.md │ │ ├── delete_multiple_device.md │ │ ├── delete_multiple_dynamic_object.md │ │ ├── delete_multiple_dynamic_object_mappings.md │ │ ├── delete_multiple_dynamic_object_mappings_bulk.md │ │ ├── delete_multiple_ftd_auto_nat_rule.md │ │ ├── delete_multiple_ftd_manual_nat_rule.md │ │ ├── delete_multiple_ftd_nat_rule.md │ │ ├── delete_multiple_netmap_host.md │ │ ├── delete_multiple_netmap_vuln.md │ │ ├── delete_multiple_packet_tracer_pcap_files.md │ │ ├── delete_multiple_prefilter_rule.md │ │ ├── delete_multiple_snort3_ips_rules_object.md │ │ ├── delete_netmap_host.md │ │ ├── delete_netmap_vuln.md │ │ ├── delete_network_group.md │ │ ├── delete_network_object.md │ │ ├── delete_packet_tracer_pcap_files.md │ │ ├── delete_pbr_policy_model.md │ │ ├── delete_policy_list.md │ │ ├── delete_port_object_group.md │ │ ├── delete_prefilter_hit_count.md │ │ ├── delete_prefilter_policy.md │ │ ├── delete_prefilter_rule.md │ │ ├── delete_protocol_port_object.md │ │ ├── delete_radius_server_group_model.md │ │ ├── delete_range_object.md │ │ ├── delete_realm.md │ │ ├── delete_rest_ftd_cluster_device_container.md │ │ ├── delete_rest_incident.md │ │ ├── delete_rest_tid_source.md │ │ ├── delete_route_map.md │ │ ├── delete_security_group_tag.md │ │ ├── delete_security_zone_object.md │ │ ├── delete_siurl_list.md │ │ ├── delete_sla_monitor_object_model.md │ │ ├── delete_snort3_intrusion_rule_groups_object.md │ │ ├── delete_snort3_ips_rules_object.md │ │ ├── delete_snort3_network_analysis_policy.md │ │ ├── delete_sso_server.md │ │ ├── delete_standard_acl.md │ │ ├── delete_standard_community_list.md │ │ ├── delete_time_range.md │ │ ├── delete_time_zone_object.md │ │ ├── delete_tunnel_tags.md │ │ ├── delete_umbrella_dns_policy.md │ │ ├── delete_upgrade_package.md │ │ ├── delete_url_group_object.md │ │ ├── delete_url_object.md │ │ ├── delete_virtual_router_model.md │ │ ├── delete_virtual_switch.md │ │ ├── delete_vlan_tag.md │ │ ├── delete_vlan_tag_group.md │ │ ├── delete_vpn_cert_enrollment_model.md │ │ ├── delete_vpn_endpoint.md │ │ ├── delete_vrf_bfd_policy_model.md │ │ ├── delete_vrf_bgpi_pv_address_family_model.md │ │ ├── delete_vrf_ecmp_zone_model.md │ │ ├── delete_vrf_eigrp_policy_model.md │ │ ├── delete_vrf_i_pv4_static_route_model.md │ │ ├── delete_vrf_i_pv6_static_route_model.md │ │ ├── delete_vrf_pbr_policy_model.md │ │ ├── delete_vtep_policy.md │ │ ├── get_access_policy.md │ │ ├── get_access_policy_category.md │ │ ├── get_access_policy_inheritance_setting.md │ │ ├── get_access_policy_logging_setting_model.md │ │ ├── get_access_policy_security_intelligence_policy.md │ │ ├── get_access_rule.md │ │ ├── get_all_access_policy.md │ │ ├── get_all_access_policy_category.md │ │ ├── get_all_access_policy_inheritance_setting.md │ │ ├── get_all_access_policy_logging_setting_model.md │ │ ├── get_all_access_policy_security_intelligence_policy.md │ │ ├── get_all_access_rule.md │ │ ├── get_all_any_connect_custom_attribute_model.md │ │ ├── get_all_any_connect_external_browser_package_model.md │ │ ├── get_all_any_connect_package_model.md │ │ ├── get_all_any_connect_profile_model.md │ │ ├── get_all_any_protocol_port_object.md │ │ ├── get_all_applicable_device.md │ │ ├── get_all_application.md │ │ ├── get_all_application_category.md │ │ ├── get_all_application_filter.md │ │ ├── get_all_application_productivity.md │ │ ├── get_all_application_risk.md │ │ ├── get_all_application_tag.md │ │ ├── get_all_application_type.md │ │ ├── get_all_as_path_list.md │ │ ├── get_all_audit_model.md │ │ ├── get_all_auth_roles.md │ │ ├── get_all_backup_file.md │ │ ├── get_all_bfd_policy_model.md │ │ ├── get_all_bfd_template.md │ │ ├── get_all_bgp_general_setting_model.md │ │ ├── get_all_bgpi_pv_address_family_model.md │ │ ├── get_all_certificate_map_model.md │ │ ├── get_all_chassis_interface.md │ │ ├── get_all_cloud_events.md │ │ ├── get_all_cloud_region.md │ │ ├── get_all_community_list.md │ │ ├── get_all_continent_object.md │ │ ├── get_all_country_object.md │ │ ├── get_all_default_action.md │ │ ├── get_all_device.md │ │ ├── get_all_device_group.md │ │ ├── get_all_device_license.md │ │ ├── get_all_device_settings.md │ │ ├── get_all_dhcpi_pv6_pool.md │ │ ├── get_all_dns_policy.md │ │ ├── get_all_dns_server_group_object.md │ │ ├── get_all_dns_server_group_override.md │ │ ├── get_all_domain.md │ │ ├── get_all_duo_config.md │ │ ├── get_all_dynamic_access_policy.md │ │ ├── get_all_dynamic_attribute_feed_config.md │ │ ├── get_all_dynamic_object.md │ │ ├── get_all_ecmp_zone_model.md │ │ ├── get_all_eigrp_policy_model.md │ │ ├── get_all_end_point_device_type.md │ │ ├── get_all_expanded_community_list.md │ │ ├── get_all_extended_access_list_model.md │ │ ├── get_all_extended_community_list.md │ │ ├── get_all_extended_community_list_override.md │ │ ├── get_all_external_lookup.md │ │ ├── get_all_external_storage.md │ │ ├── get_all_file_policy.md │ │ ├── get_all_flex_config.md │ │ ├── get_all_fmc_managed_chassis.md │ │ ├── get_all_fp_logical_interface.md │ │ ├── get_all_fp_physical_interface.md │ │ ├── get_all_fqdn_object.md │ │ ├── get_all_fqdn_override.md │ │ ├── get_all_ftd_auto_nat_rule.md │ │ ├── get_all_ftd_bridge_group_interface.md │ │ ├── get_all_ftd_ether_channel_interface.md │ │ ├── get_all_ftd_loopback_interface.md │ │ ├── get_all_ftd_manual_nat_rule.md │ │ ├── get_all_ftd_nat_policy.md │ │ ├── get_all_ftd_nat_rule.md │ │ ├── get_all_ftd_physical_interface.md │ │ ├── get_all_ftd_platform_settings_policy.md │ │ ├── get_all_ftd_redundant_interface.md │ │ ├── get_all_ftd_sub_interface.md │ │ ├── get_all_ftd_vlan_interface.md │ │ ├── get_all_ftdha_device_container.md │ │ ├── get_all_ftdha_interface_mac_addresses.md │ │ ├── get_all_ftdha_monitored_interfaces.md │ │ ├── get_all_ftdra_vpn_address_assignment_setting.md │ │ ├── get_all_ftdra_vpn_connection_profile_model.md │ │ ├── get_all_ftdra_vpn_ip_sec_crypto_map_model.md │ │ ├── get_all_ftdra_vpn_ip_sec_ik_ev2_advance_settings_model.md │ │ ├── get_all_ftdra_vpn_ldap_attribute_model.md │ │ ├── get_all_ftdra_vpn_load_balance_setting.md │ │ ├── get_all_ftdra_vpn_model.md │ │ ├── get_all_ftds2_s_vpn_model.md │ │ ├── get_all_ftdvni_interface.md │ │ ├── get_all_ftdvti_interface.md │ │ ├── get_all_geo_location_object.md │ │ ├── get_all_global_time_zone.md │ │ ├── get_all_group_policy_model.md │ │ ├── get_all_health_policy.md │ │ ├── get_all_host_object.md │ │ ├── get_all_host_override.md │ │ ├── get_all_host_scan_package_object.md │ │ ├── get_all_i_pv4_address_pool.md │ │ ├── get_all_i_pv4_prefix_list.md │ │ ├── get_all_i_pv4_static_route_model.md │ │ ├── get_all_i_pv6_address_pool.md │ │ ├── get_all_i_pv6_prefix_list.md │ │ ├── get_all_i_pv6_static_route_model.md │ │ ├── get_all_icmpv4_object.md │ │ ├── get_all_icmpv4_object_override.md │ │ ├── get_all_icmpv6_object.md │ │ ├── get_all_icmpv6_object_override.md │ │ ├── get_all_identity_policy.md │ │ ├── get_all_ik_ev1_i_psec_proposal.md │ │ ├── get_all_ik_ev2_i_psec_proposal.md │ │ ├── get_all_ikev1_policy_object.md │ │ ├── get_all_ikev2_policy_object.md │ │ ├── get_all_inline_set.md │ │ ├── get_all_interface_group_object.md │ │ ├── get_all_interface_object.md │ │ ├── get_all_internal_ca.md │ │ ├── get_all_internal_certificate.md │ │ ├── get_all_intrusion_policy.md │ │ ├── get_all_ise_security_group_tag.md │ │ ├── get_all_job_history.md │ │ ├── get_all_key_chain_object.md │ │ ├── get_all_key_chain_object_override.md │ │ ├── get_all_local_realm_user.md │ │ ├── get_all_netmap_host.md │ │ ├── get_all_netmap_vuln.md │ │ ├── get_all_network_group.md │ │ ├── get_all_network_group_override.md │ │ ├── get_all_network_module.md │ │ ├── get_all_network_object.md │ │ ├── get_all_network_override.md │ │ ├── get_all_ospf_interface_policy_model.md │ │ ├── get_all_ospf_policy_model.md │ │ ├── get_all_ospfv3_interface_policy_model.md │ │ ├── get_all_ospfv3_policy_model.md │ │ ├── get_all_packet_tracer_pcap_files.md │ │ ├── get_all_path_monitored_interface.md │ │ ├── get_all_pbr_policy_model.md │ │ ├── get_all_physical_interface.md │ │ ├── get_all_policy_assignment.md │ │ ├── get_all_policy_list.md │ │ ├── get_all_port_object_group.md │ │ ├── get_all_port_object_group_override.md │ │ ├── get_all_prefilter_default_action.md │ │ ├── get_all_prefilter_policy.md │ │ ├── get_all_prefilter_rule.md │ │ ├── get_all_protocol_port_object.md │ │ ├── get_all_protocol_port_object_override.md │ │ ├── get_all_radius_server_group_model.md │ │ ├── get_all_range_object.md │ │ ├── get_all_range_override.md │ │ ├── get_all_realm.md │ │ ├── get_all_realm_user.md │ │ ├── get_all_realm_user_group.md │ │ ├── get_all_rest_element.md │ │ ├── get_all_rest_ftd_cluster_device_container.md │ │ ├── get_all_rest_incident.md │ │ ├── get_all_rest_indicator.md │ │ ├── get_all_rest_observable.md │ │ ├── get_all_rest_tid_source.md │ │ ├── get_all_route_map.md │ │ ├── get_all_securex_config.md │ │ ├── get_all_security_group_tag.md │ │ ├── get_all_security_zone_object.md │ │ ├── get_all_server_version.md │ │ ├── get_all_si_network_feed.md │ │ ├── get_all_si_network_list.md │ │ ├── get_all_sidns_feed.md │ │ ├── get_all_sidns_list.md │ │ ├── get_all_sinkhole.md │ │ ├── get_all_siurl_feed.md │ │ ├── get_all_siurl_list.md │ │ ├── get_all_sla_monitor_object_model.md │ │ ├── get_all_snmp_config.md │ │ ├── get_all_snort3_intrusion_rule_groups.md │ │ ├── get_all_snort3_intrusion_rule_groups_object.md │ │ ├── get_all_snort3_ips_rules.md │ │ ├── get_all_snort3_ips_rules_object.md │ │ ├── get_all_snort3_network_analysis_policy.md │ │ ├── get_all_sso_config.md │ │ ├── get_all_sso_server.md │ │ ├── get_all_standard_acl.md │ │ ├── get_all_standard_community_list.md │ │ ├── get_all_static_route_model.md │ │ ├── get_all_syslog_config.md │ │ ├── get_all_task_status.md │ │ ├── get_all_time_range.md │ │ ├── get_all_time_zone_object.md │ │ ├── get_all_tunnel_tags.md │ │ ├── get_all_umbrella_connection.md │ │ ├── get_all_umbrella_data_center.md │ │ ├── get_all_umbrella_dns_policy.md │ │ ├── get_all_umbrella_dns_rule.md │ │ ├── get_all_upgrade_package.md │ │ ├── get_all_url_category.md │ │ ├── get_all_url_group_object.md │ │ ├── get_all_url_group_override.md │ │ ├── get_all_url_object.md │ │ ├── get_all_url_override.md │ │ ├── get_all_variable_set.md │ │ ├── get_all_virtual_router_model.md │ │ ├── get_all_virtual_switch.md │ │ ├── get_all_vlan_override.md │ │ ├── get_all_vlan_tag.md │ │ ├── get_all_vlan_tag_group.md │ │ ├── get_all_vlan_tag_group_override.md │ │ ├── get_all_vpn_advanced_settings.md │ │ ├── get_all_vpn_cert_enrollment_model.md │ │ ├── get_all_vpn_endpoint.md │ │ ├── get_all_vpn_ike_settings.md │ │ ├── get_all_vpn_ip_sec_settings.md │ │ ├── get_all_vrf_bfd_policy_model.md │ │ ├── get_all_vrf_bgpi_pv_address_family_model.md │ │ ├── get_all_vrf_ecmp_zone_model.md │ │ ├── get_all_vrf_eigrp_policy_model.md │ │ ├── get_all_vrf_i_pv4_static_route_model.md │ │ ├── get_all_vrf_i_pv6_static_route_model.md │ │ ├── get_all_vrf_ospf_interface_policy_model.md │ │ ├── get_all_vrf_ospf_policy_model.md │ │ ├── get_all_vrf_pbr_policy_model.md │ │ ├── get_all_vrf_static_route_model.md │ │ ├── get_all_vtep_policy.md │ │ ├── get_allow_dns_rule.md │ │ ├── get_any_connect_custom_attribute_model.md │ │ ├── get_any_connect_custom_attribute_override.md │ │ ├── get_any_connect_external_browser_package_model.md │ │ ├── get_any_connect_package_model.md │ │ ├── get_any_connect_profile_model.md │ │ ├── get_any_protocol_port_object.md │ │ ├── get_application.md │ │ ├── get_application_category.md │ │ ├── get_application_filter.md │ │ ├── get_application_productivity.md │ │ ├── get_application_risk.md │ │ ├── get_application_tag.md │ │ ├── get_application_type.md │ │ ├── get_as_path_list.md │ │ ├── get_audit_model.md │ │ ├── get_backup_file.md │ │ ├── get_bfd_policy_model.md │ │ ├── get_bfd_template.md │ │ ├── get_bgp_general_setting_model.md │ │ ├── get_bgpi_pv_address_family_model.md │ │ ├── get_block_dns_rule.md │ │ ├── get_certificate_map_model.md │ │ ├── get_chassis_interface.md │ │ ├── get_cloud_events.md │ │ ├── get_cloud_region.md │ │ ├── get_cluster_health_monitor_settings_model.md │ │ ├── get_commands.md │ │ ├── get_community_list.md │ │ ├── get_continent_object.md │ │ ├── get_country_object.md │ │ ├── get_csdac_status.md │ │ ├── get_default_action.md │ │ ├── get_deployable_device.md │ │ ├── get_deployment_detail.md │ │ ├── get_device.md │ │ ├── get_device_group.md │ │ ├── get_device_license.md │ │ ├── get_device_settings.md │ │ ├── get_dhcpi_pv6_pool.md │ │ ├── get_dns_policy.md │ │ ├── get_dns_server_group_object.md │ │ ├── get_dns_server_group_override.md │ │ ├── get_domain.md │ │ ├── get_download_backup.md │ │ ├── get_download_report.md │ │ ├── get_duo_config.md │ │ ├── get_dynamic_access_policy.md │ │ ├── get_dynamic_object.md │ │ ├── get_dynamic_object_mappings.md │ │ ├── get_ebs_snapshot.md │ │ ├── get_ecmp_zone_model.md │ │ ├── get_eigrp_policy_model.md │ │ ├── get_end_point_device_type.md │ │ ├── get_evaluate_chassis_operation.md │ │ ├── get_expanded_community_list.md │ │ ├── get_extended_access_list_model.md │ │ ├── get_extended_community_list.md │ │ ├── get_extended_community_list_override.md │ │ ├── get_external_lookup.md │ │ ├── get_external_storage.md │ │ ├── get_file_policy.md │ │ ├── get_flex_config.md │ │ ├── get_fmc_managed_chassis.md │ │ ├── get_fmcha_status.md │ │ ├── get_fp_interface_statistics.md │ │ ├── get_fp_logical_interface.md │ │ ├── get_fp_physical_interface.md │ │ ├── get_fqdn_object.md │ │ ├── get_fqdn_override.md │ │ ├── get_ftd_all_interfaces_model.md │ │ ├── get_ftd_auto_nat_rule.md │ │ ├── get_ftd_bridge_group_interface.md │ │ ├── get_ftd_ether_channel_interface.md │ │ ├── get_ftd_loopback_interface.md │ │ ├── get_ftd_manual_nat_rule.md │ │ ├── get_ftd_nat_policy.md │ │ ├── get_ftd_nat_rule.md │ │ ├── get_ftd_physical_interface.md │ │ ├── get_ftd_platform_settings_policy.md │ │ ├── get_ftd_redundant_interface.md │ │ ├── get_ftd_sub_interface.md │ │ ├── get_ftd_vlan_interface.md │ │ ├── get_ftdha_device_container.md │ │ ├── get_ftdha_interface_mac_addresses.md │ │ ├── get_ftdha_monitored_interfaces.md │ │ ├── get_ftdra_vpn_address_assignment_setting.md │ │ ├── get_ftdra_vpn_certificate_map_settings.md │ │ ├── get_ftdra_vpn_connection_profile_model.md │ │ ├── get_ftdra_vpn_ip_sec_crypto_map_model.md │ │ ├── get_ftdra_vpn_ip_sec_ik_ev2_advance_settings_model.md │ │ ├── get_ftdra_vpn_ldap_attribute_model.md │ │ ├── get_ftdra_vpn_load_balance_setting.md │ │ ├── get_ftdra_vpn_model.md │ │ ├── get_ftds2_s_vpn_model.md │ │ ├── get_ftdvni_interface.md │ │ ├── get_ftdvti_interface.md │ │ ├── get_geo_location_object.md │ │ ├── get_global_device_search.md │ │ ├── get_global_object_search.md │ │ ├── get_global_policy_search.md │ │ ├── get_global_search.md │ │ ├── get_global_time_zone.md │ │ ├── get_group_policy_model.md │ │ ├── get_health_alert_model.md │ │ ├── get_health_metric.md │ │ ├── get_health_monitor_model.md │ │ ├── get_health_policy.md │ │ ├── get_hit_count.md │ │ ├── get_host_object.md │ │ ├── get_host_override.md │ │ ├── get_host_scan_package_object.md │ │ ├── get_i_pv4_address_pool.md │ │ ├── get_i_pv4_address_pool_override.md │ │ ├── get_i_pv4_prefix_list.md │ │ ├── get_i_pv4_static_route_model.md │ │ ├── get_i_pv6_address_pool.md │ │ ├── get_i_pv6_address_pool_override.md │ │ ├── get_i_pv6_prefix_list.md │ │ ├── get_i_pv6_static_route_model.md │ │ ├── get_icmpv4_object.md │ │ ├── get_icmpv4_object_override.md │ │ ├── get_icmpv6_object.md │ │ ├── get_icmpv6_object_override.md │ │ ├── get_identity_policy.md │ │ ├── get_ik_ev1_i_psec_proposal.md │ │ ├── get_ik_ev2_i_psec_proposal.md │ │ ├── get_ikev1_policy_object.md │ │ ├── get_ikev2_policy_object.md │ │ ├── get_inline_set.md │ │ ├── get_inspector_config.md │ │ ├── get_inspector_override_config.md │ │ ├── get_interface_event.md │ │ ├── get_interface_group_object.md │ │ ├── get_interface_object.md │ │ ├── get_internal_ca.md │ │ ├── get_internal_certificate.md │ │ ├── get_intrusion_policy.md │ │ ├── get_ise_security_group_tag.md │ │ ├── get_job_history.md │ │ ├── get_key_chain_object.md │ │ ├── get_key_chain_object_override.md │ │ ├── get_local_realm_user.md │ │ ├── get_netmap_host.md │ │ ├── get_netmap_vuln.md │ │ ├── get_network_address.md │ │ ├── get_network_group.md │ │ ├── get_network_group_override.md │ │ ├── get_network_module.md │ │ ├── get_network_object.md │ │ ├── get_object_usage.md │ │ ├── get_ospf_interface_policy_model.md │ │ ├── get_ospf_policy_model.md │ │ ├── get_ospfv3_interface_policy_model.md │ │ ├── get_ospfv3_policy_model.md │ │ ├── get_packet_tracer_pcap_extract.md │ │ ├── get_packet_tracer_pcap_files.md │ │ ├── get_pbr_policy_model.md │ │ ├── get_pending_changes.md │ │ ├── get_physical_interface.md │ │ ├── get_policy_assignment.md │ │ ├── get_policy_list.md │ │ ├── get_policy_lock.md │ │ ├── get_port_object.md │ │ ├── get_port_object_group.md │ │ ├── get_port_object_group_override.md │ │ ├── get_prefilter_default_action.md │ │ ├── get_prefilter_hit_count.md │ │ ├── get_prefilter_policy.md │ │ ├── get_prefilter_rule.md │ │ ├── get_protocol_port_object.md │ │ ├── get_protocol_port_object_override.md │ │ ├── get_ra_vpn_gateway.md │ │ ├── get_radius_server_group_model.md │ │ ├── get_range_object.md │ │ ├── get_range_override.md │ │ ├── get_realm.md │ │ ├── get_realm_user.md │ │ ├── get_realm_user_group.md │ │ ├── get_rest_element.md │ │ ├── get_rest_ftd_cluster_device_container.md │ │ ├── get_rest_incident.md │ │ ├── get_rest_indicator.md │ │ ├── get_rest_observable.md │ │ ├── get_rest_settings.md │ │ ├── get_rest_tid_source.md │ │ ├── get_route_map.md │ │ ├── get_s2_s_vpn_summary_model.md │ │ ├── get_securex_config.md │ │ ├── get_security_group_tag.md │ │ ├── get_security_zone_object.md │ │ ├── get_server_version.md │ │ ├── get_si_network_feed.md │ │ ├── get_si_network_list.md │ │ ├── get_sidns_feed.md │ │ ├── get_sidns_list.md │ │ ├── get_sinkhole.md │ │ ├── get_siurl_feed.md │ │ ├── get_siurl_list.md │ │ ├── get_sla_monitor_object_model.md │ │ ├── get_smart_license.md │ │ ├── get_snmp_config.md │ │ ├── get_snort3_intrusion_rule_groups.md │ │ ├── get_snort3_intrusion_rule_groups_object.md │ │ ├── get_snort3_ips_rules.md │ │ ├── get_snort3_ips_rules_object.md │ │ ├── get_snort3_network_analysis_policy.md │ │ ├── get_sso_config.md │ │ ├── get_sso_server.md │ │ ├── get_sso_server_override.md │ │ ├── get_standard_acl.md │ │ ├── get_standard_community_list.md │ │ ├── get_static_route_model.md │ │ ├── get_syslog_config.md │ │ ├── get_task_status.md │ │ ├── get_time_range.md │ │ ├── get_time_zone_object.md │ │ ├── get_time_zone_object_override.md │ │ ├── get_tunnel_status.md │ │ ├── get_tunnel_summary.md │ │ ├── get_tunnel_tags.md │ │ ├── get_umbrella_connection.md │ │ ├── get_umbrella_deployment_data.md │ │ ├── get_umbrella_deployment_transcript.md │ │ ├── get_umbrella_dns_policy.md │ │ ├── get_umbrella_dns_rule.md │ │ ├── get_umbrella_protection_policy.md │ │ ├── get_upgrade_package.md │ │ ├── get_url_category.md │ │ ├── get_url_group_object.md │ │ ├── get_url_group_override.md │ │ ├── get_url_object.md │ │ ├── get_url_override.md │ │ ├── get_variable_set.md │ │ ├── get_virtual_router_model.md │ │ ├── get_virtual_switch.md │ │ ├── get_vlan_override.md │ │ ├── get_vlan_tag.md │ │ ├── get_vlan_tag_group.md │ │ ├── get_vlan_tag_group_override.md │ │ ├── get_vpn_advanced_settings.md │ │ ├── get_vpn_cert_enrollment_model.md │ │ ├── get_vpn_endpoint.md │ │ ├── get_vpn_ike_settings.md │ │ ├── get_vpn_ip_sec_settings.md │ │ ├── get_vrf_bfd_policy_model.md │ │ ├── get_vrf_bgpi_pv_address_family_model.md │ │ ├── get_vrf_ecmp_zone_model.md │ │ ├── get_vrf_eigrp_policy_model.md │ │ ├── get_vrf_i_pv4_static_route_model.md │ │ ├── get_vrf_i_pv6_static_route_model.md │ │ ├── get_vrf_ospf_interface_policy_model.md │ │ ├── get_vrf_ospf_policy_model.md │ │ ├── get_vrf_pbr_policy_model.md │ │ ├── get_vrf_static_route_model.md │ │ ├── get_vtep_policy.md │ │ ├── index.md │ │ ├── update_access_policy.md │ │ ├── update_access_policy_category.md │ │ ├── update_access_policy_inheritance_setting.md │ │ ├── update_access_policy_logging_setting_model.md │ │ ├── update_access_rule.md │ │ ├── update_any_connect_custom_attribute_model.md │ │ ├── update_any_connect_external_browser_package_model.md │ │ ├── update_any_connect_package_model.md │ │ ├── update_any_connect_profile_model.md │ │ ├── update_application_filter.md │ │ ├── update_as_path_list.md │ │ ├── update_bfd_policy_model.md │ │ ├── update_bfd_template.md │ │ ├── update_bgp_general_setting_model.md │ │ ├── update_bgpi_pv_address_family_model.md │ │ ├── update_certificate_map_model.md │ │ ├── update_cloud_events.md │ │ ├── update_cloud_region.md │ │ ├── update_cluster_health_monitor_settings_model.md │ │ ├── update_default_action.md │ │ ├── update_device.md │ │ ├── update_device_group.md │ │ ├── update_device_license.md │ │ ├── update_device_settings.md │ │ ├── update_dhcpi_pv6_pool.md │ │ ├── update_dns_server_group_object.md │ │ ├── update_duo_config.md │ │ ├── update_dynamic_access_policy.md │ │ ├── update_dynamic_object.md │ │ ├── update_dynamic_object_mappings.md │ │ ├── update_ecmp_zone_model.md │ │ ├── update_eigrp_policy_model.md │ │ ├── update_expanded_community_list.md │ │ ├── update_extended_access_list_model.md │ │ ├── update_extended_community_list.md │ │ ├── update_external_lookup.md │ │ ├── update_external_storage.md │ │ ├── update_fp_logical_interface.md │ │ ├── update_fp_physical_interface.md │ │ ├── update_fqdn_object.md │ │ ├── update_ftd_auto_nat_rule.md │ │ ├── update_ftd_bridge_group_interface.md │ │ ├── update_ftd_ether_channel_interface.md │ │ ├── update_ftd_loopback_interface.md │ │ ├── update_ftd_manual_nat_rule.md │ │ ├── update_ftd_nat_policy.md │ │ ├── update_ftd_physical_interface.md │ │ ├── update_ftd_redundant_interface.md │ │ ├── update_ftd_sub_interface.md │ │ ├── update_ftd_vlan_interface.md │ │ ├── update_ftdha_device_container.md │ │ ├── update_ftdha_interface_mac_addresses.md │ │ ├── update_ftdha_monitored_interfaces.md │ │ ├── update_ftdra_vpn_address_assignment_setting.md │ │ ├── update_ftdra_vpn_certificate_map_settings.md │ │ ├── update_ftdra_vpn_connection_profile_model.md │ │ ├── update_ftdra_vpn_ip_sec_crypto_map_model.md │ │ ├── update_ftdra_vpn_ip_sec_ik_ev2_advance_settings_model.md │ │ ├── update_ftdra_vpn_ldap_attribute_model.md │ │ ├── update_ftdra_vpn_load_balance_setting.md │ │ ├── update_ftdra_vpn_model.md │ │ ├── update_ftds2_s_vpn_model.md │ │ ├── update_ftdvni_interface.md │ │ ├── update_ftdvti_interface.md │ │ ├── update_geo_location_object.md │ │ ├── update_group_policy_model.md │ │ ├── update_hit_count.md │ │ ├── update_host_object.md │ │ ├── update_host_scan_package_object.md │ │ ├── update_i_pv4_address_pool.md │ │ ├── update_i_pv4_prefix_list.md │ │ ├── update_i_pv4_static_route_model.md │ │ ├── update_i_pv6_address_pool.md │ │ ├── update_i_pv6_prefix_list.md │ │ ├── update_i_pv6_static_route_model.md │ │ ├── update_icmpv4_object.md │ │ ├── update_icmpv6_object.md │ │ ├── update_ik_ev1_i_psec_proposal.md │ │ ├── update_ik_ev2_i_psec_proposal.md │ │ ├── update_ikev1_policy_object.md │ │ ├── update_ikev2_policy_object.md │ │ ├── update_inline_set.md │ │ ├── update_inspector_override_config.md │ │ ├── update_interface_group_object.md │ │ ├── update_internal_ca.md │ │ ├── update_internal_certificate.md │ │ ├── update_intrusion_policy.md │ │ ├── update_job_history.md │ │ ├── update_key_chain_object.md │ │ ├── update_local_realm_user.md │ │ ├── update_multiple_access_rule.md │ │ ├── update_multiple_device_license.md │ │ ├── update_multiple_device_settings.md │ │ ├── update_multiple_dynamic_attribute_feed_config.md │ │ ├── update_multiple_ftd_auto_nat_rule.md │ │ ├── update_multiple_ftd_manual_nat_rule.md │ │ ├── update_multiple_prefilter_rule.md │ │ ├── update_multiple_snort3_intrusion_rule_groups.md │ │ ├── update_multiple_snort3_ips_rules.md │ │ ├── update_multiple_snort3_ips_rules_object.md │ │ ├── update_network_group.md │ │ ├── update_network_module.md │ │ ├── update_network_module_sync.md │ │ ├── update_network_object.md │ │ ├── update_pbr_policy_model.md │ │ ├── update_physical_interface.md │ │ ├── update_policy_assignment.md │ │ ├── update_policy_list.md │ │ ├── update_port_object_group.md │ │ ├── update_prefilter_default_action.md │ │ ├── update_prefilter_hit_count.md │ │ ├── update_prefilter_policy.md │ │ ├── update_prefilter_rule.md │ │ ├── update_protocol_port_object.md │ │ ├── update_radius_server_group_model.md │ │ ├── update_range_object.md │ │ ├── update_realm.md │ │ ├── update_rest_ftd_cluster_device_container.md │ │ ├── update_rest_incident.md │ │ ├── update_rest_indicator.md │ │ ├── update_rest_observable.md │ │ ├── update_rest_settings.md │ │ ├── update_rest_tid_source.md │ │ ├── update_route_map.md │ │ ├── update_securex_config.md │ │ ├── update_security_group_tag.md │ │ ├── update_security_zone_object.md │ │ ├── update_siurl_list.md │ │ ├── update_sla_monitor_object_model.md │ │ ├── update_snort3_intrusion_rule_groups.md │ │ ├── update_snort3_intrusion_rule_groups_object.md │ │ ├── update_snort3_ips_rules.md │ │ ├── update_snort3_ips_rules_object.md │ │ ├── update_snort3_network_analysis_policy.md │ │ ├── update_sso_config.md │ │ ├── update_sso_server.md │ │ ├── update_standard_acl.md │ │ ├── update_standard_community_list.md │ │ ├── update_time_range.md │ │ ├── update_time_zone_object.md │ │ ├── update_tunnel_tags.md │ │ ├── update_umbrella_connection.md │ │ ├── update_umbrella_dns_policy.md │ │ ├── update_umbrella_dns_rule.md │ │ ├── update_url_group_object.md │ │ ├── update_url_object.md │ │ ├── update_virtual_router_model.md │ │ ├── update_virtual_switch.md │ │ ├── update_vlan_tag.md │ │ ├── update_vlan_tag_group.md │ │ ├── update_vpn_advanced_settings.md │ │ ├── update_vpn_cert_enrollment_model.md │ │ ├── update_vpn_endpoint.md │ │ ├── update_vpn_ike_settings.md │ │ ├── update_vpn_ip_sec_settings.md │ │ ├── update_vrf_bfd_policy_model.md │ │ ├── update_vrf_bgpi_pv_address_family_model.md │ │ ├── update_vrf_ecmp_zone_model.md │ │ ├── update_vrf_eigrp_policy_model.md │ │ ├── update_vrf_i_pv4_static_route_model.md │ │ ├── update_vrf_i_pv6_static_route_model.md │ │ ├── update_vrf_pbr_policy_model.md │ │ └── update_vtep_policy.md ├── fmc_configuration │ ├── access_policy_create.yml │ ├── access_policy_delete.yml │ ├── access_rule_delete.yml │ ├── access_rule_with_logging_create.yml │ ├── access_rule_with_networks_create.yml │ ├── data_dns_settings.yml │ ├── deployment.yml │ ├── device_registration.yml │ ├── dnsservergroup_create.yml │ ├── dnsservergroup_delete.yml │ ├── hosts │ ├── nat_create.yml │ ├── natpolicy_delete.yml │ ├── natrule_delete.yml │ ├── network_object.yml │ ├── physical_interface.yml │ ├── port_object.yml │ ├── prefilter_policy_create.yml │ ├── prefilter_policy_delete.yml │ ├── prefilter_rule_create.yml │ ├── prefilter_rule_delete.yml │ ├── samples │ │ ├── access_policy.yml │ │ ├── access_policy_delete.yml │ │ ├── deployment.yml │ │ ├── device_registration.yml │ │ ├── nat.yml │ │ ├── natpolicy_delete.yml │ │ ├── running_in_docker.md │ │ ├── security_zone_delete.yml │ │ ├── security_zones.yml │ │ └── vars.yml │ ├── security_zone_delete.yml │ ├── security_zones_create.yml │ ├── static_route.yml │ ├── sub_interfaces.yml │ └── vars.yml ├── test_duplicate_network_object.yml ├── test_fmc_configuration_register_as.yml ├── test_fmc_configuration_register_as_upsert.yml ├── test_fmc_configuration_validation.yml ├── test_idempotency_access_rule.yml ├── test_idempotency_network_object.yml ├── test_nat.yml └── test_upsert_network_object.yml ├── test-requirements.txt └── tests ├── sanity ├── ignore-2.10.txt ├── ignore-2.9.txt └── requirements.txt └── unit ├── .DS_Store ├── compat ├── __init__.py ├── builtins.py ├── mock.py └── unittest.py ├── httpapi_plugins ├── __init__.py └── test_fmc.py ├── module_utils ├── __init__.py ├── test_cache.py ├── test_common.py ├── test_configuration.py ├── test_data │ ├── fmc_spec_with_ex.json │ └── ngfw_with_ex.json ├── test_device.py ├── test_fmc_swagger_parser.py ├── test_fmc_swagger_validator.py ├── test_fmc_swagger_with_real_data.py ├── test_upsert_functionality.py └── utils.py ├── modules ├── __init__.py └── fixtures │ ├── complex_schema.json │ ├── config_config.json │ ├── config_config_changes.json │ ├── config_empty_data.json │ ├── description_schema.json │ ├── device_schema.json │ ├── devices_schema.json │ ├── l3vpn_l3vpn_endpoint_schema.json │ ├── l3vpn_l3vpn_schema.json │ ├── l3vpn_schema.json │ ├── sync_from_schema.json │ └── verify_violation_data.json ├── requirements.txt └── test_fmc_configuration.py /.github/workflows/galaxy-importer.cfg: -------------------------------------------------------------------------------- 1 | [galaxy-importer] 2 | LOG_LEVEL_MAIN = INFO 3 | RUN_FLAKE8 = True 4 | RUN_ANSIBLE_DOC = True 5 | RUN_ANSIBLE_LINT = True 6 | RUN_ANSIBLE_TEST = False 7 | ANSIBLE_TEST_LOCAL_IMAGE = False 8 | LOCAL_IMAGE_DOCKER = False 9 | INFRA_OSD = False -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/FMCAnsible/9b5dccf7c6ba6dcb75e2c073fb8b5f4bcaec5ca0/__init__.py -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | log_path = ./logs 3 | collections_paths = /root:~/.ansible/collections:/usr/share/ansible/collections 4 | interpreter_python = /usr/local/bin/python -------------------------------------------------------------------------------- /changelogs/changelog.yaml: -------------------------------------------------------------------------------- 1 | ancestor: null 2 | releases: 3 | 0.1.0: 4 | changes: 5 | release_summary: 'This is the first release of the ``cisco.fmcansible`` collection. 6 | 7 | ' 8 | release_date: '2021-06-01' 9 | -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- 1 | requires_ansible: '>=2.9.10' -------------------------------------------------------------------------------- /plugins/httpapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/FMCAnsible/9b5dccf7c6ba6dcb75e2c073fb8b5f4bcaec5ca0/plugins/httpapi/__init__.py -------------------------------------------------------------------------------- /plugins/module_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/FMCAnsible/9b5dccf7c6ba6dcb75e2c073fb8b5f4bcaec5ca0/plugins/module_utils/__init__.py -------------------------------------------------------------------------------- /plugins/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/FMCAnsible/9b5dccf7c6ba6dcb75e2c073fb8b5f4bcaec5ca0/plugins/modules/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | #ansible==2.10.7 2 | ansible==2.16.14 3 | urllib3==1.26.5 4 | lxml==4.6.3 5 | -------------------------------------------------------------------------------- /samples/docs/components/access_policy_category_list_container.md: -------------------------------------------------------------------------------- 1 | # AccessPolicyCategoryListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/access_policy_inheritance_setting_list_container.md: -------------------------------------------------------------------------------- 1 | # AccessPolicyInheritanceSettingListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/access_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # AccessPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/access_policy_logging_setting_model_list_container.md: -------------------------------------------------------------------------------- 1 | # AccessPolicyLoggingSettingModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/access_policy_security_intelligence_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # AccessPolicySecurityIntelligencePolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/access_rule_list_container.md: -------------------------------------------------------------------------------- 1 | # AccessRuleListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/allow_dns_rule_list_container.md: -------------------------------------------------------------------------------- 1 | # AllowDNSRuleListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/any_connect_custom_attribute_model_list_container.md: -------------------------------------------------------------------------------- 1 | # AnyConnectCustomAttributeModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/any_connect_custom_attribute_override_list_container.md: -------------------------------------------------------------------------------- 1 | # AnyConnectCustomAttributeOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/any_connect_external_browser_package_model_list_container.md: -------------------------------------------------------------------------------- 1 | # AnyConnectExternalBrowserPackageModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/any_connect_package_model_list_container.md: -------------------------------------------------------------------------------- 1 | # AnyConnectPackageModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/any_connect_profile_model_list_container.md: -------------------------------------------------------------------------------- 1 | # AnyConnectProfileModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/any_protocol_port_object_list_container.md: -------------------------------------------------------------------------------- 1 | # AnyProtocolPortObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/applicable_device_list_container.md: -------------------------------------------------------------------------------- 1 | # ApplicableDeviceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/application_category.md: -------------------------------------------------------------------------------- 1 | # ApplicationCategory 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * id 13 | * overrides 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/application_category_list_container.md: -------------------------------------------------------------------------------- 1 | # ApplicationCategoryListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/application_filter_list_container.md: -------------------------------------------------------------------------------- 1 | # ApplicationFilterListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/application_list_container.md: -------------------------------------------------------------------------------- 1 | # ApplicationListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/application_productivity.md: -------------------------------------------------------------------------------- 1 | # ApplicationProductivity 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * id 13 | * overrides 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/application_productivity_list_container.md: -------------------------------------------------------------------------------- 1 | # ApplicationProductivityListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/application_risk.md: -------------------------------------------------------------------------------- 1 | # ApplicationRisk 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/application_risk_list_container.md: -------------------------------------------------------------------------------- 1 | # ApplicationRiskListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/application_tag.md: -------------------------------------------------------------------------------- 1 | # ApplicationTag 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * id 13 | * overrides 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/application_tag_list_container.md: -------------------------------------------------------------------------------- 1 | # ApplicationTagListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/application_type.md: -------------------------------------------------------------------------------- 1 | # ApplicationType 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/application_type_list_container.md: -------------------------------------------------------------------------------- 1 | # ApplicationTypeListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/archive_snapshot.md: -------------------------------------------------------------------------------- 1 | # ArchiveSnapshot 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/as_path_list_list_container.md: -------------------------------------------------------------------------------- 1 | # AsPathListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/attributes.md: -------------------------------------------------------------------------------- 1 | # Attributes 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/audit_model_list_container.md: -------------------------------------------------------------------------------- 1 | # AuditModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/auth_roles.md: -------------------------------------------------------------------------------- 1 | # AuthRoles 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/auth_roles_list_container.md: -------------------------------------------------------------------------------- 1 | # AuthRolesListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/backup.md: -------------------------------------------------------------------------------- 1 | # Backup 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * description 9 | * links 10 | * id 11 | * type 12 | * version 13 | * taskId 14 | -------------------------------------------------------------------------------- /samples/docs/components/backup_file_list_container.md: -------------------------------------------------------------------------------- 1 | # BackupFileListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/backup_metadata.md: -------------------------------------------------------------------------------- 1 | # BackupMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * task 9 | * domain 10 | * readOnly 11 | * matches 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/bfd_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # BFDPolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/bfd_policy_model_meta_data.md: -------------------------------------------------------------------------------- 1 | # BFDPolicyModelMetaData 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * domain 9 | * readOnly 10 | * iptype 11 | * matches 12 | * ipType 13 | * timestamp 14 | -------------------------------------------------------------------------------- /samples/docs/components/bfd_template_list_container.md: -------------------------------------------------------------------------------- 1 | # BFDTemplateListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/bgp_general_setting_model_list_container.md: -------------------------------------------------------------------------------- 1 | # BGPGeneralSettingModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/bgpi_pv_address_family_model_list_container.md: -------------------------------------------------------------------------------- 1 | # BGPIPvAddressFamilyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/block_dns_rule_list_container.md: -------------------------------------------------------------------------------- 1 | # BlockDNSRuleListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/breakout_interface.md: -------------------------------------------------------------------------------- 1 | # BreakoutInterface 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * targetInterfaces 9 | * ignoreWarning 10 | * name 11 | * description 12 | * links 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/cert_enrollment_status.md: -------------------------------------------------------------------------------- 1 | # CertEnrollmentStatus 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * certEnrollment 8 | * certificateInfo 9 | -------------------------------------------------------------------------------- /samples/docs/components/certificate_info.md: -------------------------------------------------------------------------------- 1 | # CertificateInfo 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * isCA 8 | * expiry 9 | * issuer 10 | -------------------------------------------------------------------------------- /samples/docs/components/certificate_map_model_list_container.md: -------------------------------------------------------------------------------- 1 | # CertificateMapModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/change_config_manager_ftd_metadata.md: -------------------------------------------------------------------------------- 1 | # ChangeConfigManagerFTDMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * task 9 | * domain 10 | * readOnly 11 | * matches 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/chassis_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # ChassisInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/cloud_events_list_container.md: -------------------------------------------------------------------------------- 1 | # CloudEventsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/cloud_region_list_container.md: -------------------------------------------------------------------------------- 1 | # CloudRegionListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/cluster_health_monitor_setting_metadata.md: -------------------------------------------------------------------------------- 1 | # ClusterHealthMonitorSettingMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * description 9 | * links 10 | * id 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/commands.md: -------------------------------------------------------------------------------- 1 | # Commands 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * commandOutput 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | * commandInput 16 | -------------------------------------------------------------------------------- /samples/docs/components/commands_list_container.md: -------------------------------------------------------------------------------- 1 | # CommandsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/community_list_list_container.md: -------------------------------------------------------------------------------- 1 | # CommunityListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/continent_object_list_container.md: -------------------------------------------------------------------------------- 1 | # ContinentObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/country_object_list_container.md: -------------------------------------------------------------------------------- 1 | # CountryObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/csdac_status.md: -------------------------------------------------------------------------------- 1 | # CSDACStatus 2 | 3 | ## Indicates the current status of the Cisco Secure Dynamic Attributes Connector(CSDAC) microapp. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * status 9 | -------------------------------------------------------------------------------- /samples/docs/components/csdac_status_list_container.md: -------------------------------------------------------------------------------- 1 | # CSDACStatusListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/custom_upgrade.md: -------------------------------------------------------------------------------- 1 | # CustomUpgrade 2 | 3 | ## Initiates custom package upgrade script execution 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * description 9 | * id 10 | * packageName 11 | * taskId 12 | -------------------------------------------------------------------------------- /samples/docs/components/dap_authorization_attributes.md: -------------------------------------------------------------------------------- 1 | # DapAuthorizationAttributes 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * networkACL 8 | * dapRecordName 9 | * action 10 | * anyConnectAttributes 11 | * message 12 | * priority 13 | -------------------------------------------------------------------------------- /samples/docs/components/default_action_list_container.md: -------------------------------------------------------------------------------- 1 | # DefaultActionListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/deployable_device_list_container.md: -------------------------------------------------------------------------------- 1 | # DeployableDeviceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/deployment_detail_list_container.md: -------------------------------------------------------------------------------- 1 | # DeploymentDetailListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/deployment_request_metadata.md: -------------------------------------------------------------------------------- 1 | # DeploymentRequestMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * task 9 | * domain 10 | * readOnly 11 | * matches 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/device_chassis_data.md: -------------------------------------------------------------------------------- 1 | # DeviceChassisData 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * securityModuleNo 8 | * chassisUrl 9 | * securityModuleSN 10 | * chassisSerialNo 11 | -------------------------------------------------------------------------------- /samples/docs/components/device_copy_config_request.md: -------------------------------------------------------------------------------- 1 | # DeviceCopyConfigRequest 2 | 3 | ## Copy configuration operation on device 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * copySharedPolicies 9 | * targetDeviceList 10 | * sourceDevice 11 | -------------------------------------------------------------------------------- /samples/docs/components/device_group.md: -------------------------------------------------------------------------------- 1 | # DeviceGroup 2 | 3 | ## A model representing a DeviceGroup. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * metadata 9 | * members 10 | * name 11 | * description 12 | * links 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/device_group_list_container.md: -------------------------------------------------------------------------------- 1 | # DeviceGroupListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/device_import_export_metadata.md: -------------------------------------------------------------------------------- 1 | # DeviceImportExportMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * task 9 | * domain 10 | * downloadUrl 11 | * checksum 12 | * readOnly 13 | * matches 14 | * timestamp 15 | -------------------------------------------------------------------------------- /samples/docs/components/device_inventory_data.md: -------------------------------------------------------------------------------- 1 | # DeviceInventoryData 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * cpuType 8 | * cpuCores 9 | * memoryInMB 10 | * storageInGB 11 | -------------------------------------------------------------------------------- /samples/docs/components/device_license_list_container.md: -------------------------------------------------------------------------------- 1 | # DeviceLicenseListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/device_list_container.md: -------------------------------------------------------------------------------- 1 | # DeviceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/device_settings.md: -------------------------------------------------------------------------------- 1 | # DeviceSettings 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | * deploymentSettings 15 | -------------------------------------------------------------------------------- /samples/docs/components/device_settings_list_container.md: -------------------------------------------------------------------------------- 1 | # DeviceSettingsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/dhcpi_pv6_other_server_options.md: -------------------------------------------------------------------------------- 1 | # DHCPIPv6OtherServerOptions 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * address 8 | * domainName 9 | * option 10 | -------------------------------------------------------------------------------- /samples/docs/components/dhcpi_pv6_pool_list_container.md: -------------------------------------------------------------------------------- 1 | # DHCPIPv6PoolListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/dns_policy.md: -------------------------------------------------------------------------------- 1 | # DNSPolicy 2 | 3 | ## Description of DNS Policy. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/dns_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # DNSPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/dns_server_group_object_list_container.md: -------------------------------------------------------------------------------- 1 | # DNSServerGroupObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/dns_server_group_override.md: -------------------------------------------------------------------------------- 1 | # DNSServerGroupOverride 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/dns_server_group_override_list_container.md: -------------------------------------------------------------------------------- 1 | # DNSServerGroupOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/domain.md: -------------------------------------------------------------------------------- 1 | # Domain 2 | 3 | ## The details about the domain. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * name 9 | * links 10 | * id 11 | * type 12 | * uuid 13 | -------------------------------------------------------------------------------- /samples/docs/components/domain_list_container.md: -------------------------------------------------------------------------------- 1 | # DomainListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/download_report.md: -------------------------------------------------------------------------------- 1 | # DownloadReport 2 | 3 | ## Download Job report 4 | 5 | **Type:** object 6 | 7 | -------------------------------------------------------------------------------- /samples/docs/components/download_report_list_container.md: -------------------------------------------------------------------------------- 1 | # DownloadReportListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/duo_config.md: -------------------------------------------------------------------------------- 1 | # DuoConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * duoIKey 8 | * metadata 9 | * duoSKey 10 | * name 11 | * description 12 | * links 13 | * id 14 | * type 15 | * version 16 | * duoHostName 17 | * enabled 18 | -------------------------------------------------------------------------------- /samples/docs/components/duo_config_list_container.md: -------------------------------------------------------------------------------- 1 | # DuoConfigListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/duration.md: -------------------------------------------------------------------------------- 1 | # Duration 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * validLifeTime 8 | * preferLifeTime 9 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_access_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # DynamicAccessPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_attribute_feed_config.md: -------------------------------------------------------------------------------- 1 | # DynamicAttributeFeedConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * subscribed 8 | * metadata 9 | * name 10 | * feeds 11 | * description 12 | * links 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_attribute_feed_config_list_container.md: -------------------------------------------------------------------------------- 1 | # DynamicAttributeFeedConfigListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_object_bulk.md: -------------------------------------------------------------------------------- 1 | # DynamicObjectBulk 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * id 9 | * type 10 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_object_bulk_remove.md: -------------------------------------------------------------------------------- 1 | # DynamicObjectBulkRemove 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * agentIds 8 | * names 9 | * ids 10 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_object_list_container.md: -------------------------------------------------------------------------------- 1 | # DynamicObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_object_mappings_bulk.md: -------------------------------------------------------------------------------- 1 | # DynamicObjectMappingsBulk 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * add 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | * remove 16 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_object_mappings_list_container.md: -------------------------------------------------------------------------------- 1 | # DynamicObjectMappingsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_object_metadata.md: -------------------------------------------------------------------------------- 1 | # DynamicObjectMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * mappingsCount 9 | * domain 10 | * readOnly 11 | * matches 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_object_with_mappings_bulk.md: -------------------------------------------------------------------------------- 1 | # DynamicObjectWithMappingsBulk 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * mappings 8 | * dynamicObject 9 | -------------------------------------------------------------------------------- /samples/docs/components/dynamic_objects_bulk.md: -------------------------------------------------------------------------------- 1 | # DynamicObjectsBulk 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * add 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | * remove 16 | -------------------------------------------------------------------------------- /samples/docs/components/ecmp_zone_model_list_container.md: -------------------------------------------------------------------------------- 1 | # ECMPZoneModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/eigrp_interface_model.md: -------------------------------------------------------------------------------- 1 | # EigrpInterfaceModel 2 | 3 | ## Contains the EIGRP interface attributes. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * policyId 9 | * eigrpProtocolConfiguration 10 | * deviceInterface 11 | -------------------------------------------------------------------------------- /samples/docs/components/eigrp_neighbor_model.md: -------------------------------------------------------------------------------- 1 | # EigrpNeighborModel 2 | 3 | ## Contains EIGRP neighbor attributes. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * neighborInterface 9 | * neighborAddress 10 | * id 11 | -------------------------------------------------------------------------------- /samples/docs/components/eigrp_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # EigrpPolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/eigrp_summary_address_model.md: -------------------------------------------------------------------------------- 1 | # EigrpSummaryAddressModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * policyId 8 | * deviceInterface 9 | * adminDistance 10 | * summaryAddress 11 | -------------------------------------------------------------------------------- /samples/docs/components/email_report.md: -------------------------------------------------------------------------------- 1 | # EmailReport 2 | 3 | ## Email Job Report. Configure and test System->Configuration->Email Notification prior using this request 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * recipientList 9 | -------------------------------------------------------------------------------- /samples/docs/components/end_point_device_type_list_container.md: -------------------------------------------------------------------------------- 1 | # EndPointDeviceTypeListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/epm_request_metadata.md: -------------------------------------------------------------------------------- 1 | # EpmRequestMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * task 9 | * domain 10 | * readOnly 11 | * matches 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/error_messages_container.md: -------------------------------------------------------------------------------- 1 | # ErrorMessagesContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * severity 8 | * code 9 | * description 10 | * errorCode 11 | * bulkPayloadIndex 12 | * location 13 | * details 14 | -------------------------------------------------------------------------------- /samples/docs/components/error_response.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * severity 8 | * messages 9 | * category 10 | -------------------------------------------------------------------------------- /samples/docs/components/evaluate_chassis_operation_list_container.md: -------------------------------------------------------------------------------- 1 | # EvaluateChassisOperationListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/expanded_community_list_list_container.md: -------------------------------------------------------------------------------- 1 | # ExpandedCommunityListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/expiration_life_time.md: -------------------------------------------------------------------------------- 1 | # ExpirationLifeTime 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * preferDateTime 8 | * validDateTime 9 | -------------------------------------------------------------------------------- /samples/docs/components/extended_access_list_model_list_container.md: -------------------------------------------------------------------------------- 1 | # ExtendedAccessListModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/extended_community_list_list_container.md: -------------------------------------------------------------------------------- 1 | # ExtendedCommunityListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/extended_community_list_override_list_container.md: -------------------------------------------------------------------------------- 1 | # ExtendedCommunityListOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/external_lookup_list_container.md: -------------------------------------------------------------------------------- 1 | # ExternalLookupListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/external_storage_list_container.md: -------------------------------------------------------------------------------- 1 | # ExternalStorageListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/file_policy.md: -------------------------------------------------------------------------------- 1 | # FilePolicy 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/file_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # FilePolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/flex_config_list_container.md: -------------------------------------------------------------------------------- 1 | # FlexConfigListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/fmc_managed_chassis_list_container.md: -------------------------------------------------------------------------------- 1 | # FMCManagedChassisListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/fmcha_status_list_container.md: -------------------------------------------------------------------------------- 1 | # FMCHAStatusListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/fp_interface_statistics_list_container.md: -------------------------------------------------------------------------------- 1 | # FPInterfaceStatisticsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/fp_logical_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FPLogicalInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/fp_physical_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FPPhysicalInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/fqdn_object_list_container.md: -------------------------------------------------------------------------------- 1 | # FQDNObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/fqdn_override_list_container.md: -------------------------------------------------------------------------------- 1 | # FQDNOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_all_interfaces_model_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDAllInterfacesModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_auto_nat_rule_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDAutoNatRuleListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_bridge_group_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDBridgeGroupInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_ether_channel_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDEtherChannelInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_loopback_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDLoopbackInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_manual_nat_rule_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDManualNatRuleListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_nat_policy.md: -------------------------------------------------------------------------------- 1 | # FTDNatPolicy 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * rules 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_nat_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDNatPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_nat_rule_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDNatRuleListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_physical_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDPhysicalInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_platform_settings_policy.md: -------------------------------------------------------------------------------- 1 | # FTDPlatformSettingsPolicy 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_platform_settings_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDPlatformSettingsPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_redundant_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDRedundantInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_sub_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDSubInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftd_vlan_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDVlanInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdha_device_container_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDHADeviceContainerListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdha_interface_mac_addresses_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDHAInterfaceMACAddressesListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdha_monitored_interfaces_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDHAMonitoredInterfacesListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdhai_pv4_configuration.md: -------------------------------------------------------------------------------- 1 | # FTDHAIPv4Configuration 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * standbyIPv4Address 8 | * activeIPv4Mask 9 | * activeIPv4Address 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdhai_pv6_configuration.md: -------------------------------------------------------------------------------- 1 | # FTDHAIPv6Configuration 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * ipv6ActiveStandbyPair 8 | * activeIPv6LinkLocalAddress 9 | * standbyIPv6LinkLocalAddress 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdra_vpn_address_assignment_setting_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDRAVpnAddressAssignmentSettingListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdra_vpn_connection_profile_model_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDRAVpnConnectionProfileModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdra_vpn_ip_sec_crypto_map_model_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDRAVpnIPSecCryptoMapModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdra_vpn_ip_sec_ik_ev2_advance_settings_model_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDRAVpnIPSecIKEv2AdvanceSettingsModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdra_vpn_ldap_attribute_model_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDRAVpnLDAPAttributeModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdra_vpn_load_balance_setting_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDRAVpnLoadBalanceSettingListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdra_vpn_model_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDRAVpnModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftds2_s_vpn_model_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDS2SVpnModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdvni_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDVNIInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ftdvti_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # FTDVTIInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/geo_location_object_list_container.md: -------------------------------------------------------------------------------- 1 | # GeoLocationObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/global_device_search.md: -------------------------------------------------------------------------------- 1 | # GlobalDeviceSearch 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * searchCriteria 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * items 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/global_device_search_list_container.md: -------------------------------------------------------------------------------- 1 | # GlobalDeviceSearchListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/global_object_search_list_container.md: -------------------------------------------------------------------------------- 1 | # GlobalObjectSearchListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/global_policy_search_list_container.md: -------------------------------------------------------------------------------- 1 | # GlobalPolicySearchListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/global_search_list_container.md: -------------------------------------------------------------------------------- 1 | # GlobalSearchListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/global_time_zone.md: -------------------------------------------------------------------------------- 1 | # GlobalTimeZone 2 | 3 | ## Object representing a global time zone from IANA time zone (tz) database. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * name 9 | * timeZone 10 | * links 11 | * id 12 | * type 13 | -------------------------------------------------------------------------------- /samples/docs/components/global_time_zone_list_container.md: -------------------------------------------------------------------------------- 1 | # GlobalTimeZoneListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/group_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # GroupPolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/health_alert_model_list_container.md: -------------------------------------------------------------------------------- 1 | # HealthAlertModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/health_metric_list_container.md: -------------------------------------------------------------------------------- 1 | # HealthMetricListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/health_monitor_model_list_container.md: -------------------------------------------------------------------------------- 1 | # HealthMonitorModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/health_policy.md: -------------------------------------------------------------------------------- 1 | # HealthPolicy 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/health_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # HealthPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/hit_count_list_container.md: -------------------------------------------------------------------------------- 1 | # HitCountListContainer 2 | 3 | ## List of all HitCount entries for given filter query on Access Policy. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * links 9 | * paging 10 | * items 11 | -------------------------------------------------------------------------------- /samples/docs/components/hit_count_metadata.md: -------------------------------------------------------------------------------- 1 | # HitCountMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * task 9 | * ruleIndex 10 | * domain 11 | * deviceRuleId 12 | * matches 13 | * timestamp 14 | * policy 15 | -------------------------------------------------------------------------------- /samples/docs/components/host_object_list_container.md: -------------------------------------------------------------------------------- 1 | # HostObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/host_override_list_container.md: -------------------------------------------------------------------------------- 1 | # HostOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/host_scan_package_object_list_container.md: -------------------------------------------------------------------------------- 1 | # HostScanPackageObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_address_container.md: -------------------------------------------------------------------------------- 1 | # IAddressContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enforceEUI64 8 | * address 9 | * prefix 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_advanced.md: -------------------------------------------------------------------------------- 1 | # IAdvanced 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enableOGS 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_advertisement.md: -------------------------------------------------------------------------------- 1 | # IAdvertisement 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * autoConfig 8 | * offlink 9 | * preferLifeTime 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_any_connect_defer_update_attribute.md: -------------------------------------------------------------------------------- 1 | # IAnyConnectDeferUpdateAttribute 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * promptType 8 | * defaultAction 9 | * minimumAnyConnectVersion 10 | * promptDismissTimeout 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_any_connect_dynamic_split_tunnel_attribute.md: -------------------------------------------------------------------------------- 1 | # IAnyConnectDynamicSplitTunnelAttribute 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * includeDomains 8 | * excludeDomains 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_any_connect_user_defined_attribute.md: -------------------------------------------------------------------------------- 1 | # IAnyConnectUserDefinedAttribute 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * value 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_as_path_list_entry.md: -------------------------------------------------------------------------------- 1 | # IAsPathListEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * sequence 8 | * regularExpression 9 | * action 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_auth_type_and_string.md: -------------------------------------------------------------------------------- 1 | # IAuthTypeAndString 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * cryptoKeyString 8 | * cryptoEncryptionType 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_base_port_literal.md: -------------------------------------------------------------------------------- 1 | # IBasePortLiteral 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * protocol 8 | * type 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_bgp_networks.md: -------------------------------------------------------------------------------- 1 | # IBgpNetworks 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * routeMap 8 | * ipv6Address 9 | * ipv4Address 10 | * name 11 | * links 12 | * id 13 | * type 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_certificate_map_rules.md: -------------------------------------------------------------------------------- 1 | # ICertificateMapRules 2 | 3 | ## Specify the contents of the certificate to evaluate. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * component 9 | * field 10 | * value 11 | * operator 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_cluster_auto_rejoin.md: -------------------------------------------------------------------------------- 1 | # IClusterAutoRejoin 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * nextInterval 8 | * interval 9 | * attempts 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_cluster_monitor_interface.md: -------------------------------------------------------------------------------- 1 | # IClusterMonitorInterface 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * debounceTime 8 | * isServiceApplicationEnabled 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_comment_history.md: -------------------------------------------------------------------------------- 1 | # ICommentHistory 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * date 8 | * comment 9 | * user 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_connection_profile_group_url.md: -------------------------------------------------------------------------------- 1 | # IConnectionProfileGroupUrl 2 | 3 | ## Identifies group URLs to automatically connect to the connection profile. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * aliasUrl 9 | * enabled 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_console_user.md: -------------------------------------------------------------------------------- 1 | # IConsoleUser 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * links 9 | * id 10 | * type 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_dependent_policy.md: -------------------------------------------------------------------------------- 1 | # IDependentPolicy 2 | 3 | ## Represents the inter-dependent out-of-date policies with the reason. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * dependencyReason 9 | * dependentTypeList 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_deployment_settings.md: -------------------------------------------------------------------------------- 1 | # IDeploymentSettings 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enableAutoRollback 8 | * rollbackConnectivityMonitorInterval 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_device_chassis_data.md: -------------------------------------------------------------------------------- 1 | # IDeviceChassisData 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * securityModuleNo 8 | * chassisUrl 9 | * securityModuleSN 10 | * chassisSerialNo 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_device_cluster_readiness_data.md: -------------------------------------------------------------------------------- 1 | # IDeviceClusterReadinessData 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * errors 8 | * status 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_device_group.md: -------------------------------------------------------------------------------- 1 | # IDeviceGroup 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * members 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/i_device_import_export_request_options.md: -------------------------------------------------------------------------------- 1 | # IDeviceImportExportRequestOptions 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * headers 8 | * form 9 | * checksum 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_device_inventory_data.md: -------------------------------------------------------------------------------- 1 | # IDeviceInventoryData 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * cpuType 8 | * cpuCores 9 | * memoryInMB 10 | * storageInGB 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_device_mapping_options.md: -------------------------------------------------------------------------------- 1 | # IDeviceMappingOptions 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * interfaceMapping 8 | * targetDevice 9 | * sourceDevice 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_distance.md: -------------------------------------------------------------------------------- 1 | # IDistance 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * externalDistance 8 | * name 9 | * internalDistance 10 | * links 11 | * id 12 | * type 13 | * localDistance 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_distribute_lists.md: -------------------------------------------------------------------------------- 1 | # IDistributeLists 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * protocol 8 | * accessList 9 | * name 10 | * links 11 | * id 12 | * type 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_domain.md: -------------------------------------------------------------------------------- 1 | # IDomain 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * links 9 | * id 10 | * type 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_dynamic_attribute_feed.md: -------------------------------------------------------------------------------- 1 | # IDynamicAttributeFeed 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * subscribed 8 | * metadata 9 | * deprecated 10 | * name 11 | * description 12 | * links 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_dynamic_object_base.md: -------------------------------------------------------------------------------- 1 | # IDynamicObjectBase 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_dynamic_objects_container.md: -------------------------------------------------------------------------------- 1 | # IDynamicObjectsContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_eigrp_administrative_distance.md: -------------------------------------------------------------------------------- 1 | # IEigrpAdministrativeDistance 2 | 3 | ## Used for configuring the administrative distance for a route. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * external 9 | * internal 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_eigrp_advertise.md: -------------------------------------------------------------------------------- 1 | # IEigrpAdvertise 2 | 3 | ## Contains information about advertised routes. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * connected 9 | * summary 10 | * static 11 | * redistributed 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_eigrp_interface_timer.md: -------------------------------------------------------------------------------- 1 | # IEigrpInterfaceTimer 2 | 3 | ## Contains EIGRP Interface timer information 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * delay 9 | * helloInterval 10 | * holdTime 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_eigrp_passive_interface_model.md: -------------------------------------------------------------------------------- 1 | # IEigrpPassiveInterfaceModel 2 | 3 | ## Contains attributes related to Passive interfaces. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * selectedInterfaces 9 | * allInterfaces 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_eigrp_protocol_config_model.md: -------------------------------------------------------------------------------- 1 | # IEigrpProtocolConfigModel 2 | 3 | ## Contains Eigrp Protocol parameters. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * timers 9 | * splitHorizon 10 | * authentication 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_eigrp_stub.md: -------------------------------------------------------------------------------- 1 | # IEigrpStub 2 | 3 | ## Contains attributes required to designate the router as Stub router. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * receiveOnly 9 | * advertise 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_expanded_community_list_entry.md: -------------------------------------------------------------------------------- 1 | # IExpandedCommunityListEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * sequence 8 | * regularExpression 9 | * action 10 | * type 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_extended_community_api_entry.md: -------------------------------------------------------------------------------- 1 | # IExtendedCommunityApiEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * sequence 8 | * regularExpression 9 | * action 10 | * routeTarget 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_external_ca_certificate.md: -------------------------------------------------------------------------------- 1 | # IExternalCACertificate 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * links 9 | * id 10 | * type 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_file_policy.md: -------------------------------------------------------------------------------- 1 | # IFilePolicy 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_file_wrapper.md: -------------------------------------------------------------------------------- 1 | # IFileWrapper 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * path 8 | * attrib 9 | * name 10 | * links 11 | * id 12 | * type 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_filter_protocol.md: -------------------------------------------------------------------------------- 1 | # IFilterProtocol 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * protocol 8 | * processId 9 | * name 10 | * links 11 | * id 12 | * type 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_hardware_container.md: -------------------------------------------------------------------------------- 1 | # IHardwareContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * autoNegState 8 | * duplex 9 | * flowControlSend 10 | * fecMode 11 | * speed 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_health_monitor_metric.md: -------------------------------------------------------------------------------- 1 | # IHealthMonitorMetric 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * unit 8 | * name 9 | * links 10 | * id 11 | * type 12 | * value 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_health_policy.md: -------------------------------------------------------------------------------- 1 | # IHealthPolicy 2 | 3 | ## Description of Health Policy. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/i_host.md: -------------------------------------------------------------------------------- 1 | # IHost 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * value 16 | * version 17 | -------------------------------------------------------------------------------- /samples/docs/components/i_host_object_container.md: -------------------------------------------------------------------------------- 1 | # IHostObjectContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * literal 8 | * object 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ike_keepalive_settings.md: -------------------------------------------------------------------------------- 1 | # IIkeKeepaliveSettings 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * retryInterval 8 | * threshold 9 | * ikeKeepalive 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_inline_pair.md: -------------------------------------------------------------------------------- 1 | # IInlinePair 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * first 8 | * second 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_interface.md: -------------------------------------------------------------------------------- 1 | # IInterface 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_interface_auto_rejoin.md: -------------------------------------------------------------------------------- 1 | # IInterfaceAutoRejoin 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * dataInterface 8 | * clusterInterface 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_interface_device_model.md: -------------------------------------------------------------------------------- 1 | # IInterfaceDeviceModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * interfaces 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/i_intrusion_mapped_policy.md: -------------------------------------------------------------------------------- 1 | # IIntrusionMappedPolicy 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * inspectionMode 8 | * snortEngine 9 | * name 10 | * links 11 | * id 12 | * type 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_intrusion_usage.md: -------------------------------------------------------------------------------- 1 | # IIntrusionUsage 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * devices 8 | * asscoiatedAcPolicies 9 | * accesspolicy 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ipv_prefix_list_filter.md: -------------------------------------------------------------------------------- 1 | # IIpvPrefixListFilter 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * filterUpdateAction 8 | * ipv6PrefixList 9 | * name 10 | * ipv4PrefixList 11 | * links 12 | * id 13 | * type 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_key_chain_object.md: -------------------------------------------------------------------------------- 1 | # IKeyChainObject 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * keys 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/i_key_object.md: -------------------------------------------------------------------------------- 1 | # IKeyObject 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * acceptLifeTime 8 | * authAlgorithm 9 | * keyId 10 | * authString 11 | * sendLifeTime 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_life_time.md: -------------------------------------------------------------------------------- 1 | # ILifeTime 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * endLifeTimeValue 8 | * startLifeTimeValue 9 | * endLifetimeType 10 | * timeZone 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_links.md: -------------------------------------------------------------------------------- 1 | # ILinks 2 | 3 | ## This defines the self referencing links for the given resource. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * parent 9 | * self 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_load_balance_ipsec_encryption.md: -------------------------------------------------------------------------------- 1 | # ILoadBalanceIpsecEncryption 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enable 8 | * encryptionKey 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_load_balance_participating_device.md: -------------------------------------------------------------------------------- 1 | # ILoadBalanceParticipatingDevice 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * entry 8 | * natIPv6Address 9 | * priority 10 | * natIPv4Address 11 | * device 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_load_balance_redirect_setting.md: -------------------------------------------------------------------------------- 1 | # ILoadBalanceRedirectSetting 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * redirectUsingFqdn 8 | * ikev2RedirectPhase 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_log_host.md: -------------------------------------------------------------------------------- 1 | # ILogHost 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * logHost 8 | * logPort 9 | * logId 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_lsa_throttle_timer.md: -------------------------------------------------------------------------------- 1 | # ILsaThrottleTimer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * maximumDelay 8 | * initialDelay 9 | * minimumDelay 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_maximum_paths.md: -------------------------------------------------------------------------------- 1 | # IMaximumPaths 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * ibgp 8 | * name 9 | * links 10 | * id 11 | * type 12 | * value 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_maximum_transmission_unit_aging.md: -------------------------------------------------------------------------------- 1 | # IMaximumTransmissionUnitAging 2 | 3 | ## Contains information about Maximum Transmission UNit aging. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * resetIntervalMinutes 9 | * enabled 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_metadata.md: -------------------------------------------------------------------------------- 1 | # IMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * domain 9 | * readOnly 10 | * matches 11 | * timestamp 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_metadata_user.md: -------------------------------------------------------------------------------- 1 | # IMetadataUser 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * links 9 | * id 10 | * type 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_model.md: -------------------------------------------------------------------------------- 1 | # IModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_modified_user_info.md: -------------------------------------------------------------------------------- 1 | # IModifiedUserInfo 2 | 3 | ## Modified User Information 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * lastModifiedTime 9 | * userName 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_name_server.md: -------------------------------------------------------------------------------- 1 | # INameServer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name-server 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_nat_keepalive_traversal.md: -------------------------------------------------------------------------------- 1 | # INatKeepaliveTraversal 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enabled 8 | * intervalSeconds 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_advertise_maps.md: -------------------------------------------------------------------------------- 1 | # INeighborAdvertiseMaps 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * routeMap 8 | * name 9 | * links 10 | * existRouteMap 11 | * id 12 | * existMap 13 | * type 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_default_originate.md: -------------------------------------------------------------------------------- 1 | # INeighborDefaultOriginate 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * routeMap 8 | * name 9 | * links 10 | * id 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_distribute_lists.md: -------------------------------------------------------------------------------- 1 | # INeighborDistributeLists 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * filterUpdateAction 8 | * accessList 9 | * name 10 | * links 11 | * id 12 | * type 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_filter_list.md: -------------------------------------------------------------------------------- 1 | # INeighborFilterList 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * filterUpdateAction 8 | * name 9 | * asPathList 10 | * links 11 | * id 12 | * type 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_general.md: -------------------------------------------------------------------------------- 1 | # INeighborGeneral 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enableAddress 8 | * name 9 | * description 10 | * links 11 | * id 12 | * fallOverBFD 13 | * type 14 | * shutdown 15 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_ha_mode.md: -------------------------------------------------------------------------------- 1 | # INeighborHaMode 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * disable 8 | * name 9 | * links 10 | * id 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_hops.md: -------------------------------------------------------------------------------- 1 | # INeighborHops 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * neighborTtlSecurityHops 8 | * name 9 | * maxHopCount 10 | * links 11 | * disableConnectedCheck 12 | * id 13 | * type 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_local_as.md: -------------------------------------------------------------------------------- 1 | # INeighborLocalAs 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * noPrepend 8 | * asNumber 9 | * name 10 | * links 11 | * id 12 | * replaceAs 13 | * type 14 | * dualAs 15 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_route_map.md: -------------------------------------------------------------------------------- 1 | # INeighborRouteMap 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * routeMap 8 | * filterUpdateAction 9 | * name 10 | * links 11 | * id 12 | * type 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_routes.md: -------------------------------------------------------------------------------- 1 | # INeighborRoutes 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * advertisementInterval 8 | * name 9 | * neighborAdvertiseMaps 10 | * links 11 | * removePrivateAs 12 | * id 13 | * type 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_timers.md: -------------------------------------------------------------------------------- 1 | # INeighborTimers 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * keepAliveInterval 8 | * minimumHoldTime 9 | * name 10 | * links 11 | * id 12 | * type 13 | * holdTime 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_transport_connection_mode.md: -------------------------------------------------------------------------------- 1 | # INeighborTransportConnectionMode 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * establishTCPSession 8 | * name 9 | * links 10 | * id 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_neighbor_transport_path_mtu_discovery.md: -------------------------------------------------------------------------------- 1 | # INeighborTransportPathMTUDiscovery 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * disable 8 | * name 9 | * links 10 | * id 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_network_address.md: -------------------------------------------------------------------------------- 1 | # INetworkAddress 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_network_address_literal.md: -------------------------------------------------------------------------------- 1 | # INetworkAddressLiteral 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * type 8 | * value 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_network_base.md: -------------------------------------------------------------------------------- 1 | # INetworkBase 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_network_object_container.md: -------------------------------------------------------------------------------- 1 | # INetworkObjectContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * literal 8 | * object 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_network_objects_container.md: -------------------------------------------------------------------------------- 1 | # INetworkObjectsContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | * literals 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_network_objects_only.md: -------------------------------------------------------------------------------- 1 | # INetworkObjectsOnly 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_administrative_distance.md: -------------------------------------------------------------------------------- 1 | # IOspfAdministrativeDistance 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * external 8 | * interArea 9 | * intraArea 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_area.md: -------------------------------------------------------------------------------- 1 | # IOspfArea 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * areaNetworks 8 | * defaultCost 9 | * areaId 10 | * areaType 11 | * virtualLinks 12 | * areaRanges 13 | * filterList 14 | * authentication 15 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_area_auth.md: -------------------------------------------------------------------------------- 1 | # IOspfAreaAuth 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * passwdAuth 8 | * md5AuthList 9 | * authType 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_area_ranges.md: -------------------------------------------------------------------------------- 1 | # IOspfAreaRanges 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * addressNetwork 8 | * advertise 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_area_type.md: -------------------------------------------------------------------------------- 1 | # IOspfAreaType 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * routeMetric 8 | * name 9 | * links 10 | * id 11 | * noSummary 12 | * noRedistribution 13 | * type 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_authentication.md: -------------------------------------------------------------------------------- 1 | # IOspfAuthentication 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * passwdAuth 8 | * md5AuthList 9 | * keyChain 10 | * areaAuth 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_dead_interval_mechanism.md: -------------------------------------------------------------------------------- 1 | # IOspfDeadIntervalMechanism 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * deadInterval 8 | * helloInterval 9 | * neighborDetectionType 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_default_info_originate.md: -------------------------------------------------------------------------------- 1 | # IOspfDefaultInfoOriginate 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * always 8 | * routeMap 9 | * routeMetric 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_filter_list.md: -------------------------------------------------------------------------------- 1 | # IOspfFilterList 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * prefixList 8 | * filterDirection 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_filter_rule.md: -------------------------------------------------------------------------------- 1 | # IOspfFilterRule 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * protocol 8 | * processId 9 | * inInterface 10 | * accessList 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_hello_multiplier_mechanism.md: -------------------------------------------------------------------------------- 1 | # IOspfHelloMultiplierMechanism 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * helloMultiplier 8 | * neighborDetectionType 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_interval.md: -------------------------------------------------------------------------------- 1 | # IOspfInterval 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * helloInterval 8 | * helloMultiplier 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_key_chain_auth.md: -------------------------------------------------------------------------------- 1 | # IOspfKeyChainAuth 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * authKey 8 | * authType 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_log_adj_changes.md: -------------------------------------------------------------------------------- 1 | # IOspfLogAdjChanges 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * logType 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_md5_auth.md: -------------------------------------------------------------------------------- 1 | # IOspfMD5Auth 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * md5Key 8 | * authType 9 | * md5KeyId 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_neighbors.md: -------------------------------------------------------------------------------- 1 | # IOspfNeighbors 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * neighborInterface 8 | * ipAddress 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_nsf_graceful_restart.md: -------------------------------------------------------------------------------- 1 | # IOspfNsfGracefulRestart 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * nsfEnable 8 | * nsfMechanism 9 | * nsfHelper 10 | * nsfRestartIntraval 11 | * nsfCapability 12 | * nsfEnforceGlobal 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_passwd_auth.md: -------------------------------------------------------------------------------- 1 | # IOspfPasswdAuth 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * authKey 8 | * authType 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_route_metric.md: -------------------------------------------------------------------------------- 1 | # IOspfRouteMetric 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metricType 8 | * metricValue 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_summary_addresses.md: -------------------------------------------------------------------------------- 1 | # IOspfSummaryAddresses 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * tagNumber 8 | * summaryNetwork 9 | * advertise 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospf_timers.md: -------------------------------------------------------------------------------- 1 | # IOspfTimers 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * spfThrottleTimer 8 | * lsaThrottleTimer 9 | * lsaGroup 10 | * retransmission 11 | * lsaArrival 12 | * floodPacing 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_area.md: -------------------------------------------------------------------------------- 1 | # IOspfv3Area 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * defaultCost 8 | * areaId 9 | * routeSummary 10 | * neighbors 11 | * areaType 12 | * virtualLinks 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_default_info_originate.md: -------------------------------------------------------------------------------- 1 | # IOspfv3DefaultInfoOriginate 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * always 8 | * routeMap 9 | * routeMetric 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_graceful_restart.md: -------------------------------------------------------------------------------- 1 | # IOspfv3GracefulRestart 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * gracefulRestartInterval 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_graceful_restart_helper.md: -------------------------------------------------------------------------------- 1 | # IOspfv3GracefulRestartHelper 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enableLSA 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_interface_authentication_base.md: -------------------------------------------------------------------------------- 1 | # IOspfv3InterfaceAuthenticationBase 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * type 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_log_adjacency_changes.md: -------------------------------------------------------------------------------- 1 | # IOspfv3LogAdjacencyChanges 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * includeDetails 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_neighbor.md: -------------------------------------------------------------------------------- 1 | # IOspfv3Neighbor 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * configurations 8 | * deviceInterface 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_neighbor_configuration.md: -------------------------------------------------------------------------------- 1 | # IOspfv3NeighborConfiguration 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * linkLocalAddress 8 | * properties 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_neighbor_cost.md: -------------------------------------------------------------------------------- 1 | # IOspfv3NeighborCost 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * cost 8 | * filterOutgoingLSA 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_neighbor_priority.md: -------------------------------------------------------------------------------- 1 | # IOspfv3NeighborPriority 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * pollInterval 8 | * priority 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_neighbor_properties.md: -------------------------------------------------------------------------------- 1 | # IOspfv3NeighborProperties 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * neighborCost 8 | * neighborPriority 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_nsf_graceful_restart.md: -------------------------------------------------------------------------------- 1 | # IOspfv3NsfGracefulRestart 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * gracefulRestart 8 | * gracefulRestartHelper 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_route_summary.md: -------------------------------------------------------------------------------- 1 | # IOspfv3RouteSummary 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * cost 8 | * ipv6Prefix 9 | * advertise 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_summary_prefix.md: -------------------------------------------------------------------------------- 1 | # IOspfv3SummaryPrefix 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * tag 8 | * ipv6Prefix 9 | * advertise 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_timers.md: -------------------------------------------------------------------------------- 1 | # IOspfv3Timers 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * spfThrottleTimer 8 | * lsaThrottleTimer 9 | * lsaGroup 10 | * retransmission 11 | * lsaArrival 12 | * floodPacing 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_ospfv3_virtual_links.md: -------------------------------------------------------------------------------- 1 | # IOspfv3VirtualLinks 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * retransmitInterval 8 | * deadInterval 9 | * routerId 10 | * helloInterval 11 | * transmitDelay 12 | * ttlSecurity 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_override.md: -------------------------------------------------------------------------------- 1 | # IOverride 2 | 3 | ## Defines the override details for this object. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * parent 9 | * target 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_override_default_fragment_setting.md: -------------------------------------------------------------------------------- 1 | # IOverrideDefaultFragmentSetting 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * chain 8 | * size 9 | * timeout 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_packet_tracer_pcap_details.md: -------------------------------------------------------------------------------- 1 | # IPacketTracerPCAPDetails 2 | 3 | ## Represents the packet details. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * sourceIP 9 | * details 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_packet_tracer_unit_details.md: -------------------------------------------------------------------------------- 1 | # IPacketTracerUnitDetails 2 | 3 | ## Represents the Packet Tracer Cluster Unit Details. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * ip 9 | * name 10 | * state 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_path_monitored_interface_details.md: -------------------------------------------------------------------------------- 1 | # IPathMonitoredInterfaceDetails 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * interface 8 | * status 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_path_monitoring.md: -------------------------------------------------------------------------------- 1 | # IPathMonitoring 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enable 8 | * type 9 | * monitoredIp 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_pending_device_reg_info.md: -------------------------------------------------------------------------------- 1 | # IPendingDeviceRegInfo 2 | 3 | ## Represents the Pending Device Registration info. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * deviceUuid 9 | * regStatus 10 | * ipAddress 11 | * deviceName 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_poe_config.md: -------------------------------------------------------------------------------- 1 | # IPoeConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * consumptionWattage 8 | * state 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_policy_model.md: -------------------------------------------------------------------------------- 1 | # IPolicyModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_policy_object_model.md: -------------------------------------------------------------------------------- 1 | # IPolicyObjectModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_policy_status.md: -------------------------------------------------------------------------------- 1 | # IPolicyStatus 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * trafficInterrupting 8 | * upToDate 9 | * versionTimeStamp 10 | * modifiedUserInfoList 11 | * referredPolicyList 12 | * policy 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_port_object.md: -------------------------------------------------------------------------------- 1 | # IPortObject 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_port_objects_container.md: -------------------------------------------------------------------------------- 1 | # IPortObjectsContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | * literals 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_prefix_container.md: -------------------------------------------------------------------------------- 1 | # IPrefixContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * default 8 | * address 9 | * advertisement 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_proxy.md: -------------------------------------------------------------------------------- 1 | # IProxy 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * links 9 | * id 10 | * type 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_pv4_address_pool_list_container.md: -------------------------------------------------------------------------------- 1 | # IPv4AddressPoolListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_pv4_address_pool_override_list_container.md: -------------------------------------------------------------------------------- 1 | # IPv4AddressPoolOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_pv4_prefix_list_list_container.md: -------------------------------------------------------------------------------- 1 | # IPv4PrefixListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_pv4_static_route_model_list_container.md: -------------------------------------------------------------------------------- 1 | # IPv4StaticRouteModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_pv6_address_pool_list_container.md: -------------------------------------------------------------------------------- 1 | # IPv6AddressPoolListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_pv6_address_pool_override_list_container.md: -------------------------------------------------------------------------------- 1 | # IPv6AddressPoolOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_pv6_prefix_list_list_container.md: -------------------------------------------------------------------------------- 1 | # IPv6PrefixListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_pv6_static_route_model_list_container.md: -------------------------------------------------------------------------------- 1 | # IPv6StaticRouteModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_readonly.md: -------------------------------------------------------------------------------- 1 | # IReadonly 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * reason 8 | * state 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_realm_entity.md: -------------------------------------------------------------------------------- 1 | # IRealmEntity 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * links 9 | * id 10 | * type 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_redistribute_protocol_base.md: -------------------------------------------------------------------------------- 1 | # IRedistributeProtocolBase 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * tagNumber 8 | * routeMap 9 | * routeMetric 10 | * subnets 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_reference.md: -------------------------------------------------------------------------------- 1 | # IReference 2 | 3 | ## Contains reference information. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * name 9 | * links 10 | * id 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_reference_container.md: -------------------------------------------------------------------------------- 1 | # IReferenceContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | * literals 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_reference_update.md: -------------------------------------------------------------------------------- 1 | # IReferenceUpdate 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * fieldName 8 | * entityType 9 | * entityName 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_route_injection.md: -------------------------------------------------------------------------------- 1 | # IRouteInjection 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * injectMap 8 | * name 9 | * copyAttributes 10 | * links 11 | * id 12 | * existMap 13 | * type 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_route_map.md: -------------------------------------------------------------------------------- 1 | # IRouteMap 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * entries 8 | * metadata 9 | * name 10 | * overridable 11 | * description 12 | * links 13 | * overrides 14 | * id 15 | * type 16 | * version 17 | -------------------------------------------------------------------------------- /samples/docs/components/i_rule_action.md: -------------------------------------------------------------------------------- 1 | # IRuleAction 2 | 3 | ## Object representing the rule action specified for an intrusion policy. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * default 9 | * override 10 | * recommended 11 | * policy 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_rule_recommendation.md: -------------------------------------------------------------------------------- 1 | # IRuleRecommendation 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * securityLevel 8 | * acceptDisabledRules 9 | * lastUpdatedTime 10 | * networks 11 | * recommendationInUse 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_safe_search.md: -------------------------------------------------------------------------------- 1 | # ISafeSearch 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * actionForNonSupportedEngines 8 | * enabled 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_search_result.md: -------------------------------------------------------------------------------- 1 | # ISearchResult 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * subType 11 | * links 12 | * id 13 | * category 14 | * type 15 | * value 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_security_group_tag_container.md: -------------------------------------------------------------------------------- 1 | # ISecurityGroupTagContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | * literals 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_security_group_tag_literal.md: -------------------------------------------------------------------------------- 1 | # ISecurityGroupTagLiteral 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * tag 9 | * type 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_security_zone_container.md: -------------------------------------------------------------------------------- 1 | # ISecurityZoneContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_snort3_default_set_by.md: -------------------------------------------------------------------------------- 1 | # ISnort3DefaultSetBy 2 | 3 | ## Object representing on how default action is set in a policy. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * name 9 | * action 10 | * id 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_snort3_policy_rule_count.md: -------------------------------------------------------------------------------- 1 | # ISnort3PolicyRuleCount 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * drop 8 | * alert 9 | * pass 10 | * reject 11 | * disabled 12 | * block 13 | * overridden 14 | * rewrite 15 | -------------------------------------------------------------------------------- /samples/docs/components/i_source_zone_container.md: -------------------------------------------------------------------------------- 1 | # ISourceZoneContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_source_zone_object.md: -------------------------------------------------------------------------------- 1 | # ISourceZoneObject 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_spf_throttle_timer.md: -------------------------------------------------------------------------------- 1 | # ISpfThrottleTimer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * minimumHoldTime 8 | * maximumWaitTime 9 | * initialDelay 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_standard_acl.md: -------------------------------------------------------------------------------- 1 | # IStandardACL 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * entries 8 | * metadata 9 | * name 10 | * overridable 11 | * description 12 | * links 13 | * overrides 14 | * id 15 | * type 16 | * version 17 | -------------------------------------------------------------------------------- /samples/docs/components/i_standard_acl_entry.md: -------------------------------------------------------------------------------- 1 | # IStandardACLEntry 2 | 3 | ## Standard Access List entry 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * action 9 | * networks 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_standard_community_list_entry.md: -------------------------------------------------------------------------------- 1 | # IStandardCommunityListEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * sequence 8 | * noExport 9 | * action 10 | * type 11 | * internet 12 | * noAdvertise 13 | * communities 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_static_arp_entry.md: -------------------------------------------------------------------------------- 1 | # IStaticArpEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * ip 8 | * mac 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_static_ip_container.md: -------------------------------------------------------------------------------- 1 | # IStaticIPContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * address 8 | * netmask 9 | * pool 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_static_mac_entry.md: -------------------------------------------------------------------------------- 1 | # IStaticMacEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * interface 8 | * mac 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_sub_task.md: -------------------------------------------------------------------------------- 1 | # ISubTask 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * description 9 | * id 10 | * message 11 | * status 12 | * target 13 | -------------------------------------------------------------------------------- /samples/docs/components/i_switch_port_config.md: -------------------------------------------------------------------------------- 1 | # ISwitchPortConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * portMode 8 | * accessModeVlanId 9 | * trunkModeAllowedVlanIds 10 | * protectedEnabled 11 | * trunkModeNativeVlanId 12 | -------------------------------------------------------------------------------- /samples/docs/components/i_syslog_config.md: -------------------------------------------------------------------------------- 1 | # ISyslogConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_target.md: -------------------------------------------------------------------------------- 1 | # ITarget 2 | 3 | ## This is the target device. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/i_task_status.md: -------------------------------------------------------------------------------- 1 | # ITaskStatus 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * taskType 9 | * subTasks 10 | * name 11 | * description 12 | * links 13 | * id 14 | * message 15 | * type 16 | * status 17 | -------------------------------------------------------------------------------- /samples/docs/components/i_time_range_model.md: -------------------------------------------------------------------------------- 1 | # ITimeRangeModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * effectiveEndDateTime 8 | * effectiveStartDateTime 9 | * name 10 | * links 11 | * id 12 | * type 13 | * recurrenceList 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_umbrella_deploy_endpoints_info.md: -------------------------------------------------------------------------------- 1 | # IUmbrellaDeployEndpointsInfo 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * umbrellaDeploymentState 8 | * message 9 | * device 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_url_base.md: -------------------------------------------------------------------------------- 1 | # IUrlBase 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_url_category_and_reputation.md: -------------------------------------------------------------------------------- 1 | # IUrlCategoryAndReputation 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * reputation 8 | * category 9 | * type 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_url_literal.md: -------------------------------------------------------------------------------- 1 | # IUrlLiteral 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * type 8 | * url 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_url_model.md: -------------------------------------------------------------------------------- 1 | # IUrlModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | * url 17 | -------------------------------------------------------------------------------- /samples/docs/components/i_url_objects_container.md: -------------------------------------------------------------------------------- 1 | # IUrlObjectsContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | * literals 9 | * urlCategoriesWithReputation 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_usage_data.md: -------------------------------------------------------------------------------- 1 | # IUsageData 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * severity 8 | * policyGroupInfo 9 | * name 10 | * cause 11 | * description 12 | * action 13 | * conflictType 14 | * links 15 | * id 16 | * type 17 | -------------------------------------------------------------------------------- /samples/docs/components/i_users_container.md: -------------------------------------------------------------------------------- 1 | # IUsersContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | -------------------------------------------------------------------------------- /samples/docs/components/i_value_add.md: -------------------------------------------------------------------------------- 1 | # IValueAdd 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * newValue 8 | * fieldName 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_value_delete.md: -------------------------------------------------------------------------------- 1 | # IValueDelete 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * fieldName 8 | * oldValue 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_value_literal.md: -------------------------------------------------------------------------------- 1 | # IValueLiteral 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * type 8 | * value 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_value_update.md: -------------------------------------------------------------------------------- 1 | # IValueUpdate 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * newValue 8 | * fieldName 9 | * oldValue 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_variable_set.md: -------------------------------------------------------------------------------- 1 | # IVariableSet 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_vlan_base.md: -------------------------------------------------------------------------------- 1 | # IVlanBase 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/i_vlan_model.md: -------------------------------------------------------------------------------- 1 | # IVlanModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * data 9 | * overridable 10 | * name 11 | * description 12 | * links 13 | * overrides 14 | * id 15 | * type 16 | * version 17 | -------------------------------------------------------------------------------- /samples/docs/components/i_vlan_tag_literal.md: -------------------------------------------------------------------------------- 1 | # IVlanTagLiteral 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * startTag 8 | * endTag 9 | * type 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_vpn_addresses.md: -------------------------------------------------------------------------------- 1 | # IVpnAddresses 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * v6 8 | * dto 9 | * v4 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_vpn_extranet_info.md: -------------------------------------------------------------------------------- 1 | # IVpnExtranetInfo 2 | 3 | ## Contains VPN extranet information. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * isDynamicIP 9 | * ipAddress 10 | * name 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_vpn_interface.md: -------------------------------------------------------------------------------- 1 | # IVpnInterface 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * interfaceType 8 | * ipAddress 9 | * name 10 | * publicIp 11 | -------------------------------------------------------------------------------- /samples/docs/components/i_vpn_peer.md: -------------------------------------------------------------------------------- 1 | # IVpnPeer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * vpnInterface 8 | * role 9 | * vtiInterface 10 | * ipAddresses 11 | * peerType 12 | * device 13 | * trafficSelector 14 | -------------------------------------------------------------------------------- /samples/docs/components/i_vpn_pkcs12_content_model.md: -------------------------------------------------------------------------------- 1 | # IVpnPkcs12ContentModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * base64Certificate 8 | * passPhrase 9 | -------------------------------------------------------------------------------- /samples/docs/components/i_vpn_protected_network.md: -------------------------------------------------------------------------------- 1 | # IVpnProtectedNetwork 2 | 3 | ## Contains information about VPN networks. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * acl 9 | * networks 10 | -------------------------------------------------------------------------------- /samples/docs/components/i_you_tube.md: -------------------------------------------------------------------------------- 1 | # IYouTube 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * siteKey 8 | * enabled 9 | -------------------------------------------------------------------------------- /samples/docs/components/iarp_config_container.md: -------------------------------------------------------------------------------- 1 | # IARPConfigContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * macAddress 8 | * enableAlias 9 | * ipAddress 10 | -------------------------------------------------------------------------------- /samples/docs/components/ibfd_template_authentication.md: -------------------------------------------------------------------------------- 1 | # IBFDTemplateAuthentication 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * authKey 8 | * authKeyId 9 | * pwdEncryption 10 | * authType 11 | -------------------------------------------------------------------------------- /samples/docs/components/ibgpgs_timers.md: -------------------------------------------------------------------------------- 1 | # IBGPGSTimers 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * keepAlive 8 | * name 9 | * links 10 | * id 11 | * type 12 | * minHoldTime 13 | * holdTime 14 | -------------------------------------------------------------------------------- /samples/docs/components/icmpv4_object_list_container.md: -------------------------------------------------------------------------------- 1 | # ICMPV4ObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/icmpv4_object_override.md: -------------------------------------------------------------------------------- 1 | # ICMPV4ObjectOverride 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/icmpv4_object_override_list_container.md: -------------------------------------------------------------------------------- 1 | # ICMPV4ObjectOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/icmpv6_object_list_container.md: -------------------------------------------------------------------------------- 1 | # ICMPV6ObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/icmpv6_object_override.md: -------------------------------------------------------------------------------- 1 | # ICMPV6ObjectOverride 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * overridable 9 | * name 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/icmpv6_object_override_list_container.md: -------------------------------------------------------------------------------- 1 | # ICMPV6ObjectOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/identity_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # IdentityPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/idhcp_container.md: -------------------------------------------------------------------------------- 1 | # IDHCPContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * dhcpRouteMetric 8 | * enableDefaultRouteDHCP 9 | -------------------------------------------------------------------------------- /samples/docs/components/idhcpi_pv6_dns_server.md: -------------------------------------------------------------------------------- 1 | # IDHCPIPv6DNSServer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * importFromInternalServer 8 | * ipAddresses 9 | -------------------------------------------------------------------------------- /samples/docs/components/idhcpi_pv6_domain_name.md: -------------------------------------------------------------------------------- 1 | # IDHCPIPv6DomainName 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * names 8 | * importFromInternalServer 9 | -------------------------------------------------------------------------------- /samples/docs/components/idhcpi_pv6_other_server_options.md: -------------------------------------------------------------------------------- 1 | # IDHCPIPv6OtherServerOptions 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * address 8 | * domainName 9 | * option 10 | -------------------------------------------------------------------------------- /samples/docs/components/ifmc_access_config.md: -------------------------------------------------------------------------------- 1 | # IFMCAccessConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enableAccess 8 | * allowedNetworks 9 | -------------------------------------------------------------------------------- /samples/docs/components/ifmc_server_info.md: -------------------------------------------------------------------------------- 1 | # IFMCServerInfo 2 | 3 | ## Represents the FMC Server Object. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * modelName 9 | * swVersion 10 | * role 11 | * modelId 12 | * ipAddress 13 | * uuid 14 | * hwRole 15 | -------------------------------------------------------------------------------- /samples/docs/components/iftd_cluster_device_readiness_entity.md: -------------------------------------------------------------------------------- 1 | # IFTDClusterDeviceReadinessEntity 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * id 9 | * type 10 | * clusterReadiness 11 | -------------------------------------------------------------------------------- /samples/docs/components/iftd_cluster_node_bootstrap.md: -------------------------------------------------------------------------------- 1 | # IFTDClusterNodeBootstrap 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * cclIp 8 | * localUnit 9 | * siteId 10 | * priority 11 | -------------------------------------------------------------------------------- /samples/docs/components/iftd_device_details.md: -------------------------------------------------------------------------------- 1 | # IFTDDeviceDetails 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * id 9 | * type 10 | * status 11 | -------------------------------------------------------------------------------- /samples/docs/components/iftd_device_ha_failover_link.md: -------------------------------------------------------------------------------- 1 | # IFTDDeviceHAFailoverLink 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * interfaceObject 8 | * useIPv6Address 9 | * standbyIP 10 | * activeIP 11 | * logicalName 12 | * subnetMask 13 | -------------------------------------------------------------------------------- /samples/docs/components/iftd_interface.md: -------------------------------------------------------------------------------- 1 | # IFTDInterface 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * ifname 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/iftdhai_pv6_active_standby_pair.md: -------------------------------------------------------------------------------- 1 | # IFTDHAIPv6ActiveStandbyPair 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * activeIPv6 8 | * standbyIPv6 9 | -------------------------------------------------------------------------------- /samples/docs/components/iftdra_vpn_any_connect_image.md: -------------------------------------------------------------------------------- 1 | # IFTDRAVpnAnyConnectImage 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * anyconnectImage 8 | * name 9 | * links 10 | * id 11 | * type 12 | * operatingSystem 13 | -------------------------------------------------------------------------------- /samples/docs/components/iftdra_vpn_cert_to_connection_profile_map.md: -------------------------------------------------------------------------------- 1 | # IFTDRAVpnCertToConnectionProfileMap 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * connectionProfile 8 | * certificateMap 9 | -------------------------------------------------------------------------------- /samples/docs/components/iftdra_vpn_ip_sec_maximum_transmission_unit_aging_model.md: -------------------------------------------------------------------------------- 1 | # IFTDRAVpnIPSecMaximumTransmissionUnitAgingModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * resetIntervalMinutes 8 | * enabled 9 | -------------------------------------------------------------------------------- /samples/docs/components/iftdra_vpn_ip_sec_nat_keepalive_message_traversal_model.md: -------------------------------------------------------------------------------- 1 | # IFTDRAVpnIPSecNatKeepaliveMessageTraversalModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enabled 8 | * intervalSeconds 9 | -------------------------------------------------------------------------------- /samples/docs/components/iftdra_vpn_ip_sec_pfs_model.md: -------------------------------------------------------------------------------- 1 | # IFTDRAVpnIPSecPFSModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enabled 8 | * modulusGroup 9 | -------------------------------------------------------------------------------- /samples/docs/components/iftdra_vpn_ip_sec_settings_model.md: -------------------------------------------------------------------------------- 1 | # IFTDRAVpnIPSecSettingsModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enableFragmentationBeforeEncryption 8 | * maximumTransmissionUnitAging 9 | -------------------------------------------------------------------------------- /samples/docs/components/iftdra_vpn_ip_sec_tfc_packets_model.md: -------------------------------------------------------------------------------- 1 | # IFTDRAVpnIPSecTfcPacketsModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * burstBytes 8 | * timeoutSeconds 9 | * payloadBytes 10 | * enabled 11 | -------------------------------------------------------------------------------- /samples/docs/components/ii_pv4_container.md: -------------------------------------------------------------------------------- 1 | # IIPv4Container 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * static 8 | * pppoe 9 | * dhcp 10 | -------------------------------------------------------------------------------- /samples/docs/components/ii_pv4_verify_availability_model.md: -------------------------------------------------------------------------------- 1 | # IIPv4VerifyAvailabilityModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * sequence 8 | * ip 9 | * track 10 | -------------------------------------------------------------------------------- /samples/docs/components/ii_pv6_client_pd_container.md: -------------------------------------------------------------------------------- 1 | # IIPv6ClientPdContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * hintPrefixes 8 | * prefixName 9 | -------------------------------------------------------------------------------- /samples/docs/components/ii_pv6_dhcp_container.md: -------------------------------------------------------------------------------- 1 | # IIPv6DHCPContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enableDHCPClient 8 | * obtainIPV6DefaultRouteDHCP 9 | * ipv6DHCPPool 10 | * ipv6Prefixes 11 | * clientPd 12 | -------------------------------------------------------------------------------- /samples/docs/components/ii_pv6_prefix_container.md: -------------------------------------------------------------------------------- 1 | # IIPv6PrefixContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * length 9 | -------------------------------------------------------------------------------- /samples/docs/components/ii_pv_prefix_list_entry.md: -------------------------------------------------------------------------------- 1 | # IIPvPrefixListEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * sequence 8 | * minPrefixLenth 9 | * ipAddress 10 | * maxPrefixLength 11 | * action 12 | -------------------------------------------------------------------------------- /samples/docs/components/ik_ev1_i_psec_proposal.md: -------------------------------------------------------------------------------- 1 | # IKEv1IPsecProposal 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * espEncryption 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | * espHash 16 | -------------------------------------------------------------------------------- /samples/docs/components/ik_ev1_i_psec_proposal_list_container.md: -------------------------------------------------------------------------------- 1 | # IKEv1IPsecProposalListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ik_ev2_i_psec_proposal_list_container.md: -------------------------------------------------------------------------------- 1 | # IKEv2IPsecProposalListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ikev1_policy_object_list_container.md: -------------------------------------------------------------------------------- 1 | # Ikev1PolicyObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ikev2_policy_object_list_container.md: -------------------------------------------------------------------------------- 1 | # Ikev2PolicyObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ildap_attribute_value.md: -------------------------------------------------------------------------------- 1 | # ILDAPAttributeValue 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * extendedAccessList 8 | * ldapValue 9 | * ciscoValue 10 | * valueType 11 | * groupPolicy 12 | -------------------------------------------------------------------------------- /samples/docs/components/illdp_container.md: -------------------------------------------------------------------------------- 1 | # ILLDPContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * receive 8 | * transmit 9 | -------------------------------------------------------------------------------- /samples/docs/components/inline_set_list_container.md: -------------------------------------------------------------------------------- 1 | # InlineSetListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/inspector_config_list_container.md: -------------------------------------------------------------------------------- 1 | # InspectorConfigListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/inspector_override_config_list_container.md: -------------------------------------------------------------------------------- 1 | # InspectorOverrideConfigListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/interface_event_list_container.md: -------------------------------------------------------------------------------- 1 | # InterfaceEventListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/interface_group_object_list_container.md: -------------------------------------------------------------------------------- 1 | # InterfaceGroupObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/interface_ipv6_address.md: -------------------------------------------------------------------------------- 1 | # InterfaceIpv6Address 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * interfaceIPv6Address 8 | * clusterIPv6AddrPool 9 | * interfaceIPv6Eui64 10 | -------------------------------------------------------------------------------- /samples/docs/components/interface_mapping.md: -------------------------------------------------------------------------------- 1 | # InterfaceMapping 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * sourceInterface 8 | * targetInterface 9 | -------------------------------------------------------------------------------- /samples/docs/components/interface_object_list_container.md: -------------------------------------------------------------------------------- 1 | # InterfaceObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/interface_setting_arp.md: -------------------------------------------------------------------------------- 1 | # InterfaceSettingARP 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * pixArpTableIpAddress 8 | * pixArpTableEnableAlias 9 | * pixArpTableMacAddress 10 | -------------------------------------------------------------------------------- /samples/docs/components/interface_setting_mac.md: -------------------------------------------------------------------------------- 1 | # InterfaceSettingMAC 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * pixMacAddressTableMacAddress 8 | -------------------------------------------------------------------------------- /samples/docs/components/internal_ca_list_container.md: -------------------------------------------------------------------------------- 1 | # InternalCAListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/internal_certificate_list_container.md: -------------------------------------------------------------------------------- 1 | # InternalCertificateListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/intrusion_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # IntrusionPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ip_addresses.md: -------------------------------------------------------------------------------- 1 | # IpAddresses 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * ipv4 8 | * ipv6 9 | -------------------------------------------------------------------------------- /samples/docs/components/ipfs_settings.md: -------------------------------------------------------------------------------- 1 | # IPFSSettings 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enabled 8 | * modulusGroup 9 | -------------------------------------------------------------------------------- /samples/docs/components/ipv6_prefixes.md: -------------------------------------------------------------------------------- 1 | # Ipv6Prefixes 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * interfaceIPv6DHCPPrefixesLength 8 | * interfaceIPv6DHCPPrefixesName 9 | -------------------------------------------------------------------------------- /samples/docs/components/ise_security_group_tag_list_container.md: -------------------------------------------------------------------------------- 1 | # ISESecurityGroupTagListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/isfcn_service.md: -------------------------------------------------------------------------------- 1 | # ISFCNService 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * role 8 | * name 9 | * links 10 | * id 11 | * type 12 | * version 13 | -------------------------------------------------------------------------------- /samples/docs/components/isi_logging.md: -------------------------------------------------------------------------------- 1 | # ISILogging 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * overrideSeverity 8 | * sendLogsToSyslogServer 9 | * enableLogging 10 | * snmpTrap 11 | * sendLogsToEventViewer 12 | * overrideSyslogServer 13 | -------------------------------------------------------------------------------- /samples/docs/components/isi_object.md: -------------------------------------------------------------------------------- 1 | # ISIObject 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * sourceZone 8 | -------------------------------------------------------------------------------- /samples/docs/components/isi_settings.md: -------------------------------------------------------------------------------- 1 | # ISISettings 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * allowlist 8 | * blocklist 9 | * blocklistLogging 10 | -------------------------------------------------------------------------------- /samples/docs/components/isidns_policy.md: -------------------------------------------------------------------------------- 1 | # ISIDNSPolicy 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * blocklistLogging 9 | * links 10 | * id 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/isnmp_config.md: -------------------------------------------------------------------------------- 1 | # ISNMPConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/isso_advanced_config.md: -------------------------------------------------------------------------------- 1 | # ISSOAdvancedConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * defaultRole 8 | * roles 9 | * memberAttr 10 | -------------------------------------------------------------------------------- /samples/docs/components/isso_role.md: -------------------------------------------------------------------------------- 1 | # ISSORole 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * id 9 | * type 10 | * map 11 | -------------------------------------------------------------------------------- /samples/docs/components/itfc_packets.md: -------------------------------------------------------------------------------- 1 | # ITFCPackets 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * burstBytes 8 | * timeoutSeconds 9 | * payloadBytes 10 | * enabled 11 | -------------------------------------------------------------------------------- /samples/docs/components/iurl_category.md: -------------------------------------------------------------------------------- 1 | # IURLCategory 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * overrides 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/iv_lan_tags_container.md: -------------------------------------------------------------------------------- 1 | # IVLanTagsContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * objects 8 | * literals 9 | -------------------------------------------------------------------------------- /samples/docs/components/ivtep_entry.md: -------------------------------------------------------------------------------- 1 | # IVTEPEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * nveEncapsulationType 8 | * sourceInterface 9 | * nveNeighborAddress 10 | * nveDestinationPort 11 | * nveVtepId 12 | * nveNeighborDiscoveryType 13 | -------------------------------------------------------------------------------- /samples/docs/components/job_history.md: -------------------------------------------------------------------------------- 1 | # JobHistory 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * jobName 8 | * jobStatus 9 | * deviceList 10 | * startTime 11 | * id 12 | * endTime 13 | * jobType 14 | * type 15 | * user 16 | * deploymentNote 17 | -------------------------------------------------------------------------------- /samples/docs/components/job_history_list_container.md: -------------------------------------------------------------------------------- 1 | # JobHistoryListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/join_interface.md: -------------------------------------------------------------------------------- 1 | # JoinInterface 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * targetInterfaces 9 | * ignoreWarning 10 | * name 11 | * description 12 | * links 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/key_chain_object_list_container.md: -------------------------------------------------------------------------------- 1 | # KeyChainObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/key_chain_object_override_list_container.md: -------------------------------------------------------------------------------- 1 | # KeyChainObjectOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ldap_attribute_map.md: -------------------------------------------------------------------------------- 1 | # LDAPAttributeMap 2 | 3 | ## A model representing LDAP Attribute Setting definition. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * entry 9 | * ldapName 10 | * valueMappings 11 | * ciscoName 12 | -------------------------------------------------------------------------------- /samples/docs/components/ldap_attribute_map_model.md: -------------------------------------------------------------------------------- 1 | # LDAPAttributeMapModel 2 | 3 | ## A model representing LDAP Attribute Setting definition. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * ldapAttributeMaps 9 | * ldapServer 10 | * entry 11 | -------------------------------------------------------------------------------- /samples/docs/components/ldap_attribute_name_entry.md: -------------------------------------------------------------------------------- 1 | # LDAPAttributeNameEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * ciscoAttributeName 8 | * attributeValueEntryList 9 | * ldapAttributeName 10 | -------------------------------------------------------------------------------- /samples/docs/components/ldap_attribute_value_entry.md: -------------------------------------------------------------------------------- 1 | # LDAPAttributeValueEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * ciscoAttributeValue 8 | * ciscoAttributeObject 9 | * valueType 10 | * ldapAttributeValue 11 | -------------------------------------------------------------------------------- /samples/docs/components/links.md: -------------------------------------------------------------------------------- 1 | # Links 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * parent 8 | * self 9 | -------------------------------------------------------------------------------- /samples/docs/components/ll_additional_properties.md: -------------------------------------------------------------------------------- 1 | # LLAdditionalProperties 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_device_map.md: -------------------------------------------------------------------------------- 1 | # LLDeviceMap 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_equation_node.md: -------------------------------------------------------------------------------- 1 | # LLEquationNode 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * op 8 | * condition 9 | * isRealized 10 | * children 11 | * type 12 | * value 13 | * applyCondition 14 | -------------------------------------------------------------------------------- /samples/docs/components/ll_feed_property.md: -------------------------------------------------------------------------------- 1 | # LLFeedProperty 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * allowlist 8 | * expirationTime 9 | * publish 10 | * action 11 | * ttl 12 | * tags 13 | -------------------------------------------------------------------------------- /samples/docs/components/ll_files_map.md: -------------------------------------------------------------------------------- 1 | # LLFilesMap 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_form.md: -------------------------------------------------------------------------------- 1 | # LLForm 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_hash_map.md: -------------------------------------------------------------------------------- 1 | # LLHashMap 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_headers.md: -------------------------------------------------------------------------------- 1 | # LLHeaders 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_inspector_config.md: -------------------------------------------------------------------------------- 1 | # LLInspectorConfig 2 | 3 | ## The schema of this payload is dynamic and based on the OpenAPI schema received from the latest installed Lightweight Security Package. 4 | 5 | **Type:** object 6 | 7 | -------------------------------------------------------------------------------- /samples/docs/components/ll_inspector_override_config.md: -------------------------------------------------------------------------------- 1 | # LLInspectorOverrideConfig 2 | 3 | ## The schema of this payload is dynamic and based on the OpenAPI schema received from the latest installed Lightweight Security Package. 4 | 5 | **Type:** object 6 | 7 | -------------------------------------------------------------------------------- /samples/docs/components/ll_misc_data.md: -------------------------------------------------------------------------------- 1 | # LLMiscData 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_observation.md: -------------------------------------------------------------------------------- 1 | # LLObservation 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * elementId 8 | * data 9 | * count 10 | * type 11 | * version 12 | * elementName 13 | * timestamp 14 | -------------------------------------------------------------------------------- /samples/docs/components/ll_observation_data.md: -------------------------------------------------------------------------------- 1 | # LLObservationData 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * actionTaken 8 | * miscData 9 | * type 10 | * value 11 | -------------------------------------------------------------------------------- /samples/docs/components/ll_params.md: -------------------------------------------------------------------------------- 1 | # LLParams 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_settings.md: -------------------------------------------------------------------------------- 1 | # LLSettings 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_status_msg.md: -------------------------------------------------------------------------------- 1 | # LLStatusMsg 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/ll_tags.md: -------------------------------------------------------------------------------- 1 | # LLTags 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/lldp_container.md: -------------------------------------------------------------------------------- 1 | # LLDPContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * receive 8 | * transmit 9 | -------------------------------------------------------------------------------- /samples/docs/components/local_realm_user_list_container.md: -------------------------------------------------------------------------------- 1 | # LocalRealmUserListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/metadata_user.md: -------------------------------------------------------------------------------- 1 | # MetadataUser 2 | 3 | ## This object defines details about the user. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * name 9 | * links 10 | * id 11 | * type 12 | -------------------------------------------------------------------------------- /samples/docs/components/named_entry.md: -------------------------------------------------------------------------------- 1 | # NamedEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * type 9 | * value 10 | * literal 11 | -------------------------------------------------------------------------------- /samples/docs/components/netmap_host_list_container.md: -------------------------------------------------------------------------------- 1 | # NetmapHostListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/netmap_vuln_list_container.md: -------------------------------------------------------------------------------- 1 | # NetmapVulnListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/network_address_list_container.md: -------------------------------------------------------------------------------- 1 | # NetworkAddressListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/network_group_list_container.md: -------------------------------------------------------------------------------- 1 | # NetworkGroupListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/network_group_override_list_container.md: -------------------------------------------------------------------------------- 1 | # NetworkGroupOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/network_module_list_container.md: -------------------------------------------------------------------------------- 1 | # NetworkModuleListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/network_module_sync.md: -------------------------------------------------------------------------------- 1 | # NetworkModuleSync 2 | 3 | ## Represents sync status of the Network Modules. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * metadata 9 | * type 10 | * syncStatus 11 | -------------------------------------------------------------------------------- /samples/docs/components/network_object_list_container.md: -------------------------------------------------------------------------------- 1 | # NetworkObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/network_override_list_container.md: -------------------------------------------------------------------------------- 1 | # NetworkOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/object.md: -------------------------------------------------------------------------------- 1 | # Object 2 | 3 | 4 | **Type:** object 5 | 6 | -------------------------------------------------------------------------------- /samples/docs/components/object_entry.md: -------------------------------------------------------------------------------- 1 | # ObjectEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * id 9 | * type 10 | * value 11 | * uuid 12 | * literal 13 | -------------------------------------------------------------------------------- /samples/docs/components/object_refs.md: -------------------------------------------------------------------------------- 1 | # ObjectRefs 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * valueList 8 | * type 9 | -------------------------------------------------------------------------------- /samples/docs/components/object_usage.md: -------------------------------------------------------------------------------- 1 | # ObjectUsage 2 | 3 | ## A model representing object usage response. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/object_usage_list_container.md: -------------------------------------------------------------------------------- 1 | # ObjectUsageListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ospf_interface_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # OspfInterfacePolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ospf_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # OspfPolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ospfv3_interface_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # Ospfv3InterfacePolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ospfv3_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # Ospfv3PolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/packet_tracer_pcap_extract_list_container.md: -------------------------------------------------------------------------------- 1 | # PacketTracerPCAPExtractListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/packet_tracer_pcap_files_list_container.md: -------------------------------------------------------------------------------- 1 | # PacketTracerPCAPFilesListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/paging_container.md: -------------------------------------------------------------------------------- 1 | # PagingContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * pages 8 | * offset 9 | * limit 10 | * count 11 | -------------------------------------------------------------------------------- /samples/docs/components/path_monitored_interface.md: -------------------------------------------------------------------------------- 1 | # PathMonitoredInterface 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * interfaces 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * device 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/path_monitored_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # PathMonitoredInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/path_monitoring_entry.md: -------------------------------------------------------------------------------- 1 | # PathMonitoringEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enable 8 | * type 9 | * monitoredIp 10 | -------------------------------------------------------------------------------- /samples/docs/components/pbr_policy_model.md: -------------------------------------------------------------------------------- 1 | # PBRPolicyModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * ingressInterfaces 9 | * name 10 | * description 11 | * links 12 | * forwardingActions 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/pbr_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # PBRPolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/pending_changes_list_container.md: -------------------------------------------------------------------------------- 1 | # PendingChangesListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/physical_interface_list_container.md: -------------------------------------------------------------------------------- 1 | # PhysicalInterfaceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/policy_assignment.md: -------------------------------------------------------------------------------- 1 | # PolicyAssignment 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * targets 14 | * version 15 | * policy 16 | -------------------------------------------------------------------------------- /samples/docs/components/policy_assignment_list_container.md: -------------------------------------------------------------------------------- 1 | # PolicyAssignmentListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/policy_list_list_container.md: -------------------------------------------------------------------------------- 1 | # PolicyListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/policy_lock_list_container.md: -------------------------------------------------------------------------------- 1 | # PolicyLockListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/port_metadata.md: -------------------------------------------------------------------------------- 1 | # PortMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * domain 9 | * readOnly 10 | * matches 11 | * parentType 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/port_object_group_list_container.md: -------------------------------------------------------------------------------- 1 | # PortObjectGroupListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/port_object_group_override_list_container.md: -------------------------------------------------------------------------------- 1 | # PortObjectGroupOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/port_object_list_container.md: -------------------------------------------------------------------------------- 1 | # PortObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/prefer_life_time.md: -------------------------------------------------------------------------------- 1 | # PreferLifeTime 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * duration 8 | * expirationLifeTime 9 | -------------------------------------------------------------------------------- /samples/docs/components/prefilter_default_action_list_container.md: -------------------------------------------------------------------------------- 1 | # PrefilterDefaultActionListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/prefilter_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # PrefilterPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/prefilter_rule_list_container.md: -------------------------------------------------------------------------------- 1 | # PrefilterRuleListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/protocol_port_object_list_container.md: -------------------------------------------------------------------------------- 1 | # ProtocolPortObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/protocol_port_object_override_list_container.md: -------------------------------------------------------------------------------- 1 | # ProtocolPortObjectOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ra_vpn_gateway_list_container.md: -------------------------------------------------------------------------------- 1 | # RaVpnGatewayListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/ra_vpn_load_balance_peer_setting.md: -------------------------------------------------------------------------------- 1 | # RaVpnLoadBalancePeerSetting 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * enable 8 | * groupDirector 9 | * natIPv6Address 10 | * priority 11 | * natIPv4Address 12 | -------------------------------------------------------------------------------- /samples/docs/components/radius_server_group_model_list_container.md: -------------------------------------------------------------------------------- 1 | # RadiusServerGroupModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/range_object_list_container.md: -------------------------------------------------------------------------------- 1 | # RangeObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/range_override_list_container.md: -------------------------------------------------------------------------------- 1 | # RangeOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/read_only.md: -------------------------------------------------------------------------------- 1 | # ReadOnly 2 | 3 | ## Defines the read only conditions if the referenced resource is read only. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * reason 9 | * state 10 | -------------------------------------------------------------------------------- /samples/docs/components/realm_list_container.md: -------------------------------------------------------------------------------- 1 | # RealmListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/realm_user.md: -------------------------------------------------------------------------------- 1 | # RealmUser 2 | 3 | ## Defines Identity RealmUser Object. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * metadata 9 | * name 10 | * links 11 | * realm 12 | * id 13 | * type 14 | -------------------------------------------------------------------------------- /samples/docs/components/realm_user_group.md: -------------------------------------------------------------------------------- 1 | # RealmUserGroup 2 | 3 | ## Defines Identity RealmUserGroup Object. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * metadata 9 | * name 10 | * links 11 | * realm 12 | * id 13 | * type 14 | -------------------------------------------------------------------------------- /samples/docs/components/realm_user_group_list_container.md: -------------------------------------------------------------------------------- 1 | # RealmUserGroupListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/realm_user_list_container.md: -------------------------------------------------------------------------------- 1 | # RealmUserListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/reference_object.md: -------------------------------------------------------------------------------- 1 | # ReferenceObject 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * links 9 | * id 10 | * type 11 | -------------------------------------------------------------------------------- /samples/docs/components/rest_element_list_container.md: -------------------------------------------------------------------------------- 1 | # RESTElementListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/rest_feed_property.md: -------------------------------------------------------------------------------- 1 | # RESTFeedProperty 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * allowlist 8 | * llfeedProperty 9 | * expirationTime 10 | * publish 11 | * action 12 | * ttl 13 | * tags 14 | -------------------------------------------------------------------------------- /samples/docs/components/rest_ftd_cluster_device.md: -------------------------------------------------------------------------------- 1 | # RestFTDClusterDevice 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * deviceDetails 8 | * clusterNodeBootstrap 9 | -------------------------------------------------------------------------------- /samples/docs/components/rest_ftd_cluster_device_container_list_container.md: -------------------------------------------------------------------------------- 1 | # RestFTDClusterDeviceContainerListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/rest_ftd_cluster_device_metadata.md: -------------------------------------------------------------------------------- 1 | # RestFTDClusterDeviceMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * task 8 | * analyticsOnly 9 | * matches 10 | * clusterhealthmonitorsettings 11 | -------------------------------------------------------------------------------- /samples/docs/components/rest_iftd_base_interface.md: -------------------------------------------------------------------------------- 1 | # RestIFTDBaseInterface 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * id 9 | * type 10 | -------------------------------------------------------------------------------- /samples/docs/components/rest_iftd_cluster_device.md: -------------------------------------------------------------------------------- 1 | # RestIFTDClusterDevice 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * deviceDetails 8 | * clusterNodeBootstrap 9 | * keepLocalEvents 10 | -------------------------------------------------------------------------------- /samples/docs/components/rest_incident_list_container.md: -------------------------------------------------------------------------------- 1 | # RESTIncidentListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/rest_indicator_equation_node.md: -------------------------------------------------------------------------------- 1 | # RESTIndicatorEquationNode 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * op 8 | * item 9 | * condition 10 | * isRealized 11 | * children 12 | * type 13 | * value 14 | * applyCondition 15 | -------------------------------------------------------------------------------- /samples/docs/components/rest_indicator_list_container.md: -------------------------------------------------------------------------------- 1 | # RESTIndicatorListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/rest_observable_list_container.md: -------------------------------------------------------------------------------- 1 | # RESTObservableListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/rest_observation.md: -------------------------------------------------------------------------------- 1 | # RESTObservation 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * elementId 8 | * data 9 | * count 10 | * type 11 | * llobservation 12 | * timestamp 13 | * elementName 14 | -------------------------------------------------------------------------------- /samples/docs/components/rest_observation_data.md: -------------------------------------------------------------------------------- 1 | # RESTObservationData 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * actionTaken 8 | * llobservationData 9 | * miscData 10 | * type 11 | * value 12 | -------------------------------------------------------------------------------- /samples/docs/components/rest_settings.md: -------------------------------------------------------------------------------- 1 | # RESTSettings 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * settings 8 | * metadata 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/rest_task_status.md: -------------------------------------------------------------------------------- 1 | # RestTaskStatus 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * taskType 8 | * name 9 | * description 10 | * id 11 | * type 12 | * message 13 | * status 14 | -------------------------------------------------------------------------------- /samples/docs/components/rest_tid_source_list_container.md: -------------------------------------------------------------------------------- 1 | # RESTTidSourceListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/rollback_request_metadata.md: -------------------------------------------------------------------------------- 1 | # RollbackRequestMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * task 9 | * domain 10 | * readOnly 11 | * matches 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/route_map_list_container.md: -------------------------------------------------------------------------------- 1 | # RouteMapListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/rule_import_summary_entry.md: -------------------------------------------------------------------------------- 1 | # RuleImportSummaryEntry 2 | 3 | ## An object that represents rule import summary details. 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * count 9 | * rules 10 | * type 11 | -------------------------------------------------------------------------------- /samples/docs/components/s2_s_vpn_summary_model_list_container.md: -------------------------------------------------------------------------------- 1 | # S2SVpnSummaryModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/securex_config_list_container.md: -------------------------------------------------------------------------------- 1 | # SecurexConfigListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/security_group_tag.md: -------------------------------------------------------------------------------- 1 | # SecurityGroupTag 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * id 13 | * tag 14 | * overrides 15 | * type 16 | * version 17 | -------------------------------------------------------------------------------- /samples/docs/components/security_group_tag_list_container.md: -------------------------------------------------------------------------------- 1 | # SecurityGroupTagListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/security_zone_object_list_container.md: -------------------------------------------------------------------------------- 1 | # SecurityZoneObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/server_version_list_container.md: -------------------------------------------------------------------------------- 1 | # ServerVersionListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/sfcn_cluster.md: -------------------------------------------------------------------------------- 1 | # SFCNCluster 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * namespace 10 | * description 11 | * links 12 | * id 13 | * services 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/sfcn_cluster_metadata.md: -------------------------------------------------------------------------------- 1 | # SFCNClusterMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * task 9 | * domain 10 | * readOnly 11 | * matches 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/si_feed_metadata.md: -------------------------------------------------------------------------------- 1 | # SIFeedMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * entryCount 9 | * domain 10 | * readOnly 11 | * matches 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/si_list_metadata.md: -------------------------------------------------------------------------------- 1 | # SIListMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * entryCount 9 | * domain 10 | * readOnly 11 | * matches 12 | * listUpdateTime 13 | * timestamp 14 | -------------------------------------------------------------------------------- /samples/docs/components/si_network_feed_list_container.md: -------------------------------------------------------------------------------- 1 | # SINetworkFeedListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/si_network_list.md: -------------------------------------------------------------------------------- 1 | # SINetworkList 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * fileName 9 | * name 10 | * overridable 11 | * description 12 | * links 13 | * id 14 | * overrides 15 | * type 16 | * version 17 | -------------------------------------------------------------------------------- /samples/docs/components/si_network_list_list_container.md: -------------------------------------------------------------------------------- 1 | # SINetworkListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/sidns_feed_list_container.md: -------------------------------------------------------------------------------- 1 | # SIDNSFeedListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/sidns_list_list_container.md: -------------------------------------------------------------------------------- 1 | # SIDNSListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/sinkhole_list_container.md: -------------------------------------------------------------------------------- 1 | # SinkholeListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/siurl_feed_list_container.md: -------------------------------------------------------------------------------- 1 | # SIURLFeedListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/siurl_list_list_container.md: -------------------------------------------------------------------------------- 1 | # SIURLListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/sla_monitor_object_model_list_container.md: -------------------------------------------------------------------------------- 1 | # SLAMonitorObjectModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/smart_license_list_container.md: -------------------------------------------------------------------------------- 1 | # SmartLicenseListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/snmp_config.md: -------------------------------------------------------------------------------- 1 | # SNMPConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/snmp_config_list_container.md: -------------------------------------------------------------------------------- 1 | # SNMPConfigListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/snort3_intrusion_rule_groups_list_container.md: -------------------------------------------------------------------------------- 1 | # Snort3IntrusionRuleGroupsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/snort3_intrusion_rule_groups_object_list_container.md: -------------------------------------------------------------------------------- 1 | # Snort3IntrusionRuleGroupsObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/snort3_ips_reference_object.md: -------------------------------------------------------------------------------- 1 | # Snort3IPSReferenceObject 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * links 9 | * id 10 | * type 11 | * value 12 | -------------------------------------------------------------------------------- /samples/docs/components/snort3_ips_rule_metadata.md: -------------------------------------------------------------------------------- 1 | # Snort3IPSRuleMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * replaceRule 9 | * defaultSetBy 10 | * domain 11 | * readOnly 12 | * matches 13 | * timestamp 14 | -------------------------------------------------------------------------------- /samples/docs/components/snort3_ips_rules_list_container.md: -------------------------------------------------------------------------------- 1 | # Snort3IPSRulesListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/snort3_ips_rules_object_list_container.md: -------------------------------------------------------------------------------- 1 | # Snort3IPSRulesObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/snort3_network_analysis_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # Snort3NetworkAnalysisPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/sso_config_list_container.md: -------------------------------------------------------------------------------- 1 | # SSOConfigListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/sso_server_list_container.md: -------------------------------------------------------------------------------- 1 | # SSOServerListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/sso_server_override_list_container.md: -------------------------------------------------------------------------------- 1 | # SSOServerOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/standard_acl_list_container.md: -------------------------------------------------------------------------------- 1 | # StandardACLListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/standard_community_list_list_container.md: -------------------------------------------------------------------------------- 1 | # StandardCommunityListListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/static_route_model_list_container.md: -------------------------------------------------------------------------------- 1 | # StaticRouteModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/syslog_config.md: -------------------------------------------------------------------------------- 1 | # SyslogConfig 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | -------------------------------------------------------------------------------- /samples/docs/components/syslog_config_list_container.md: -------------------------------------------------------------------------------- 1 | # SyslogConfigListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/task_status_list_container.md: -------------------------------------------------------------------------------- 1 | # TaskStatusListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/time_range_list_container.md: -------------------------------------------------------------------------------- 1 | # TimeRangeListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/time_zone_object_list_container.md: -------------------------------------------------------------------------------- 1 | # TimeZoneObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/time_zone_object_override_list_container.md: -------------------------------------------------------------------------------- 1 | # TimeZoneObjectOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/troubleshoot.md: -------------------------------------------------------------------------------- 1 | # Troubleshoot 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | * version 14 | * taskId 15 | -------------------------------------------------------------------------------- /samples/docs/components/troubleshoot_metadata.md: -------------------------------------------------------------------------------- 1 | # TroubleshootMetadata 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * lastUser 8 | * task 9 | * domain 10 | * readOnly 11 | * matches 12 | * timestamp 13 | -------------------------------------------------------------------------------- /samples/docs/components/tunnel_status_list_container.md: -------------------------------------------------------------------------------- 1 | # TunnelStatusListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/tunnel_summary_list_container.md: -------------------------------------------------------------------------------- 1 | # TunnelSummaryListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/tunnel_tags_list_container.md: -------------------------------------------------------------------------------- 1 | # TunnelTagsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/umbrella_connection_list_container.md: -------------------------------------------------------------------------------- 1 | # UmbrellaConnectionListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/umbrella_data_center_list_container.md: -------------------------------------------------------------------------------- 1 | # UmbrellaDataCenterListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/umbrella_deployment_transcript.md: -------------------------------------------------------------------------------- 1 | # UmbrellaDeploymentTranscript 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * transcript 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | -------------------------------------------------------------------------------- /samples/docs/components/umbrella_dns_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # UmbrellaDNSPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/umbrella_dns_rule_list_container.md: -------------------------------------------------------------------------------- 1 | # UmbrellaDNSRuleListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/umbrella_protection_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # UmbrellaProtectionPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/upgrade_package.md: -------------------------------------------------------------------------------- 1 | # UpgradePackage 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * id 12 | * type 13 | -------------------------------------------------------------------------------- /samples/docs/components/upgrade_package_list_container.md: -------------------------------------------------------------------------------- 1 | # UpgradePackageListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/upgrade_snapshot.md: -------------------------------------------------------------------------------- 1 | # UpgradeSnapshot 2 | 3 | ## Initiates snapshot creation script execution 4 | 5 | **Type:** object 6 | 7 | ## Properties 8 | * description 9 | * id 10 | -------------------------------------------------------------------------------- /samples/docs/components/url_category.md: -------------------------------------------------------------------------------- 1 | # URLCategory 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * id 13 | * overrides 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/url_category_list_container.md: -------------------------------------------------------------------------------- 1 | # URLCategoryListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/url_group_object_list_container.md: -------------------------------------------------------------------------------- 1 | # URLGroupObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/url_group_override_list_container.md: -------------------------------------------------------------------------------- 1 | # UrlGroupOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/url_object_list_container.md: -------------------------------------------------------------------------------- 1 | # URLObjectListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/url_override_list_container.md: -------------------------------------------------------------------------------- 1 | # UrlOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/variable_set.md: -------------------------------------------------------------------------------- 1 | # VariableSet 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * overridable 10 | * description 11 | * links 12 | * id 13 | * overrides 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/variable_set_list_container.md: -------------------------------------------------------------------------------- 1 | # VariableSetListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/virtual_router_model.md: -------------------------------------------------------------------------------- 1 | # VirtualRouterModel 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * interfaces 9 | * name 10 | * description 11 | * links 12 | * id 13 | * type 14 | * version 15 | * vrfPolicyEntry 16 | -------------------------------------------------------------------------------- /samples/docs/components/virtual_router_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VirtualRouterModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/virtual_switch_list_container.md: -------------------------------------------------------------------------------- 1 | # VirtualSwitchListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vlan_override_list_container.md: -------------------------------------------------------------------------------- 1 | # VlanOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vlan_tag_group_list_container.md: -------------------------------------------------------------------------------- 1 | # VlanTagGroupListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vlan_tag_group_override_list_container.md: -------------------------------------------------------------------------------- 1 | # VlanTagGroupOverrideListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vlan_tag_list_container.md: -------------------------------------------------------------------------------- 1 | # VlanTagListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vpn_advanced_settings_list_container.md: -------------------------------------------------------------------------------- 1 | # VpnAdvancedSettingsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vpn_cert_enrollment_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VpnCertEnrollmentModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vpn_endpoint_list_container.md: -------------------------------------------------------------------------------- 1 | # VpnEndpointListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vpn_ike_settings.md: -------------------------------------------------------------------------------- 1 | # VpnIkeSettings 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * metadata 8 | * name 9 | * description 10 | * links 11 | * ikeV1Settings 12 | * id 13 | * type 14 | * ikeV2Settings 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/vpn_ike_settings_list_container.md: -------------------------------------------------------------------------------- 1 | # VpnIkeSettingsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vpn_ip_sec_settings_list_container.md: -------------------------------------------------------------------------------- 1 | # VpnIPSecSettingsListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_bfd_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfBFDPolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_bgpi_pv_address_family_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfBGPIPvAddressFamilyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_ecmp_zone_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfECMPZoneModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_eigrp_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfEigrpPolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_i_pv4_static_route_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfIPv4StaticRouteModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_i_pv6_static_route_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfIPv6StaticRouteModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_interface_entry.md: -------------------------------------------------------------------------------- 1 | # VRFInterfaceEntry 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * name 8 | * logicalName 9 | * id 10 | * type 11 | * value 12 | * uuid 13 | * literal 14 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_ospf_interface_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfOspfInterfacePolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_ospf_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfOspfPolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_pbr_policy_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfPBRPolicyModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vrf_static_route_model_list_container.md: -------------------------------------------------------------------------------- 1 | # VrfStaticRouteModelListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /samples/docs/components/vtep_policy.md: -------------------------------------------------------------------------------- 1 | # VTEPPolicy 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * nveEnable 8 | * metadata 9 | * vtepEntries 10 | * name 11 | * description 12 | * links 13 | * id 14 | * type 15 | * version 16 | -------------------------------------------------------------------------------- /samples/docs/components/vtep_policy_list_container.md: -------------------------------------------------------------------------------- 1 | # VTEPPolicyListContainer 2 | 3 | 4 | **Type:** object 5 | 6 | ## Properties 7 | * links 8 | * paging 9 | * items 10 | -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | coverage==4.5.4 2 | mock 3 | pycodestyle 4 | pylint 5 | pytest 6 | pytest-cov==2.10.1 7 | pytest-xdist 8 | pytest-mock 9 | six 10 | units 11 | urllib3==1.26.5 12 | voluptuous 13 | yamllint 14 | enum34 15 | ordereddict 16 | -------------------------------------------------------------------------------- /tests/unit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/FMCAnsible/9b5dccf7c6ba6dcb75e2c073fb8b5f4bcaec5ca0/tests/unit/.DS_Store -------------------------------------------------------------------------------- /tests/unit/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/FMCAnsible/9b5dccf7c6ba6dcb75e2c073fb8b5f4bcaec5ca0/tests/unit/compat/__init__.py -------------------------------------------------------------------------------- /tests/unit/httpapi_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/FMCAnsible/9b5dccf7c6ba6dcb75e2c073fb8b5f4bcaec5ca0/tests/unit/httpapi_plugins/__init__.py -------------------------------------------------------------------------------- /tests/unit/module_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/FMCAnsible/9b5dccf7c6ba6dcb75e2c073fb8b5f4bcaec5ca0/tests/unit/module_utils/__init__.py -------------------------------------------------------------------------------- /tests/unit/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/FMCAnsible/9b5dccf7c6ba6dcb75e2c073fb8b5f4bcaec5ca0/tests/unit/modules/__init__.py -------------------------------------------------------------------------------- /tests/unit/modules/fixtures/config_empty_data.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/unit/requirements.txt: -------------------------------------------------------------------------------- 1 | backports.unittest_mock; python_version < '3' 2 | mock; python_version > '3' 3 | pytest 4 | six 5 | units 6 | urllib3 7 | #yamllint 8 | #enum34 9 | #ordereddict 10 | --------------------------------------------------------------------------------