-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* FMC support * adding endpoints to internal repo * {DOMAIN_UUID} and provider from netascode * endpoints update * adjust to new endpoint format * filename change * fmc support * undo change * final commit * after Pre-commit --------- Co-authored-by: rchrabas <[email protected]>
- Loading branch information
Showing
5 changed files
with
417 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
- name: domain | ||
endpoint: /api/fmc_platform/v1/info/domain | ||
- name: fmc_version | ||
endpoint: /api/fmc_platform/v1/info/serverversion | ||
- name: smart_license | ||
endpoint: /api/fmc_platform/v1/license/smartlicenses | ||
- name: policy_assignment | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/assignment/policyassignments | ||
- name: syslog_alert | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/policy/syslogalerts | ||
- name: host | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/hosts | ||
- name: network | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/networks | ||
- name: range | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/ranges | ||
- name: network_group | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/networkgroups | ||
- name: url | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/urls | ||
- name: url_group | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/urlgroups | ||
- name: port | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/protocolportobjects | ||
- name: port_group | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/portobjectgroups | ||
- name: fqdn_object | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/fqdns | ||
- name: time_range | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/timeranges | ||
- name: icmpv4_object | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/icmpv4objects | ||
- name: icmpv6_object | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/icmpv6objects | ||
- name: dynamic_object | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/dynamicobjects | ||
- name: dynamic_objects_mapping | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/dynamicobjects/%v/mappings | ||
- name: sgt | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/securitygrouptags | ||
- name: vlan_tag | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/vlantags | ||
- name: vlan_tag_group | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/vlangrouptags | ||
- name: variable_set | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/variablesets | ||
- name: standard_acl | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/standardaccesslists | ||
- name: extended_acl | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/object/extendedaccesslists | ||
- name: file_policy | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/policy/filepolicies | ||
- name: intrusion_policy | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/policy/intrusionpolicies | ||
- name: prefilter_policy | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/policy/prefilterpolicies | ||
- name: network_analysis_policy | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/policy/networkanalysispolicies | ||
- name: access_control_policy | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/policy/accesspolicies | ||
children: | ||
- name: access_control_policy_rule | ||
endpoint: /accessrules | ||
- name: access_control_policy_category | ||
endpoint: /categories | ||
- name: ftd_nat_policy | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/policy/ftdnatpolicies | ||
children: | ||
- name: ftd_nat_policy_auto_nat_rule | ||
endpoint: /autonatrules | ||
- name: ftd_nat_policy_manual_nat_rule | ||
endpoint: /manualnatrules | ||
- name: device | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/devices/devicerecords | ||
children: | ||
- name: device_subinterface | ||
endpoint: /subinterfaces | ||
- name: device_vtep_policy | ||
endpoint: /vteppolicies | ||
- name: device_physical_interface | ||
endpoint: /physicalinterfaces | ||
- name: device_ipv4_static_route | ||
endpoint: /routing/ipv4staticroutes | ||
- name: device_vni_interface | ||
endpoint: /vniinterfaces | ||
- name: device_ipv6_static_route | ||
endpoint: /routing/ipv6staticroutes | ||
- name: cluster | ||
endpoint: /api/fmc_config/v1/domain/{DOMAIN_UUID}/deviceclusters/ftddevicecluster |
Oops, something went wrong.