pulumi-sdwan 0.2.0a1730181615__py3-none-any.whl → 0.6.0a1764803684__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_sdwan/__init__.py +662 -1
- pulumi_sdwan/_inputs.py +48339 -38595
- pulumi_sdwan/_utilities.py +9 -5
- pulumi_sdwan/activate_centralized_policy.py +54 -19
- pulumi_sdwan/advanced_inspection_profile_policy_definition.py +213 -201
- pulumi_sdwan/advanced_malware_protection_policy_definition.py +287 -233
- pulumi_sdwan/allow_url_list_policy_object.py +36 -31
- pulumi_sdwan/app_probe_class_policy_object.py +53 -48
- pulumi_sdwan/application_aware_routing_policy_definition.py +259 -58
- pulumi_sdwan/application_list_policy_object.py +36 -31
- pulumi_sdwan/application_priority_feature_profile.py +43 -36
- pulumi_sdwan/application_priority_qos_policy.py +178 -131
- pulumi_sdwan/application_priority_traffic_policy_policy.py +530 -0
- pulumi_sdwan/as_path_list_policy_object.py +62 -31
- pulumi_sdwan/attach_feature_device_template.py +81 -22
- pulumi_sdwan/block_url_list_policy_object.py +36 -31
- pulumi_sdwan/cedge_aaa_feature_template.py +711 -470
- pulumi_sdwan/cedge_global_feature_template.py +1102 -936
- pulumi_sdwan/cedge_igmp_feature_template.py +127 -91
- pulumi_sdwan/cedge_multicast_feature_template.py +218 -199
- pulumi_sdwan/cedge_pim_feature_template.py +572 -455
- pulumi_sdwan/cellular_cedge_profile_feature_template.py +368 -335
- pulumi_sdwan/cellular_controller_feature_template.py +343 -273
- pulumi_sdwan/cellular_profile_feature_template.py +497 -471
- pulumi_sdwan/centralized_policy.py +53 -48
- pulumi_sdwan/cflowd_policy_definition.py +287 -191
- pulumi_sdwan/cisco_banner_feature_template.py +154 -156
- pulumi_sdwan/cisco_bfd_feature_template.py +286 -209
- pulumi_sdwan/cisco_bgp_feature_template.py +1029 -655
- pulumi_sdwan/cisco_dhcp_server_feature_template.py +455 -372
- pulumi_sdwan/cisco_logging_feature_template.py +319 -208
- pulumi_sdwan/cisco_ntp_feature_template.py +304 -236
- pulumi_sdwan/cisco_omp_feature_template.py +763 -575
- pulumi_sdwan/cisco_ospf_feature_template.py +818 -561
- pulumi_sdwan/cisco_ospfv3_feature_template.py +1776 -1244
- pulumi_sdwan/cisco_secure_internet_gateway_feature_template.py +333 -151
- pulumi_sdwan/cisco_security_feature_template.py +445 -317
- pulumi_sdwan/cisco_sig_credentials_feature_template.py +470 -465
- pulumi_sdwan/cisco_snmp_feature_template.py +309 -208
- pulumi_sdwan/cisco_system_feature_template.py +1768 -1824
- pulumi_sdwan/cisco_thousandeyes_feature_template.py +139 -91
- pulumi_sdwan/cisco_trustsec_feature_template.py +820 -648
- pulumi_sdwan/cisco_vpn_feature_template.py +722 -347
- pulumi_sdwan/cisco_vpn_interface_feature_template.py +4615 -3627
- pulumi_sdwan/cisco_vpn_interface_gre_feature_template.py +692 -592
- pulumi_sdwan/cisco_vpn_interface_ipsec_feature_template.py +1238 -1065
- pulumi_sdwan/cisco_wireless_lan_feature_template.py +487 -416
- pulumi_sdwan/class_map_policy_object.py +60 -48
- pulumi_sdwan/cli_config_feature.py +90 -81
- pulumi_sdwan/cli_device_template.py +111 -99
- pulumi_sdwan/cli_feature_profile.py +43 -36
- pulumi_sdwan/cli_template_feature_template.py +103 -105
- pulumi_sdwan/color_list_policy_object.py +36 -31
- pulumi_sdwan/config/__init__.py +2 -1
- pulumi_sdwan/config/__init__.pyi +12 -7
- pulumi_sdwan/config/vars.py +19 -12
- pulumi_sdwan/configuration_group.py +242 -119
- pulumi_sdwan/custom_control_topology_policy_definition.py +149 -77
- pulumi_sdwan/data_fqdn_prefix_list_policy_object.py +36 -31
- pulumi_sdwan/data_ipv4_prefix_list_policy_object.py +36 -31
- pulumi_sdwan/data_ipv6_prefix_list_policy_object.py +36 -31
- pulumi_sdwan/dns_security_feature_profile.py +239 -0
- pulumi_sdwan/dns_security_policy.py +706 -0
- pulumi_sdwan/dns_security_policy_definition.py +206 -201
- pulumi_sdwan/domain_list_policy_object.py +36 -31
- pulumi_sdwan/eigrp_feature_template.py +469 -350
- pulumi_sdwan/embedded_security_feature_profile.py +239 -0
- pulumi_sdwan/expanded_community_list_policy_object.py +36 -31
- pulumi_sdwan/extended_community_list_policy_object.py +36 -31
- pulumi_sdwan/feature_device_template.py +165 -153
- pulumi_sdwan/geo_location_list_policy_object.py +36 -31
- pulumi_sdwan/get_advanced_inspection_profile_policy_definition.py +34 -34
- pulumi_sdwan/get_advanced_malware_protection_policy_definition.py +36 -36
- pulumi_sdwan/get_allow_url_list_policy_object.py +15 -15
- pulumi_sdwan/get_app_probe_class_policy_object.py +17 -17
- pulumi_sdwan/get_application_aware_routing_policy_definition.py +62 -20
- pulumi_sdwan/get_application_list_policy_object.py +15 -15
- pulumi_sdwan/get_application_priority_feature_profile.py +14 -14
- pulumi_sdwan/get_application_priority_qos_policy.py +40 -40
- pulumi_sdwan/get_application_priority_traffic_policy_policy.py +210 -0
- pulumi_sdwan/get_as_path_list_policy_object.py +15 -15
- pulumi_sdwan/get_block_url_list_policy_object.py +15 -15
- pulumi_sdwan/get_cedge_aaa_feature_template.py +70 -70
- pulumi_sdwan/get_cedge_global_feature_template.py +116 -116
- pulumi_sdwan/get_cedge_igmp_feature_template.py +25 -25
- pulumi_sdwan/get_cedge_multicast_feature_template.py +36 -36
- pulumi_sdwan/get_cedge_pim_feature_template.py +68 -68
- pulumi_sdwan/get_cellular_cedge_profile_feature_template.py +52 -52
- pulumi_sdwan/get_cellular_controller_feature_template.py +45 -45
- pulumi_sdwan/get_cellular_profile_feature_template.py +68 -68
- pulumi_sdwan/get_centralized_policy.py +17 -17
- pulumi_sdwan/get_cflowd_policy_definition.py +33 -33
- pulumi_sdwan/get_cisco_banner_feature_template.py +32 -32
- pulumi_sdwan/get_cisco_bfd_feature_template.py +37 -37
- pulumi_sdwan/get_cisco_bgp_feature_template.py +90 -90
- pulumi_sdwan/get_cisco_dhcp_server_feature_template.py +58 -58
- pulumi_sdwan/get_cisco_logging_feature_template.py +39 -39
- pulumi_sdwan/get_cisco_ntp_feature_template.py +42 -42
- pulumi_sdwan/get_cisco_omp_feature_template.py +78 -78
- pulumi_sdwan/get_cisco_ospf_feature_template.py +78 -78
- pulumi_sdwan/get_cisco_ospfv3_feature_template.py +154 -154
- pulumi_sdwan/get_cisco_secure_internet_gateway_feature_template.py +33 -33
- pulumi_sdwan/get_cisco_security_feature_template.py +50 -50
- pulumi_sdwan/get_cisco_sig_credentials_feature_template.py +68 -68
- pulumi_sdwan/get_cisco_snmp_feature_template.py +41 -41
- pulumi_sdwan/get_cisco_system_feature_template.py +188 -160
- pulumi_sdwan/get_cisco_thousandeyes_feature_template.py +25 -25
- pulumi_sdwan/get_cisco_trustsec_feature_template.py +85 -85
- pulumi_sdwan/get_cisco_vpn_feature_template.py +65 -65
- pulumi_sdwan/get_cisco_vpn_interface_feature_template.py +416 -416
- pulumi_sdwan/get_cisco_vpn_interface_gre_feature_template.py +81 -81
- pulumi_sdwan/get_cisco_vpn_interface_ipsec_feature_template.py +130 -130
- pulumi_sdwan/get_cisco_wireless_lan_feature_template.py +57 -57
- pulumi_sdwan/get_class_map_policy_object.py +16 -16
- pulumi_sdwan/get_cli_config_feature.py +24 -24
- pulumi_sdwan/get_cli_device_template.py +22 -22
- pulumi_sdwan/get_cli_feature_profile.py +14 -14
- pulumi_sdwan/get_cli_template_feature_template.py +26 -26
- pulumi_sdwan/get_color_list_policy_object.py +15 -15
- pulumi_sdwan/get_configuration_group.py +59 -31
- pulumi_sdwan/get_custom_control_topology_policy_definition.py +21 -21
- pulumi_sdwan/get_data_fqdn_prefix_list_policy_object.py +15 -15
- pulumi_sdwan/get_data_ipv4_prefix_list_policy_object.py +15 -15
- pulumi_sdwan/get_data_ipv6_prefix_list_policy_object.py +15 -15
- pulumi_sdwan/get_device.py +19 -19
- pulumi_sdwan/get_dns_security_feature_profile.py +126 -0
- pulumi_sdwan/get_dns_security_policy.py +272 -0
- pulumi_sdwan/get_dns_security_policy_definition.py +35 -35
- pulumi_sdwan/get_domain_list_policy_object.py +15 -15
- pulumi_sdwan/get_eigrp_feature_template.py +55 -55
- pulumi_sdwan/get_embedded_security_feature_profile.py +126 -0
- pulumi_sdwan/get_expanded_community_list_policy_object.py +15 -15
- pulumi_sdwan/get_extended_community_list_policy_object.py +15 -15
- pulumi_sdwan/get_feature_device_template.py +29 -29
- pulumi_sdwan/get_geo_location_list_policy_object.py +15 -15
- pulumi_sdwan/get_gps_feature_template.py +48 -48
- pulumi_sdwan/get_hub_and_spoke_topology_policy_definition.py +23 -23
- pulumi_sdwan/get_intrusion_prevention_policy_definition.py +57 -31
- pulumi_sdwan/get_ips_signature_list_policy_object.py +15 -15
- pulumi_sdwan/get_ipv4_acl_policy_definition.py +21 -21
- pulumi_sdwan/get_ipv4_device_acl_policy_definition.py +21 -21
- pulumi_sdwan/get_ipv4_prefix_list_policy_object.py +15 -15
- pulumi_sdwan/get_ipv6_acl_policy_definition.py +21 -21
- pulumi_sdwan/get_ipv6_device_acl_policy_definition.py +21 -21
- pulumi_sdwan/get_ipv6_prefix_list_policy_object.py +15 -15
- pulumi_sdwan/get_local_application_list_policy_object.py +15 -15
- pulumi_sdwan/get_localized_policy.py +37 -37
- pulumi_sdwan/get_mesh_topology_policy_definition.py +23 -23
- pulumi_sdwan/get_mirror_policy_object.py +18 -18
- pulumi_sdwan/get_object_group_policy_definition.py +42 -42
- pulumi_sdwan/get_other_feature_profile.py +14 -14
- pulumi_sdwan/get_other_thousandeyes_feature.py +23 -23
- pulumi_sdwan/get_other_ucse_feature.py +49 -49
- pulumi_sdwan/get_policer_policy_object.py +20 -20
- pulumi_sdwan/get_policy_group.py +183 -0
- pulumi_sdwan/get_policy_object_app_probe_class.py +177 -0
- pulumi_sdwan/get_policy_object_application_list.py +177 -0
- pulumi_sdwan/get_policy_object_as_path_list.py +191 -0
- pulumi_sdwan/get_policy_object_class_map.py +23 -23
- pulumi_sdwan/get_policy_object_color_list.py +23 -23
- pulumi_sdwan/get_policy_object_data_ipv4_prefix_list.py +23 -23
- pulumi_sdwan/get_policy_object_data_ipv6_prefix_list.py +23 -23
- pulumi_sdwan/get_policy_object_expanded_community_list.py +26 -26
- pulumi_sdwan/get_policy_object_extended_community_list.py +23 -23
- pulumi_sdwan/get_policy_object_feature_profile.py +39 -11
- pulumi_sdwan/get_policy_object_ipv4_prefix_list.py +23 -23
- pulumi_sdwan/get_policy_object_ipv6_prefix_list.py +23 -23
- pulumi_sdwan/get_policy_object_mirror.py +23 -23
- pulumi_sdwan/get_policy_object_policer.py +23 -23
- pulumi_sdwan/get_policy_object_preferred_color_group.py +177 -0
- pulumi_sdwan/get_policy_object_security_data_ipv4_prefix_list.py +174 -0
- pulumi_sdwan/get_policy_object_security_fqdn_list.py +174 -0
- pulumi_sdwan/get_policy_object_security_geolocation_list.py +177 -0
- pulumi_sdwan/get_policy_object_security_identity_list.py +177 -0
- pulumi_sdwan/get_policy_object_security_ips_signature.py +177 -0
- pulumi_sdwan/get_policy_object_security_local_application_list.py +177 -0
- pulumi_sdwan/get_policy_object_security_local_domain_list.py +174 -0
- pulumi_sdwan/get_policy_object_security_port_list.py +177 -0
- pulumi_sdwan/get_policy_object_security_protocol_list.py +174 -0
- pulumi_sdwan/get_policy_object_security_scalable_group_tag_list.py +174 -0
- pulumi_sdwan/get_policy_object_security_url_allow_list.py +177 -0
- pulumi_sdwan/get_policy_object_security_url_block_list.py +177 -0
- pulumi_sdwan/get_policy_object_sla_class_list.py +177 -0
- pulumi_sdwan/get_policy_object_standard_community_list.py +177 -0
- pulumi_sdwan/get_policy_object_tloc_list.py +23 -23
- pulumi_sdwan/get_policy_object_unified_advanced_inspection_profile.py +217 -0
- pulumi_sdwan/get_policy_object_unified_advanced_malware_protection.py +239 -0
- pulumi_sdwan/get_policy_object_unified_intrusion_prevention.py +229 -0
- pulumi_sdwan/get_policy_object_unified_tls_ssl_decryption.py +325 -0
- pulumi_sdwan/get_policy_object_unified_tls_ssl_profile.py +261 -0
- pulumi_sdwan/get_policy_object_unified_url_filtering.py +272 -0
- pulumi_sdwan/get_policy_object_vpn_group.py +177 -0
- pulumi_sdwan/get_port_list_policy_object.py +15 -15
- pulumi_sdwan/get_preferred_color_group_policy_object.py +26 -26
- pulumi_sdwan/get_protocol_list_policy_object.py +15 -15
- pulumi_sdwan/get_qos_map_policy_definition.py +19 -19
- pulumi_sdwan/get_region_list_policy_object.py +15 -15
- pulumi_sdwan/get_rewrite_rule_policy_definition.py +19 -19
- pulumi_sdwan/get_route_policy_definition.py +21 -21
- pulumi_sdwan/get_rule_set_policy_definition.py +17 -17
- pulumi_sdwan/get_security_app_hosting_feature_template.py +25 -25
- pulumi_sdwan/get_security_policy.py +137 -39
- pulumi_sdwan/get_service_dhcp_server_feature.py +443 -0
- pulumi_sdwan/get_service_feature_profile.py +14 -14
- pulumi_sdwan/get_service_ipv4_acl_feature.py +191 -0
- pulumi_sdwan/get_service_ipv6_acl_feature.py +191 -0
- pulumi_sdwan/get_service_lan_vpn_feature.py +76 -76
- pulumi_sdwan/get_service_lan_vpn_feature_associate_multicast_feature.py +170 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_bgp_feature.py +170 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_eigrp_feature.py +170 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospf_feature.py +170 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +170 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +170 -0
- pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature.py +215 -215
- pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature.py +192 -0
- pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +192 -0
- pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +192 -0
- pulumi_sdwan/get_service_lan_vpn_interface_gre_feature.py +84 -84
- pulumi_sdwan/get_service_lan_vpn_interface_ipsec_feature.py +146 -146
- pulumi_sdwan/get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature.py +192 -0
- pulumi_sdwan/get_service_lan_vpn_interface_svi_feature.py +135 -91
- pulumi_sdwan/get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature.py +192 -0
- pulumi_sdwan/get_service_multicast_feature.py +513 -0
- pulumi_sdwan/get_service_object_tracker_feature.py +44 -44
- pulumi_sdwan/get_service_object_tracker_group_feature.py +31 -31
- pulumi_sdwan/get_service_route_policy_feature.py +25 -25
- pulumi_sdwan/get_service_routing_bgp_feature.py +114 -114
- pulumi_sdwan/get_service_routing_eigrp_feature.py +398 -0
- pulumi_sdwan/get_service_routing_ospf_feature.py +77 -77
- pulumi_sdwan/get_service_routing_ospfv3_ipv4_feature.py +90 -90
- pulumi_sdwan/get_service_routing_ospfv3_ipv6_feature.py +90 -90
- pulumi_sdwan/get_service_switchport_feature.py +28 -28
- pulumi_sdwan/get_service_tracker_feature.py +66 -66
- pulumi_sdwan/get_service_tracker_group_feature.py +27 -27
- pulumi_sdwan/get_service_wireless_lan_feature.py +415 -0
- pulumi_sdwan/get_sig_security_feature_profile.py +126 -0
- pulumi_sdwan/get_site_list_policy_object.py +15 -15
- pulumi_sdwan/get_sla_class_policy_object.py +32 -32
- pulumi_sdwan/get_standard_community_list_policy_object.py +15 -15
- pulumi_sdwan/get_switchport_feature_template.py +36 -36
- pulumi_sdwan/get_system_aaa_feature.py +45 -45
- pulumi_sdwan/get_system_banner_feature.py +30 -30
- pulumi_sdwan/get_system_basic_feature.py +140 -140
- pulumi_sdwan/get_system_bfd_feature.py +35 -35
- pulumi_sdwan/get_system_feature_profile.py +14 -14
- pulumi_sdwan/get_system_flexible_port_speed_feature.py +26 -26
- pulumi_sdwan/get_system_global_feature.py +114 -114
- pulumi_sdwan/get_system_ipv4_device_access_feature.py +25 -25
- pulumi_sdwan/get_system_ipv6_device_access_feature.py +25 -25
- pulumi_sdwan/get_system_logging_feature.py +37 -37
- pulumi_sdwan/get_system_mrf_feature.py +36 -36
- pulumi_sdwan/get_system_ntp_feature.py +40 -40
- pulumi_sdwan/get_system_omp_feature.py +138 -138
- pulumi_sdwan/get_system_performance_monitoring_feature.py +34 -34
- pulumi_sdwan/get_system_remote_access_feature.py +102 -102
- pulumi_sdwan/get_system_security_feature.py +44 -44
- pulumi_sdwan/get_system_snmp_feature.py +39 -39
- pulumi_sdwan/get_tag.py +140 -0
- pulumi_sdwan/get_tloc_list_policy_object.py +15 -15
- pulumi_sdwan/get_tls_ssl_decryption_policy_definition.py +48 -48
- pulumi_sdwan/get_tls_ssl_profile_policy_definition.py +38 -38
- pulumi_sdwan/get_traffic_data_policy_definition.py +21 -21
- pulumi_sdwan/get_transport_cellular_controller_feature.py +302 -0
- pulumi_sdwan/get_transport_cellular_profile_feature.py +372 -0
- pulumi_sdwan/get_transport_feature_profile.py +14 -14
- pulumi_sdwan/get_transport_gps_feature.py +46 -46
- pulumi_sdwan/get_transport_ipv4_acl_feature.py +191 -0
- pulumi_sdwan/get_transport_ipv6_acl_feature.py +191 -0
- pulumi_sdwan/get_transport_ipv6_tracker_feature.py +58 -58
- pulumi_sdwan/get_transport_ipv6_tracker_group_feature.py +31 -31
- pulumi_sdwan/get_transport_management_vpn_feature.py +45 -45
- pulumi_sdwan/get_transport_management_vpn_interface_ethernet_feature.py +149 -121
- pulumi_sdwan/get_transport_route_policy_feature.py +25 -25
- pulumi_sdwan/get_transport_routing_bgp_feature.py +115 -115
- pulumi_sdwan/get_transport_routing_ospf_feature.py +77 -77
- pulumi_sdwan/get_transport_routing_ospfv3_ipv4_feature.py +90 -90
- pulumi_sdwan/get_transport_routing_ospfv3_ipv6_feature.py +90 -90
- pulumi_sdwan/get_transport_t1_e1_controller_feature.py +219 -0
- pulumi_sdwan/get_transport_tracker_feature.py +58 -58
- pulumi_sdwan/get_transport_tracker_group_feature.py +27 -27
- pulumi_sdwan/get_transport_wan_vpn_feature.py +49 -49
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_bgp_feature.py +170 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospf_feature.py +170 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +170 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +170 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature.py +319 -275
- pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +192 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +192 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature.py +462 -390
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +192 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +192 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +192 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +192 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_gre_feature.py +84 -84
- pulumi_sdwan/get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +192 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ipsec_feature.py +146 -146
- pulumi_sdwan/get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +192 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_t1_e1_serial_feature.py +272 -228
- pulumi_sdwan/get_url_filtering_policy_definition.py +53 -41
- pulumi_sdwan/get_vedge_inventory.py +7 -7
- pulumi_sdwan/get_vpn_interface_cellular_feature_template.py +308 -308
- pulumi_sdwan/get_vpn_interface_dsl_ipoe_feature_template.py +335 -335
- pulumi_sdwan/get_vpn_interface_dsl_pppoa_feature_template.py +312 -312
- pulumi_sdwan/get_vpn_interface_dsl_pppoe_feature_template.py +329 -329
- pulumi_sdwan/get_vpn_interface_ethernet_pppoe_feature_template.py +328 -328
- pulumi_sdwan/get_vpn_interface_multilink_feature_template.py +287 -287
- pulumi_sdwan/get_vpn_interface_svi_feature_template.py +89 -89
- pulumi_sdwan/get_vpn_interface_t1_e1_serial_feature_template.py +255 -255
- pulumi_sdwan/get_vpn_list_policy_object.py +15 -15
- pulumi_sdwan/get_vpn_membership_policy_definition.py +19 -19
- pulumi_sdwan/get_zone_based_firewall_policy_definition.py +22 -22
- pulumi_sdwan/get_zone_list_policy_object.py +15 -15
- pulumi_sdwan/gps_feature_template.py +337 -304
- pulumi_sdwan/hub_and_spoke_topology_policy_definition.py +146 -91
- pulumi_sdwan/intrusion_prevention_policy_definition.py +305 -179
- pulumi_sdwan/ips_signature_list_policy_object.py +64 -31
- pulumi_sdwan/ipv4_acl_policy_definition.py +145 -77
- pulumi_sdwan/ipv4_device_acl_policy_definition.py +139 -77
- pulumi_sdwan/ipv4_prefix_list_policy_object.py +36 -31
- pulumi_sdwan/ipv6_acl_policy_definition.py +145 -77
- pulumi_sdwan/ipv6_device_acl_policy_definition.py +139 -77
- pulumi_sdwan/ipv6_prefix_list_policy_object.py +36 -31
- pulumi_sdwan/local_application_list_policy_object.py +36 -31
- pulumi_sdwan/localized_policy.py +309 -248
- pulumi_sdwan/mesh_topology_policy_definition.py +128 -91
- pulumi_sdwan/mirror_policy_object.py +67 -62
- pulumi_sdwan/object_group_policy_definition.py +271 -266
- pulumi_sdwan/other_feature_profile.py +43 -36
- pulumi_sdwan/other_thousandeyes_feature.py +124 -67
- pulumi_sdwan/other_ucse_feature.py +461 -355
- pulumi_sdwan/outputs.py +55155 -42638
- pulumi_sdwan/policer_policy_object.py +114 -88
- pulumi_sdwan/policy_group.py +447 -0
- pulumi_sdwan/policy_object_app_probe_class.py +384 -0
- pulumi_sdwan/policy_object_application_list.py +376 -0
- pulumi_sdwan/policy_object_as_path_list.py +433 -0
- pulumi_sdwan/policy_object_class_map.py +76 -67
- pulumi_sdwan/policy_object_color_list.py +76 -67
- pulumi_sdwan/policy_object_data_ipv4_prefix_list.py +108 -67
- pulumi_sdwan/policy_object_data_ipv6_prefix_list.py +108 -67
- pulumi_sdwan/policy_object_expanded_community_list.py +107 -98
- pulumi_sdwan/policy_object_extended_community_list.py +106 -67
- pulumi_sdwan/policy_object_feature_profile.py +43 -36
- pulumi_sdwan/policy_object_ipv4_prefix_list.py +112 -67
- pulumi_sdwan/policy_object_ipv6_prefix_list.py +112 -67
- pulumi_sdwan/policy_object_mirror.py +108 -67
- pulumi_sdwan/policy_object_policer.py +110 -67
- pulumi_sdwan/policy_object_preferred_color_group.py +386 -0
- pulumi_sdwan/policy_object_security_data_ipv4_prefix_list.py +363 -0
- pulumi_sdwan/policy_object_security_fqdn_list.py +363 -0
- pulumi_sdwan/policy_object_security_geolocation_list.py +376 -0
- pulumi_sdwan/policy_object_security_identity_list.py +375 -0
- pulumi_sdwan/policy_object_security_ips_signature.py +378 -0
- pulumi_sdwan/policy_object_security_local_application_list.py +375 -0
- pulumi_sdwan/policy_object_security_local_domain_list.py +363 -0
- pulumi_sdwan/policy_object_security_port_list.py +376 -0
- pulumi_sdwan/policy_object_security_protocol_list.py +363 -0
- pulumi_sdwan/policy_object_security_scalable_group_tag_list.py +365 -0
- pulumi_sdwan/policy_object_security_url_allow_list.py +376 -0
- pulumi_sdwan/policy_object_security_url_block_list.py +376 -0
- pulumi_sdwan/policy_object_sla_class_list.py +384 -0
- pulumi_sdwan/policy_object_standard_community_list.py +376 -0
- pulumi_sdwan/policy_object_tloc_list.py +112 -67
- pulumi_sdwan/policy_object_unified_advanced_inspection_profile.py +514 -0
- pulumi_sdwan/policy_object_unified_advanced_malware_protection.py +668 -0
- pulumi_sdwan/policy_object_unified_intrusion_prevention.py +576 -0
- pulumi_sdwan/policy_object_unified_tls_ssl_decryption.py +985 -0
- pulumi_sdwan/policy_object_unified_tls_ssl_profile.py +689 -0
- pulumi_sdwan/policy_object_unified_url_filtering.py +761 -0
- pulumi_sdwan/policy_object_vpn_group.py +376 -0
- pulumi_sdwan/port_list_policy_object.py +38 -33
- pulumi_sdwan/preferred_color_group_policy_object.py +165 -139
- pulumi_sdwan/protocol_list_policy_object.py +36 -31
- pulumi_sdwan/provider.py +97 -56
- pulumi_sdwan/pulumi-plugin.json +1 -1
- pulumi_sdwan/qos_map_policy_definition.py +102 -57
- pulumi_sdwan/region_list_policy_object.py +62 -31
- pulumi_sdwan/rewrite_rule_policy_definition.py +96 -57
- pulumi_sdwan/route_policy_definition.py +143 -77
- pulumi_sdwan/rule_set_policy_definition.py +101 -48
- pulumi_sdwan/security_app_hosting_feature_template.py +135 -91
- pulumi_sdwan/security_policy.py +694 -246
- pulumi_sdwan/service_dhcp_server_feature.py +1324 -0
- pulumi_sdwan/service_feature_profile.py +43 -36
- pulumi_sdwan/service_ipv4_acl_feature.py +470 -0
- pulumi_sdwan/service_ipv6_acl_feature.py +470 -0
- pulumi_sdwan/service_lan_vpn_feature.py +677 -425
- pulumi_sdwan/service_lan_vpn_feature_associate_multicast_feature.py +322 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_bgp_feature.py +322 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_eigrp_feature.py +322 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospf_feature.py +322 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +322 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +322 -0
- pulumi_sdwan/service_lan_vpn_interface_ethernet_feature.py +2011 -1617
- pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature.py +372 -0
- pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +372 -0
- pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +372 -0
- pulumi_sdwan/service_lan_vpn_interface_gre_feature.py +670 -650
- pulumi_sdwan/service_lan_vpn_interface_ipsec_feature.py +1426 -1341
- pulumi_sdwan/service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature.py +372 -0
- pulumi_sdwan/service_lan_vpn_interface_svi_feature.py +1020 -669
- pulumi_sdwan/service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature.py +372 -0
- pulumi_sdwan/service_multicast_feature.py +1651 -0
- pulumi_sdwan/service_object_tracker_feature.py +307 -291
- pulumi_sdwan/service_object_tracker_group_feature.py +205 -141
- pulumi_sdwan/service_route_policy_feature.py +174 -87
- pulumi_sdwan/service_routing_bgp_feature.py +1230 -868
- pulumi_sdwan/service_routing_eigrp_feature.py +1200 -0
- pulumi_sdwan/service_routing_ospf_feature.py +803 -547
- pulumi_sdwan/service_routing_ospfv3_ipv4_feature.py +928 -666
- pulumi_sdwan/service_routing_ospfv3_ipv6_feature.py +924 -666
- pulumi_sdwan/service_switchport_feature.py +212 -107
- pulumi_sdwan/service_tracker_feature.py +532 -453
- pulumi_sdwan/service_tracker_group_feature.py +159 -104
- pulumi_sdwan/service_wireless_lan_feature.py +1230 -0
- pulumi_sdwan/sig_security_feature_profile.py +239 -0
- pulumi_sdwan/site_list_policy_object.py +62 -31
- pulumi_sdwan/sla_class_policy_object.py +249 -216
- pulumi_sdwan/standard_community_list_policy_object.py +36 -31
- pulumi_sdwan/switchport_feature_template.py +330 -191
- pulumi_sdwan/system_aaa_feature.py +419 -244
- pulumi_sdwan/system_banner_feature.py +133 -124
- pulumi_sdwan/system_basic_feature.py +1476 -1669
- pulumi_sdwan/system_bfd_feature.py +252 -178
- pulumi_sdwan/system_feature_profile.py +43 -36
- pulumi_sdwan/system_flexible_port_speed_feature.py +124 -115
- pulumi_sdwan/system_global_feature.py +1089 -912
- pulumi_sdwan/system_ipv4_device_access_feature.py +148 -87
- pulumi_sdwan/system_ipv6_device_access_feature.py +148 -87
- pulumi_sdwan/system_logging_feature.py +317 -196
- pulumi_sdwan/system_mrf_feature.py +256 -211
- pulumi_sdwan/system_ntp_feature.py +305 -225
- pulumi_sdwan/system_omp_feature.py +1388 -1134
- pulumi_sdwan/system_performance_monitoring_feature.py +229 -191
- pulumi_sdwan/system_remote_access_feature.py +947 -868
- pulumi_sdwan/system_security_feature.py +397 -271
- pulumi_sdwan/system_snmp_feature.py +311 -196
- pulumi_sdwan/tag.py +288 -0
- pulumi_sdwan/tloc_list_policy_object.py +68 -31
- pulumi_sdwan/tls_ssl_decryption_policy_definition.py +503 -342
- pulumi_sdwan/tls_ssl_profile_policy_definition.py +257 -238
- pulumi_sdwan/traffic_data_policy_definition.py +143 -77
- pulumi_sdwan/transport_cellular_controller_feature.py +829 -0
- pulumi_sdwan/transport_cellular_profile_feature.py +1076 -0
- pulumi_sdwan/transport_feature_profile.py +43 -36
- pulumi_sdwan/transport_gps_feature.py +324 -280
- pulumi_sdwan/transport_ipv4_acl_feature.py +470 -0
- pulumi_sdwan/transport_ipv6_acl_feature.py +470 -0
- pulumi_sdwan/transport_ipv6_tracker_feature.py +464 -385
- pulumi_sdwan/transport_ipv6_tracker_group_feature.py +195 -138
- pulumi_sdwan/transport_management_vpn_feature.py +342 -256
- pulumi_sdwan/transport_management_vpn_interface_ethernet_feature.py +1282 -970
- pulumi_sdwan/transport_route_policy_feature.py +174 -87
- pulumi_sdwan/transport_routing_bgp_feature.py +1241 -871
- pulumi_sdwan/transport_routing_ospf_feature.py +803 -547
- pulumi_sdwan/transport_routing_ospfv3_ipv4_feature.py +928 -666
- pulumi_sdwan/transport_routing_ospfv3_ipv6_feature.py +924 -666
- pulumi_sdwan/transport_t1_e1_controller_feature.py +551 -0
- pulumi_sdwan/transport_tracker_feature.py +464 -385
- pulumi_sdwan/transport_tracker_group_feature.py +159 -104
- pulumi_sdwan/transport_wan_vpn_feature.py +404 -284
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_bgp_feature.py +322 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospf_feature.py +322 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +322 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +322 -0
- pulumi_sdwan/transport_wan_vpn_interface_cellular_feature.py +3091 -2362
- pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +372 -0
- pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +372 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py +4607 -3561
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +372 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +372 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +372 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +372 -0
- pulumi_sdwan/transport_wan_vpn_interface_gre_feature.py +634 -610
- pulumi_sdwan/transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +372 -0
- pulumi_sdwan/transport_wan_vpn_interface_ipsec_feature.py +1346 -1252
- pulumi_sdwan/transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +372 -0
- pulumi_sdwan/transport_wan_vpn_interface_t1_e1_serial_feature.py +2414 -1970
- pulumi_sdwan/url_filtering_policy_definition.py +340 -270
- pulumi_sdwan/vpn_interface_cellular_feature_template.py +3368 -2667
- pulumi_sdwan/vpn_interface_dsl_ipoe_feature_template.py +3645 -2908
- pulumi_sdwan/vpn_interface_dsl_pppoa_feature_template.py +3435 -2698
- pulumi_sdwan/vpn_interface_dsl_pppoe_feature_template.py +3609 -2860
- pulumi_sdwan/vpn_interface_ethernet_pppoe_feature_template.py +3586 -2857
- pulumi_sdwan/vpn_interface_multilink_feature_template.py +3116 -2473
- pulumi_sdwan/vpn_interface_svi_feature_template.py +875 -618
- pulumi_sdwan/vpn_interface_t1_e1_serial_feature_template.py +2720 -2208
- pulumi_sdwan/vpn_list_policy_object.py +62 -31
- pulumi_sdwan/vpn_membership_policy_definition.py +92 -57
- pulumi_sdwan/zone_based_firewall_policy_definition.py +195 -104
- pulumi_sdwan/zone_list_policy_object.py +36 -31
- {pulumi_sdwan-0.2.0a1730181615.dist-info → pulumi_sdwan-0.6.0a1764803684.dist-info}/METADATA +7 -7
- pulumi_sdwan-0.6.0a1764803684.dist-info/RECORD +496 -0
- {pulumi_sdwan-0.2.0a1730181615.dist-info → pulumi_sdwan-0.6.0a1764803684.dist-info}/WHEEL +1 -1
- pulumi_sdwan-0.2.0a1730181615.dist-info/RECORD +0 -364
- {pulumi_sdwan-0.2.0a1730181615.dist-info → pulumi_sdwan-0.6.0a1764803684.dist-info}/top_level.txt +0 -0
pulumi_sdwan/__init__.py
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins as _builtins
|
|
5
6
|
from . import _utilities
|
|
6
7
|
import typing
|
|
7
8
|
# Export this package's modules as members:
|
|
@@ -14,6 +15,7 @@ from .application_aware_routing_policy_definition import *
|
|
|
14
15
|
from .application_list_policy_object import *
|
|
15
16
|
from .application_priority_feature_profile import *
|
|
16
17
|
from .application_priority_qos_policy import *
|
|
18
|
+
from .application_priority_traffic_policy_policy import *
|
|
17
19
|
from .as_path_list_policy_object import *
|
|
18
20
|
from .attach_feature_device_template import *
|
|
19
21
|
from .block_url_list_policy_object import *
|
|
@@ -59,9 +61,12 @@ from .custom_control_topology_policy_definition import *
|
|
|
59
61
|
from .data_fqdn_prefix_list_policy_object import *
|
|
60
62
|
from .data_ipv4_prefix_list_policy_object import *
|
|
61
63
|
from .data_ipv6_prefix_list_policy_object import *
|
|
64
|
+
from .dns_security_feature_profile import *
|
|
65
|
+
from .dns_security_policy import *
|
|
62
66
|
from .dns_security_policy_definition import *
|
|
63
67
|
from .domain_list_policy_object import *
|
|
64
68
|
from .eigrp_feature_template import *
|
|
69
|
+
from .embedded_security_feature_profile import *
|
|
65
70
|
from .expanded_community_list_policy_object import *
|
|
66
71
|
from .extended_community_list_policy_object import *
|
|
67
72
|
from .feature_device_template import *
|
|
@@ -74,6 +79,7 @@ from .get_application_aware_routing_policy_definition import *
|
|
|
74
79
|
from .get_application_list_policy_object import *
|
|
75
80
|
from .get_application_priority_feature_profile import *
|
|
76
81
|
from .get_application_priority_qos_policy import *
|
|
82
|
+
from .get_application_priority_traffic_policy_policy import *
|
|
77
83
|
from .get_as_path_list_policy_object import *
|
|
78
84
|
from .get_block_url_list_policy_object import *
|
|
79
85
|
from .get_cedge_aaa_feature_template import *
|
|
@@ -119,9 +125,12 @@ from .get_data_fqdn_prefix_list_policy_object import *
|
|
|
119
125
|
from .get_data_ipv4_prefix_list_policy_object import *
|
|
120
126
|
from .get_data_ipv6_prefix_list_policy_object import *
|
|
121
127
|
from .get_device import *
|
|
128
|
+
from .get_dns_security_feature_profile import *
|
|
129
|
+
from .get_dns_security_policy import *
|
|
122
130
|
from .get_dns_security_policy_definition import *
|
|
123
131
|
from .get_domain_list_policy_object import *
|
|
124
132
|
from .get_eigrp_feature_template import *
|
|
133
|
+
from .get_embedded_security_feature_profile import *
|
|
125
134
|
from .get_expanded_community_list_policy_object import *
|
|
126
135
|
from .get_extended_community_list_policy_object import *
|
|
127
136
|
from .get_feature_device_template import *
|
|
@@ -145,6 +154,10 @@ from .get_other_feature_profile import *
|
|
|
145
154
|
from .get_other_thousandeyes_feature import *
|
|
146
155
|
from .get_other_ucse_feature import *
|
|
147
156
|
from .get_policer_policy_object import *
|
|
157
|
+
from .get_policy_group import *
|
|
158
|
+
from .get_policy_object_app_probe_class import *
|
|
159
|
+
from .get_policy_object_application_list import *
|
|
160
|
+
from .get_policy_object_as_path_list import *
|
|
148
161
|
from .get_policy_object_class_map import *
|
|
149
162
|
from .get_policy_object_color_list import *
|
|
150
163
|
from .get_policy_object_data_ipv4_prefix_list import *
|
|
@@ -156,7 +169,29 @@ from .get_policy_object_ipv4_prefix_list import *
|
|
|
156
169
|
from .get_policy_object_ipv6_prefix_list import *
|
|
157
170
|
from .get_policy_object_mirror import *
|
|
158
171
|
from .get_policy_object_policer import *
|
|
172
|
+
from .get_policy_object_preferred_color_group import *
|
|
173
|
+
from .get_policy_object_security_data_ipv4_prefix_list import *
|
|
174
|
+
from .get_policy_object_security_fqdn_list import *
|
|
175
|
+
from .get_policy_object_security_geolocation_list import *
|
|
176
|
+
from .get_policy_object_security_identity_list import *
|
|
177
|
+
from .get_policy_object_security_ips_signature import *
|
|
178
|
+
from .get_policy_object_security_local_application_list import *
|
|
179
|
+
from .get_policy_object_security_local_domain_list import *
|
|
180
|
+
from .get_policy_object_security_port_list import *
|
|
181
|
+
from .get_policy_object_security_protocol_list import *
|
|
182
|
+
from .get_policy_object_security_scalable_group_tag_list import *
|
|
183
|
+
from .get_policy_object_security_url_allow_list import *
|
|
184
|
+
from .get_policy_object_security_url_block_list import *
|
|
185
|
+
from .get_policy_object_sla_class_list import *
|
|
186
|
+
from .get_policy_object_standard_community_list import *
|
|
159
187
|
from .get_policy_object_tloc_list import *
|
|
188
|
+
from .get_policy_object_unified_advanced_inspection_profile import *
|
|
189
|
+
from .get_policy_object_unified_advanced_malware_protection import *
|
|
190
|
+
from .get_policy_object_unified_intrusion_prevention import *
|
|
191
|
+
from .get_policy_object_unified_tls_ssl_decryption import *
|
|
192
|
+
from .get_policy_object_unified_tls_ssl_profile import *
|
|
193
|
+
from .get_policy_object_unified_url_filtering import *
|
|
194
|
+
from .get_policy_object_vpn_group import *
|
|
160
195
|
from .get_port_list_policy_object import *
|
|
161
196
|
from .get_preferred_color_group_policy_object import *
|
|
162
197
|
from .get_protocol_list_policy_object import *
|
|
@@ -167,22 +202,40 @@ from .get_route_policy_definition import *
|
|
|
167
202
|
from .get_rule_set_policy_definition import *
|
|
168
203
|
from .get_security_app_hosting_feature_template import *
|
|
169
204
|
from .get_security_policy import *
|
|
205
|
+
from .get_service_dhcp_server_feature import *
|
|
170
206
|
from .get_service_feature_profile import *
|
|
207
|
+
from .get_service_ipv4_acl_feature import *
|
|
208
|
+
from .get_service_ipv6_acl_feature import *
|
|
171
209
|
from .get_service_lan_vpn_feature import *
|
|
210
|
+
from .get_service_lan_vpn_feature_associate_multicast_feature import *
|
|
211
|
+
from .get_service_lan_vpn_feature_associate_routing_bgp_feature import *
|
|
212
|
+
from .get_service_lan_vpn_feature_associate_routing_eigrp_feature import *
|
|
213
|
+
from .get_service_lan_vpn_feature_associate_routing_ospf_feature import *
|
|
214
|
+
from .get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature import *
|
|
215
|
+
from .get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature import *
|
|
172
216
|
from .get_service_lan_vpn_interface_ethernet_feature import *
|
|
217
|
+
from .get_service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature import *
|
|
218
|
+
from .get_service_lan_vpn_interface_ethernet_feature_associate_tracker_feature import *
|
|
219
|
+
from .get_service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature import *
|
|
173
220
|
from .get_service_lan_vpn_interface_gre_feature import *
|
|
174
221
|
from .get_service_lan_vpn_interface_ipsec_feature import *
|
|
222
|
+
from .get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature import *
|
|
175
223
|
from .get_service_lan_vpn_interface_svi_feature import *
|
|
224
|
+
from .get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature import *
|
|
225
|
+
from .get_service_multicast_feature import *
|
|
176
226
|
from .get_service_object_tracker_feature import *
|
|
177
227
|
from .get_service_object_tracker_group_feature import *
|
|
178
228
|
from .get_service_route_policy_feature import *
|
|
179
229
|
from .get_service_routing_bgp_feature import *
|
|
230
|
+
from .get_service_routing_eigrp_feature import *
|
|
180
231
|
from .get_service_routing_ospf_feature import *
|
|
181
232
|
from .get_service_routing_ospfv3_ipv4_feature import *
|
|
182
233
|
from .get_service_routing_ospfv3_ipv6_feature import *
|
|
183
234
|
from .get_service_switchport_feature import *
|
|
184
235
|
from .get_service_tracker_feature import *
|
|
185
236
|
from .get_service_tracker_group_feature import *
|
|
237
|
+
from .get_service_wireless_lan_feature import *
|
|
238
|
+
from .get_sig_security_feature_profile import *
|
|
186
239
|
from .get_site_list_policy_object import *
|
|
187
240
|
from .get_sla_class_policy_object import *
|
|
188
241
|
from .get_standard_community_list_policy_object import *
|
|
@@ -204,12 +257,17 @@ from .get_system_performance_monitoring_feature import *
|
|
|
204
257
|
from .get_system_remote_access_feature import *
|
|
205
258
|
from .get_system_security_feature import *
|
|
206
259
|
from .get_system_snmp_feature import *
|
|
260
|
+
from .get_tag import *
|
|
207
261
|
from .get_tloc_list_policy_object import *
|
|
208
262
|
from .get_tls_ssl_decryption_policy_definition import *
|
|
209
263
|
from .get_tls_ssl_profile_policy_definition import *
|
|
210
264
|
from .get_traffic_data_policy_definition import *
|
|
265
|
+
from .get_transport_cellular_controller_feature import *
|
|
266
|
+
from .get_transport_cellular_profile_feature import *
|
|
211
267
|
from .get_transport_feature_profile import *
|
|
212
268
|
from .get_transport_gps_feature import *
|
|
269
|
+
from .get_transport_ipv4_acl_feature import *
|
|
270
|
+
from .get_transport_ipv6_acl_feature import *
|
|
213
271
|
from .get_transport_ipv6_tracker_feature import *
|
|
214
272
|
from .get_transport_ipv6_tracker_group_feature import *
|
|
215
273
|
from .get_transport_management_vpn_feature import *
|
|
@@ -219,13 +277,26 @@ from .get_transport_routing_bgp_feature import *
|
|
|
219
277
|
from .get_transport_routing_ospf_feature import *
|
|
220
278
|
from .get_transport_routing_ospfv3_ipv4_feature import *
|
|
221
279
|
from .get_transport_routing_ospfv3_ipv6_feature import *
|
|
280
|
+
from .get_transport_t1_e1_controller_feature import *
|
|
222
281
|
from .get_transport_tracker_feature import *
|
|
223
282
|
from .get_transport_tracker_group_feature import *
|
|
224
283
|
from .get_transport_wan_vpn_feature import *
|
|
284
|
+
from .get_transport_wan_vpn_feature_associate_routing_bgp_feature import *
|
|
285
|
+
from .get_transport_wan_vpn_feature_associate_routing_ospf_feature import *
|
|
286
|
+
from .get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature import *
|
|
287
|
+
from .get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature import *
|
|
225
288
|
from .get_transport_wan_vpn_interface_cellular_feature import *
|
|
289
|
+
from .get_transport_wan_vpn_interface_cellular_feature_associate_tracker_feature import *
|
|
290
|
+
from .get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature import *
|
|
226
291
|
from .get_transport_wan_vpn_interface_ethernet_feature import *
|
|
292
|
+
from .get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature import *
|
|
293
|
+
from .get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature import *
|
|
294
|
+
from .get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature import *
|
|
295
|
+
from .get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature import *
|
|
227
296
|
from .get_transport_wan_vpn_interface_gre_feature import *
|
|
297
|
+
from .get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature import *
|
|
228
298
|
from .get_transport_wan_vpn_interface_ipsec_feature import *
|
|
299
|
+
from .get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature import *
|
|
229
300
|
from .get_transport_wan_vpn_interface_t1_e1_serial_feature import *
|
|
230
301
|
from .get_url_filtering_policy_definition import *
|
|
231
302
|
from .get_vedge_inventory import *
|
|
@@ -260,6 +331,10 @@ from .other_feature_profile import *
|
|
|
260
331
|
from .other_thousandeyes_feature import *
|
|
261
332
|
from .other_ucse_feature import *
|
|
262
333
|
from .policer_policy_object import *
|
|
334
|
+
from .policy_group import *
|
|
335
|
+
from .policy_object_app_probe_class import *
|
|
336
|
+
from .policy_object_application_list import *
|
|
337
|
+
from .policy_object_as_path_list import *
|
|
263
338
|
from .policy_object_class_map import *
|
|
264
339
|
from .policy_object_color_list import *
|
|
265
340
|
from .policy_object_data_ipv4_prefix_list import *
|
|
@@ -271,7 +346,29 @@ from .policy_object_ipv4_prefix_list import *
|
|
|
271
346
|
from .policy_object_ipv6_prefix_list import *
|
|
272
347
|
from .policy_object_mirror import *
|
|
273
348
|
from .policy_object_policer import *
|
|
349
|
+
from .policy_object_preferred_color_group import *
|
|
350
|
+
from .policy_object_security_data_ipv4_prefix_list import *
|
|
351
|
+
from .policy_object_security_fqdn_list import *
|
|
352
|
+
from .policy_object_security_geolocation_list import *
|
|
353
|
+
from .policy_object_security_identity_list import *
|
|
354
|
+
from .policy_object_security_ips_signature import *
|
|
355
|
+
from .policy_object_security_local_application_list import *
|
|
356
|
+
from .policy_object_security_local_domain_list import *
|
|
357
|
+
from .policy_object_security_port_list import *
|
|
358
|
+
from .policy_object_security_protocol_list import *
|
|
359
|
+
from .policy_object_security_scalable_group_tag_list import *
|
|
360
|
+
from .policy_object_security_url_allow_list import *
|
|
361
|
+
from .policy_object_security_url_block_list import *
|
|
362
|
+
from .policy_object_sla_class_list import *
|
|
363
|
+
from .policy_object_standard_community_list import *
|
|
274
364
|
from .policy_object_tloc_list import *
|
|
365
|
+
from .policy_object_unified_advanced_inspection_profile import *
|
|
366
|
+
from .policy_object_unified_advanced_malware_protection import *
|
|
367
|
+
from .policy_object_unified_intrusion_prevention import *
|
|
368
|
+
from .policy_object_unified_tls_ssl_decryption import *
|
|
369
|
+
from .policy_object_unified_tls_ssl_profile import *
|
|
370
|
+
from .policy_object_unified_url_filtering import *
|
|
371
|
+
from .policy_object_vpn_group import *
|
|
275
372
|
from .port_list_policy_object import *
|
|
276
373
|
from .preferred_color_group_policy_object import *
|
|
277
374
|
from .protocol_list_policy_object import *
|
|
@@ -283,22 +380,40 @@ from .route_policy_definition import *
|
|
|
283
380
|
from .rule_set_policy_definition import *
|
|
284
381
|
from .security_app_hosting_feature_template import *
|
|
285
382
|
from .security_policy import *
|
|
383
|
+
from .service_dhcp_server_feature import *
|
|
286
384
|
from .service_feature_profile import *
|
|
385
|
+
from .service_ipv4_acl_feature import *
|
|
386
|
+
from .service_ipv6_acl_feature import *
|
|
287
387
|
from .service_lan_vpn_feature import *
|
|
388
|
+
from .service_lan_vpn_feature_associate_multicast_feature import *
|
|
389
|
+
from .service_lan_vpn_feature_associate_routing_bgp_feature import *
|
|
390
|
+
from .service_lan_vpn_feature_associate_routing_eigrp_feature import *
|
|
391
|
+
from .service_lan_vpn_feature_associate_routing_ospf_feature import *
|
|
392
|
+
from .service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature import *
|
|
393
|
+
from .service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature import *
|
|
288
394
|
from .service_lan_vpn_interface_ethernet_feature import *
|
|
395
|
+
from .service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature import *
|
|
396
|
+
from .service_lan_vpn_interface_ethernet_feature_associate_tracker_feature import *
|
|
397
|
+
from .service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature import *
|
|
289
398
|
from .service_lan_vpn_interface_gre_feature import *
|
|
290
399
|
from .service_lan_vpn_interface_ipsec_feature import *
|
|
400
|
+
from .service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature import *
|
|
291
401
|
from .service_lan_vpn_interface_svi_feature import *
|
|
402
|
+
from .service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature import *
|
|
403
|
+
from .service_multicast_feature import *
|
|
292
404
|
from .service_object_tracker_feature import *
|
|
293
405
|
from .service_object_tracker_group_feature import *
|
|
294
406
|
from .service_route_policy_feature import *
|
|
295
407
|
from .service_routing_bgp_feature import *
|
|
408
|
+
from .service_routing_eigrp_feature import *
|
|
296
409
|
from .service_routing_ospf_feature import *
|
|
297
410
|
from .service_routing_ospfv3_ipv4_feature import *
|
|
298
411
|
from .service_routing_ospfv3_ipv6_feature import *
|
|
299
412
|
from .service_switchport_feature import *
|
|
300
413
|
from .service_tracker_feature import *
|
|
301
414
|
from .service_tracker_group_feature import *
|
|
415
|
+
from .service_wireless_lan_feature import *
|
|
416
|
+
from .sig_security_feature_profile import *
|
|
302
417
|
from .site_list_policy_object import *
|
|
303
418
|
from .sla_class_policy_object import *
|
|
304
419
|
from .standard_community_list_policy_object import *
|
|
@@ -320,12 +435,17 @@ from .system_performance_monitoring_feature import *
|
|
|
320
435
|
from .system_remote_access_feature import *
|
|
321
436
|
from .system_security_feature import *
|
|
322
437
|
from .system_snmp_feature import *
|
|
438
|
+
from .tag import *
|
|
323
439
|
from .tloc_list_policy_object import *
|
|
324
440
|
from .tls_ssl_decryption_policy_definition import *
|
|
325
441
|
from .tls_ssl_profile_policy_definition import *
|
|
326
442
|
from .traffic_data_policy_definition import *
|
|
443
|
+
from .transport_cellular_controller_feature import *
|
|
444
|
+
from .transport_cellular_profile_feature import *
|
|
327
445
|
from .transport_feature_profile import *
|
|
328
446
|
from .transport_gps_feature import *
|
|
447
|
+
from .transport_ipv4_acl_feature import *
|
|
448
|
+
from .transport_ipv6_acl_feature import *
|
|
329
449
|
from .transport_ipv6_tracker_feature import *
|
|
330
450
|
from .transport_ipv6_tracker_group_feature import *
|
|
331
451
|
from .transport_management_vpn_feature import *
|
|
@@ -335,13 +455,26 @@ from .transport_routing_bgp_feature import *
|
|
|
335
455
|
from .transport_routing_ospf_feature import *
|
|
336
456
|
from .transport_routing_ospfv3_ipv4_feature import *
|
|
337
457
|
from .transport_routing_ospfv3_ipv6_feature import *
|
|
458
|
+
from .transport_t1_e1_controller_feature import *
|
|
338
459
|
from .transport_tracker_feature import *
|
|
339
460
|
from .transport_tracker_group_feature import *
|
|
340
461
|
from .transport_wan_vpn_feature import *
|
|
462
|
+
from .transport_wan_vpn_feature_associate_routing_bgp_feature import *
|
|
463
|
+
from .transport_wan_vpn_feature_associate_routing_ospf_feature import *
|
|
464
|
+
from .transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature import *
|
|
465
|
+
from .transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature import *
|
|
341
466
|
from .transport_wan_vpn_interface_cellular_feature import *
|
|
467
|
+
from .transport_wan_vpn_interface_cellular_feature_associate_tracker_feature import *
|
|
468
|
+
from .transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature import *
|
|
342
469
|
from .transport_wan_vpn_interface_ethernet_feature import *
|
|
470
|
+
from .transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature import *
|
|
471
|
+
from .transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature import *
|
|
472
|
+
from .transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature import *
|
|
473
|
+
from .transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature import *
|
|
343
474
|
from .transport_wan_vpn_interface_gre_feature import *
|
|
475
|
+
from .transport_wan_vpn_interface_gre_feature_associate_tracker_feature import *
|
|
344
476
|
from .transport_wan_vpn_interface_ipsec_feature import *
|
|
477
|
+
from .transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature import *
|
|
345
478
|
from .transport_wan_vpn_interface_t1_e1_serial_feature import *
|
|
346
479
|
from .url_filtering_policy_definition import *
|
|
347
480
|
from .vpn_interface_cellular_feature_template import *
|
|
@@ -441,6 +574,14 @@ _utilities.register(
|
|
|
441
574
|
"sdwan:index/applicationPriorityQosPolicy:ApplicationPriorityQosPolicy": "ApplicationPriorityQosPolicy"
|
|
442
575
|
}
|
|
443
576
|
},
|
|
577
|
+
{
|
|
578
|
+
"pkg": "sdwan",
|
|
579
|
+
"mod": "index/applicationPriorityTrafficPolicyPolicy",
|
|
580
|
+
"fqn": "pulumi_sdwan",
|
|
581
|
+
"classes": {
|
|
582
|
+
"sdwan:index/applicationPriorityTrafficPolicyPolicy:ApplicationPriorityTrafficPolicyPolicy": "ApplicationPriorityTrafficPolicyPolicy"
|
|
583
|
+
}
|
|
584
|
+
},
|
|
444
585
|
{
|
|
445
586
|
"pkg": "sdwan",
|
|
446
587
|
"mod": "index/asPathListPolicyObject",
|
|
@@ -801,6 +942,22 @@ _utilities.register(
|
|
|
801
942
|
"sdwan:index/dataIpv6PrefixListPolicyObject:DataIpv6PrefixListPolicyObject": "DataIpv6PrefixListPolicyObject"
|
|
802
943
|
}
|
|
803
944
|
},
|
|
945
|
+
{
|
|
946
|
+
"pkg": "sdwan",
|
|
947
|
+
"mod": "index/dnsSecurityFeatureProfile",
|
|
948
|
+
"fqn": "pulumi_sdwan",
|
|
949
|
+
"classes": {
|
|
950
|
+
"sdwan:index/dnsSecurityFeatureProfile:DnsSecurityFeatureProfile": "DnsSecurityFeatureProfile"
|
|
951
|
+
}
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"pkg": "sdwan",
|
|
955
|
+
"mod": "index/dnsSecurityPolicy",
|
|
956
|
+
"fqn": "pulumi_sdwan",
|
|
957
|
+
"classes": {
|
|
958
|
+
"sdwan:index/dnsSecurityPolicy:DnsSecurityPolicy": "DnsSecurityPolicy"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
804
961
|
{
|
|
805
962
|
"pkg": "sdwan",
|
|
806
963
|
"mod": "index/dnsSecurityPolicyDefinition",
|
|
@@ -825,6 +982,14 @@ _utilities.register(
|
|
|
825
982
|
"sdwan:index/eigrpFeatureTemplate:EigrpFeatureTemplate": "EigrpFeatureTemplate"
|
|
826
983
|
}
|
|
827
984
|
},
|
|
985
|
+
{
|
|
986
|
+
"pkg": "sdwan",
|
|
987
|
+
"mod": "index/embeddedSecurityFeatureProfile",
|
|
988
|
+
"fqn": "pulumi_sdwan",
|
|
989
|
+
"classes": {
|
|
990
|
+
"sdwan:index/embeddedSecurityFeatureProfile:EmbeddedSecurityFeatureProfile": "EmbeddedSecurityFeatureProfile"
|
|
991
|
+
}
|
|
992
|
+
},
|
|
828
993
|
{
|
|
829
994
|
"pkg": "sdwan",
|
|
830
995
|
"mod": "index/expandedCommunityListPolicyObject",
|
|
@@ -1009,6 +1174,38 @@ _utilities.register(
|
|
|
1009
1174
|
"sdwan:index/policerPolicyObject:PolicerPolicyObject": "PolicerPolicyObject"
|
|
1010
1175
|
}
|
|
1011
1176
|
},
|
|
1177
|
+
{
|
|
1178
|
+
"pkg": "sdwan",
|
|
1179
|
+
"mod": "index/policyGroup",
|
|
1180
|
+
"fqn": "pulumi_sdwan",
|
|
1181
|
+
"classes": {
|
|
1182
|
+
"sdwan:index/policyGroup:PolicyGroup": "PolicyGroup"
|
|
1183
|
+
}
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"pkg": "sdwan",
|
|
1187
|
+
"mod": "index/policyObjectAppProbeClass",
|
|
1188
|
+
"fqn": "pulumi_sdwan",
|
|
1189
|
+
"classes": {
|
|
1190
|
+
"sdwan:index/policyObjectAppProbeClass:PolicyObjectAppProbeClass": "PolicyObjectAppProbeClass"
|
|
1191
|
+
}
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
"pkg": "sdwan",
|
|
1195
|
+
"mod": "index/policyObjectApplicationList",
|
|
1196
|
+
"fqn": "pulumi_sdwan",
|
|
1197
|
+
"classes": {
|
|
1198
|
+
"sdwan:index/policyObjectApplicationList:PolicyObjectApplicationList": "PolicyObjectApplicationList"
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"pkg": "sdwan",
|
|
1203
|
+
"mod": "index/policyObjectAsPathList",
|
|
1204
|
+
"fqn": "pulumi_sdwan",
|
|
1205
|
+
"classes": {
|
|
1206
|
+
"sdwan:index/policyObjectAsPathList:PolicyObjectAsPathList": "PolicyObjectAsPathList"
|
|
1207
|
+
}
|
|
1208
|
+
},
|
|
1012
1209
|
{
|
|
1013
1210
|
"pkg": "sdwan",
|
|
1014
1211
|
"mod": "index/policyObjectClassMap",
|
|
@@ -1097,6 +1294,126 @@ _utilities.register(
|
|
|
1097
1294
|
"sdwan:index/policyObjectPolicer:PolicyObjectPolicer": "PolicyObjectPolicer"
|
|
1098
1295
|
}
|
|
1099
1296
|
},
|
|
1297
|
+
{
|
|
1298
|
+
"pkg": "sdwan",
|
|
1299
|
+
"mod": "index/policyObjectPreferredColorGroup",
|
|
1300
|
+
"fqn": "pulumi_sdwan",
|
|
1301
|
+
"classes": {
|
|
1302
|
+
"sdwan:index/policyObjectPreferredColorGroup:PolicyObjectPreferredColorGroup": "PolicyObjectPreferredColorGroup"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"pkg": "sdwan",
|
|
1307
|
+
"mod": "index/policyObjectSecurityDataIpv4PrefixList",
|
|
1308
|
+
"fqn": "pulumi_sdwan",
|
|
1309
|
+
"classes": {
|
|
1310
|
+
"sdwan:index/policyObjectSecurityDataIpv4PrefixList:PolicyObjectSecurityDataIpv4PrefixList": "PolicyObjectSecurityDataIpv4PrefixList"
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"pkg": "sdwan",
|
|
1315
|
+
"mod": "index/policyObjectSecurityFqdnList",
|
|
1316
|
+
"fqn": "pulumi_sdwan",
|
|
1317
|
+
"classes": {
|
|
1318
|
+
"sdwan:index/policyObjectSecurityFqdnList:PolicyObjectSecurityFqdnList": "PolicyObjectSecurityFqdnList"
|
|
1319
|
+
}
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"pkg": "sdwan",
|
|
1323
|
+
"mod": "index/policyObjectSecurityGeolocationList",
|
|
1324
|
+
"fqn": "pulumi_sdwan",
|
|
1325
|
+
"classes": {
|
|
1326
|
+
"sdwan:index/policyObjectSecurityGeolocationList:PolicyObjectSecurityGeolocationList": "PolicyObjectSecurityGeolocationList"
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"pkg": "sdwan",
|
|
1331
|
+
"mod": "index/policyObjectSecurityIdentityList",
|
|
1332
|
+
"fqn": "pulumi_sdwan",
|
|
1333
|
+
"classes": {
|
|
1334
|
+
"sdwan:index/policyObjectSecurityIdentityList:PolicyObjectSecurityIdentityList": "PolicyObjectSecurityIdentityList"
|
|
1335
|
+
}
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"pkg": "sdwan",
|
|
1339
|
+
"mod": "index/policyObjectSecurityIpsSignature",
|
|
1340
|
+
"fqn": "pulumi_sdwan",
|
|
1341
|
+
"classes": {
|
|
1342
|
+
"sdwan:index/policyObjectSecurityIpsSignature:PolicyObjectSecurityIpsSignature": "PolicyObjectSecurityIpsSignature"
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"pkg": "sdwan",
|
|
1347
|
+
"mod": "index/policyObjectSecurityLocalApplicationList",
|
|
1348
|
+
"fqn": "pulumi_sdwan",
|
|
1349
|
+
"classes": {
|
|
1350
|
+
"sdwan:index/policyObjectSecurityLocalApplicationList:PolicyObjectSecurityLocalApplicationList": "PolicyObjectSecurityLocalApplicationList"
|
|
1351
|
+
}
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
"pkg": "sdwan",
|
|
1355
|
+
"mod": "index/policyObjectSecurityLocalDomainList",
|
|
1356
|
+
"fqn": "pulumi_sdwan",
|
|
1357
|
+
"classes": {
|
|
1358
|
+
"sdwan:index/policyObjectSecurityLocalDomainList:PolicyObjectSecurityLocalDomainList": "PolicyObjectSecurityLocalDomainList"
|
|
1359
|
+
}
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"pkg": "sdwan",
|
|
1363
|
+
"mod": "index/policyObjectSecurityPortList",
|
|
1364
|
+
"fqn": "pulumi_sdwan",
|
|
1365
|
+
"classes": {
|
|
1366
|
+
"sdwan:index/policyObjectSecurityPortList:PolicyObjectSecurityPortList": "PolicyObjectSecurityPortList"
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"pkg": "sdwan",
|
|
1371
|
+
"mod": "index/policyObjectSecurityProtocolList",
|
|
1372
|
+
"fqn": "pulumi_sdwan",
|
|
1373
|
+
"classes": {
|
|
1374
|
+
"sdwan:index/policyObjectSecurityProtocolList:PolicyObjectSecurityProtocolList": "PolicyObjectSecurityProtocolList"
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"pkg": "sdwan",
|
|
1379
|
+
"mod": "index/policyObjectSecurityScalableGroupTagList",
|
|
1380
|
+
"fqn": "pulumi_sdwan",
|
|
1381
|
+
"classes": {
|
|
1382
|
+
"sdwan:index/policyObjectSecurityScalableGroupTagList:PolicyObjectSecurityScalableGroupTagList": "PolicyObjectSecurityScalableGroupTagList"
|
|
1383
|
+
}
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"pkg": "sdwan",
|
|
1387
|
+
"mod": "index/policyObjectSecurityUrlAllowList",
|
|
1388
|
+
"fqn": "pulumi_sdwan",
|
|
1389
|
+
"classes": {
|
|
1390
|
+
"sdwan:index/policyObjectSecurityUrlAllowList:PolicyObjectSecurityUrlAllowList": "PolicyObjectSecurityUrlAllowList"
|
|
1391
|
+
}
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"pkg": "sdwan",
|
|
1395
|
+
"mod": "index/policyObjectSecurityUrlBlockList",
|
|
1396
|
+
"fqn": "pulumi_sdwan",
|
|
1397
|
+
"classes": {
|
|
1398
|
+
"sdwan:index/policyObjectSecurityUrlBlockList:PolicyObjectSecurityUrlBlockList": "PolicyObjectSecurityUrlBlockList"
|
|
1399
|
+
}
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
"pkg": "sdwan",
|
|
1403
|
+
"mod": "index/policyObjectSlaClassList",
|
|
1404
|
+
"fqn": "pulumi_sdwan",
|
|
1405
|
+
"classes": {
|
|
1406
|
+
"sdwan:index/policyObjectSlaClassList:PolicyObjectSlaClassList": "PolicyObjectSlaClassList"
|
|
1407
|
+
}
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"pkg": "sdwan",
|
|
1411
|
+
"mod": "index/policyObjectStandardCommunityList",
|
|
1412
|
+
"fqn": "pulumi_sdwan",
|
|
1413
|
+
"classes": {
|
|
1414
|
+
"sdwan:index/policyObjectStandardCommunityList:PolicyObjectStandardCommunityList": "PolicyObjectStandardCommunityList"
|
|
1415
|
+
}
|
|
1416
|
+
},
|
|
1100
1417
|
{
|
|
1101
1418
|
"pkg": "sdwan",
|
|
1102
1419
|
"mod": "index/policyObjectTlocList",
|
|
@@ -1105,6 +1422,62 @@ _utilities.register(
|
|
|
1105
1422
|
"sdwan:index/policyObjectTlocList:PolicyObjectTlocList": "PolicyObjectTlocList"
|
|
1106
1423
|
}
|
|
1107
1424
|
},
|
|
1425
|
+
{
|
|
1426
|
+
"pkg": "sdwan",
|
|
1427
|
+
"mod": "index/policyObjectUnifiedAdvancedInspectionProfile",
|
|
1428
|
+
"fqn": "pulumi_sdwan",
|
|
1429
|
+
"classes": {
|
|
1430
|
+
"sdwan:index/policyObjectUnifiedAdvancedInspectionProfile:PolicyObjectUnifiedAdvancedInspectionProfile": "PolicyObjectUnifiedAdvancedInspectionProfile"
|
|
1431
|
+
}
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
"pkg": "sdwan",
|
|
1435
|
+
"mod": "index/policyObjectUnifiedAdvancedMalwareProtection",
|
|
1436
|
+
"fqn": "pulumi_sdwan",
|
|
1437
|
+
"classes": {
|
|
1438
|
+
"sdwan:index/policyObjectUnifiedAdvancedMalwareProtection:PolicyObjectUnifiedAdvancedMalwareProtection": "PolicyObjectUnifiedAdvancedMalwareProtection"
|
|
1439
|
+
}
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"pkg": "sdwan",
|
|
1443
|
+
"mod": "index/policyObjectUnifiedIntrusionPrevention",
|
|
1444
|
+
"fqn": "pulumi_sdwan",
|
|
1445
|
+
"classes": {
|
|
1446
|
+
"sdwan:index/policyObjectUnifiedIntrusionPrevention:PolicyObjectUnifiedIntrusionPrevention": "PolicyObjectUnifiedIntrusionPrevention"
|
|
1447
|
+
}
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"pkg": "sdwan",
|
|
1451
|
+
"mod": "index/policyObjectUnifiedTlsSslDecryption",
|
|
1452
|
+
"fqn": "pulumi_sdwan",
|
|
1453
|
+
"classes": {
|
|
1454
|
+
"sdwan:index/policyObjectUnifiedTlsSslDecryption:PolicyObjectUnifiedTlsSslDecryption": "PolicyObjectUnifiedTlsSslDecryption"
|
|
1455
|
+
}
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
"pkg": "sdwan",
|
|
1459
|
+
"mod": "index/policyObjectUnifiedTlsSslProfile",
|
|
1460
|
+
"fqn": "pulumi_sdwan",
|
|
1461
|
+
"classes": {
|
|
1462
|
+
"sdwan:index/policyObjectUnifiedTlsSslProfile:PolicyObjectUnifiedTlsSslProfile": "PolicyObjectUnifiedTlsSslProfile"
|
|
1463
|
+
}
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"pkg": "sdwan",
|
|
1467
|
+
"mod": "index/policyObjectUnifiedUrlFiltering",
|
|
1468
|
+
"fqn": "pulumi_sdwan",
|
|
1469
|
+
"classes": {
|
|
1470
|
+
"sdwan:index/policyObjectUnifiedUrlFiltering:PolicyObjectUnifiedUrlFiltering": "PolicyObjectUnifiedUrlFiltering"
|
|
1471
|
+
}
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"pkg": "sdwan",
|
|
1475
|
+
"mod": "index/policyObjectVpnGroup",
|
|
1476
|
+
"fqn": "pulumi_sdwan",
|
|
1477
|
+
"classes": {
|
|
1478
|
+
"sdwan:index/policyObjectVpnGroup:PolicyObjectVpnGroup": "PolicyObjectVpnGroup"
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1108
1481
|
{
|
|
1109
1482
|
"pkg": "sdwan",
|
|
1110
1483
|
"mod": "index/portListPolicyObject",
|
|
@@ -1185,6 +1558,14 @@ _utilities.register(
|
|
|
1185
1558
|
"sdwan:index/securityPolicy:SecurityPolicy": "SecurityPolicy"
|
|
1186
1559
|
}
|
|
1187
1560
|
},
|
|
1561
|
+
{
|
|
1562
|
+
"pkg": "sdwan",
|
|
1563
|
+
"mod": "index/serviceDhcpServerFeature",
|
|
1564
|
+
"fqn": "pulumi_sdwan",
|
|
1565
|
+
"classes": {
|
|
1566
|
+
"sdwan:index/serviceDhcpServerFeature:ServiceDhcpServerFeature": "ServiceDhcpServerFeature"
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1188
1569
|
{
|
|
1189
1570
|
"pkg": "sdwan",
|
|
1190
1571
|
"mod": "index/serviceFeatureProfile",
|
|
@@ -1193,6 +1574,22 @@ _utilities.register(
|
|
|
1193
1574
|
"sdwan:index/serviceFeatureProfile:ServiceFeatureProfile": "ServiceFeatureProfile"
|
|
1194
1575
|
}
|
|
1195
1576
|
},
|
|
1577
|
+
{
|
|
1578
|
+
"pkg": "sdwan",
|
|
1579
|
+
"mod": "index/serviceIpv4AclFeature",
|
|
1580
|
+
"fqn": "pulumi_sdwan",
|
|
1581
|
+
"classes": {
|
|
1582
|
+
"sdwan:index/serviceIpv4AclFeature:ServiceIpv4AclFeature": "ServiceIpv4AclFeature"
|
|
1583
|
+
}
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
"pkg": "sdwan",
|
|
1587
|
+
"mod": "index/serviceIpv6AclFeature",
|
|
1588
|
+
"fqn": "pulumi_sdwan",
|
|
1589
|
+
"classes": {
|
|
1590
|
+
"sdwan:index/serviceIpv6AclFeature:ServiceIpv6AclFeature": "ServiceIpv6AclFeature"
|
|
1591
|
+
}
|
|
1592
|
+
},
|
|
1196
1593
|
{
|
|
1197
1594
|
"pkg": "sdwan",
|
|
1198
1595
|
"mod": "index/serviceLanVpnFeature",
|
|
@@ -1201,6 +1598,54 @@ _utilities.register(
|
|
|
1201
1598
|
"sdwan:index/serviceLanVpnFeature:ServiceLanVpnFeature": "ServiceLanVpnFeature"
|
|
1202
1599
|
}
|
|
1203
1600
|
},
|
|
1601
|
+
{
|
|
1602
|
+
"pkg": "sdwan",
|
|
1603
|
+
"mod": "index/serviceLanVpnFeatureAssociateMulticastFeature",
|
|
1604
|
+
"fqn": "pulumi_sdwan",
|
|
1605
|
+
"classes": {
|
|
1606
|
+
"sdwan:index/serviceLanVpnFeatureAssociateMulticastFeature:ServiceLanVpnFeatureAssociateMulticastFeature": "ServiceLanVpnFeatureAssociateMulticastFeature"
|
|
1607
|
+
}
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"pkg": "sdwan",
|
|
1611
|
+
"mod": "index/serviceLanVpnFeatureAssociateRoutingBgpFeature",
|
|
1612
|
+
"fqn": "pulumi_sdwan",
|
|
1613
|
+
"classes": {
|
|
1614
|
+
"sdwan:index/serviceLanVpnFeatureAssociateRoutingBgpFeature:ServiceLanVpnFeatureAssociateRoutingBgpFeature": "ServiceLanVpnFeatureAssociateRoutingBgpFeature"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"pkg": "sdwan",
|
|
1619
|
+
"mod": "index/serviceLanVpnFeatureAssociateRoutingEigrpFeature",
|
|
1620
|
+
"fqn": "pulumi_sdwan",
|
|
1621
|
+
"classes": {
|
|
1622
|
+
"sdwan:index/serviceLanVpnFeatureAssociateRoutingEigrpFeature:ServiceLanVpnFeatureAssociateRoutingEigrpFeature": "ServiceLanVpnFeatureAssociateRoutingEigrpFeature"
|
|
1623
|
+
}
|
|
1624
|
+
},
|
|
1625
|
+
{
|
|
1626
|
+
"pkg": "sdwan",
|
|
1627
|
+
"mod": "index/serviceLanVpnFeatureAssociateRoutingOspfFeature",
|
|
1628
|
+
"fqn": "pulumi_sdwan",
|
|
1629
|
+
"classes": {
|
|
1630
|
+
"sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfFeature:ServiceLanVpnFeatureAssociateRoutingOspfFeature": "ServiceLanVpnFeatureAssociateRoutingOspfFeature"
|
|
1631
|
+
}
|
|
1632
|
+
},
|
|
1633
|
+
{
|
|
1634
|
+
"pkg": "sdwan",
|
|
1635
|
+
"mod": "index/serviceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature",
|
|
1636
|
+
"fqn": "pulumi_sdwan",
|
|
1637
|
+
"classes": {
|
|
1638
|
+
"sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature": "ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature"
|
|
1639
|
+
}
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
"pkg": "sdwan",
|
|
1643
|
+
"mod": "index/serviceLanVpnFeatureAssociateRoutingOspfv3Ipv6Feature",
|
|
1644
|
+
"fqn": "pulumi_sdwan",
|
|
1645
|
+
"classes": {
|
|
1646
|
+
"sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfv3Ipv6Feature:ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6Feature": "ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6Feature"
|
|
1647
|
+
}
|
|
1648
|
+
},
|
|
1204
1649
|
{
|
|
1205
1650
|
"pkg": "sdwan",
|
|
1206
1651
|
"mod": "index/serviceLanVpnInterfaceEthernetFeature",
|
|
@@ -1209,6 +1654,30 @@ _utilities.register(
|
|
|
1209
1654
|
"sdwan:index/serviceLanVpnInterfaceEthernetFeature:ServiceLanVpnInterfaceEthernetFeature": "ServiceLanVpnInterfaceEthernetFeature"
|
|
1210
1655
|
}
|
|
1211
1656
|
},
|
|
1657
|
+
{
|
|
1658
|
+
"pkg": "sdwan",
|
|
1659
|
+
"mod": "index/serviceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature",
|
|
1660
|
+
"fqn": "pulumi_sdwan",
|
|
1661
|
+
"classes": {
|
|
1662
|
+
"sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature": "ServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature"
|
|
1663
|
+
}
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
"pkg": "sdwan",
|
|
1667
|
+
"mod": "index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature",
|
|
1668
|
+
"fqn": "pulumi_sdwan",
|
|
1669
|
+
"classes": {
|
|
1670
|
+
"sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature": "ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature"
|
|
1671
|
+
}
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"pkg": "sdwan",
|
|
1675
|
+
"mod": "index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature",
|
|
1676
|
+
"fqn": "pulumi_sdwan",
|
|
1677
|
+
"classes": {
|
|
1678
|
+
"sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature": "ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature"
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1212
1681
|
{
|
|
1213
1682
|
"pkg": "sdwan",
|
|
1214
1683
|
"mod": "index/serviceLanVpnInterfaceGreFeature",
|
|
@@ -1225,6 +1694,14 @@ _utilities.register(
|
|
|
1225
1694
|
"sdwan:index/serviceLanVpnInterfaceIpsecFeature:ServiceLanVpnInterfaceIpsecFeature": "ServiceLanVpnInterfaceIpsecFeature"
|
|
1226
1695
|
}
|
|
1227
1696
|
},
|
|
1697
|
+
{
|
|
1698
|
+
"pkg": "sdwan",
|
|
1699
|
+
"mod": "index/serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature",
|
|
1700
|
+
"fqn": "pulumi_sdwan",
|
|
1701
|
+
"classes": {
|
|
1702
|
+
"sdwan:index/serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature:ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature": "ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature"
|
|
1703
|
+
}
|
|
1704
|
+
},
|
|
1228
1705
|
{
|
|
1229
1706
|
"pkg": "sdwan",
|
|
1230
1707
|
"mod": "index/serviceLanVpnInterfaceSviFeature",
|
|
@@ -1233,6 +1710,22 @@ _utilities.register(
|
|
|
1233
1710
|
"sdwan:index/serviceLanVpnInterfaceSviFeature:ServiceLanVpnInterfaceSviFeature": "ServiceLanVpnInterfaceSviFeature"
|
|
1234
1711
|
}
|
|
1235
1712
|
},
|
|
1713
|
+
{
|
|
1714
|
+
"pkg": "sdwan",
|
|
1715
|
+
"mod": "index/serviceLanVpnInterfaceSviFeatureAssociateDhcpServerFeature",
|
|
1716
|
+
"fqn": "pulumi_sdwan",
|
|
1717
|
+
"classes": {
|
|
1718
|
+
"sdwan:index/serviceLanVpnInterfaceSviFeatureAssociateDhcpServerFeature:ServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeature": "ServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeature"
|
|
1719
|
+
}
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"pkg": "sdwan",
|
|
1723
|
+
"mod": "index/serviceMulticastFeature",
|
|
1724
|
+
"fqn": "pulumi_sdwan",
|
|
1725
|
+
"classes": {
|
|
1726
|
+
"sdwan:index/serviceMulticastFeature:ServiceMulticastFeature": "ServiceMulticastFeature"
|
|
1727
|
+
}
|
|
1728
|
+
},
|
|
1236
1729
|
{
|
|
1237
1730
|
"pkg": "sdwan",
|
|
1238
1731
|
"mod": "index/serviceObjectTrackerFeature",
|
|
@@ -1265,6 +1758,14 @@ _utilities.register(
|
|
|
1265
1758
|
"sdwan:index/serviceRoutingBgpFeature:ServiceRoutingBgpFeature": "ServiceRoutingBgpFeature"
|
|
1266
1759
|
}
|
|
1267
1760
|
},
|
|
1761
|
+
{
|
|
1762
|
+
"pkg": "sdwan",
|
|
1763
|
+
"mod": "index/serviceRoutingEigrpFeature",
|
|
1764
|
+
"fqn": "pulumi_sdwan",
|
|
1765
|
+
"classes": {
|
|
1766
|
+
"sdwan:index/serviceRoutingEigrpFeature:ServiceRoutingEigrpFeature": "ServiceRoutingEigrpFeature"
|
|
1767
|
+
}
|
|
1768
|
+
},
|
|
1268
1769
|
{
|
|
1269
1770
|
"pkg": "sdwan",
|
|
1270
1771
|
"mod": "index/serviceRoutingOspfFeature",
|
|
@@ -1313,6 +1814,22 @@ _utilities.register(
|
|
|
1313
1814
|
"sdwan:index/serviceTrackerGroupFeature:ServiceTrackerGroupFeature": "ServiceTrackerGroupFeature"
|
|
1314
1815
|
}
|
|
1315
1816
|
},
|
|
1817
|
+
{
|
|
1818
|
+
"pkg": "sdwan",
|
|
1819
|
+
"mod": "index/serviceWirelessLanFeature",
|
|
1820
|
+
"fqn": "pulumi_sdwan",
|
|
1821
|
+
"classes": {
|
|
1822
|
+
"sdwan:index/serviceWirelessLanFeature:ServiceWirelessLanFeature": "ServiceWirelessLanFeature"
|
|
1823
|
+
}
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
"pkg": "sdwan",
|
|
1827
|
+
"mod": "index/sigSecurityFeatureProfile",
|
|
1828
|
+
"fqn": "pulumi_sdwan",
|
|
1829
|
+
"classes": {
|
|
1830
|
+
"sdwan:index/sigSecurityFeatureProfile:SigSecurityFeatureProfile": "SigSecurityFeatureProfile"
|
|
1831
|
+
}
|
|
1832
|
+
},
|
|
1316
1833
|
{
|
|
1317
1834
|
"pkg": "sdwan",
|
|
1318
1835
|
"mod": "index/siteListPolicyObject",
|
|
@@ -1481,6 +1998,14 @@ _utilities.register(
|
|
|
1481
1998
|
"sdwan:index/systemSnmpFeature:SystemSnmpFeature": "SystemSnmpFeature"
|
|
1482
1999
|
}
|
|
1483
2000
|
},
|
|
2001
|
+
{
|
|
2002
|
+
"pkg": "sdwan",
|
|
2003
|
+
"mod": "index/tag",
|
|
2004
|
+
"fqn": "pulumi_sdwan",
|
|
2005
|
+
"classes": {
|
|
2006
|
+
"sdwan:index/tag:Tag": "Tag"
|
|
2007
|
+
}
|
|
2008
|
+
},
|
|
1484
2009
|
{
|
|
1485
2010
|
"pkg": "sdwan",
|
|
1486
2011
|
"mod": "index/tlocListPolicyObject",
|
|
@@ -1513,6 +2038,22 @@ _utilities.register(
|
|
|
1513
2038
|
"sdwan:index/trafficDataPolicyDefinition:TrafficDataPolicyDefinition": "TrafficDataPolicyDefinition"
|
|
1514
2039
|
}
|
|
1515
2040
|
},
|
|
2041
|
+
{
|
|
2042
|
+
"pkg": "sdwan",
|
|
2043
|
+
"mod": "index/transportCellularControllerFeature",
|
|
2044
|
+
"fqn": "pulumi_sdwan",
|
|
2045
|
+
"classes": {
|
|
2046
|
+
"sdwan:index/transportCellularControllerFeature:TransportCellularControllerFeature": "TransportCellularControllerFeature"
|
|
2047
|
+
}
|
|
2048
|
+
},
|
|
2049
|
+
{
|
|
2050
|
+
"pkg": "sdwan",
|
|
2051
|
+
"mod": "index/transportCellularProfileFeature",
|
|
2052
|
+
"fqn": "pulumi_sdwan",
|
|
2053
|
+
"classes": {
|
|
2054
|
+
"sdwan:index/transportCellularProfileFeature:TransportCellularProfileFeature": "TransportCellularProfileFeature"
|
|
2055
|
+
}
|
|
2056
|
+
},
|
|
1516
2057
|
{
|
|
1517
2058
|
"pkg": "sdwan",
|
|
1518
2059
|
"mod": "index/transportFeatureProfile",
|
|
@@ -1529,6 +2070,22 @@ _utilities.register(
|
|
|
1529
2070
|
"sdwan:index/transportGpsFeature:TransportGpsFeature": "TransportGpsFeature"
|
|
1530
2071
|
}
|
|
1531
2072
|
},
|
|
2073
|
+
{
|
|
2074
|
+
"pkg": "sdwan",
|
|
2075
|
+
"mod": "index/transportIpv4AclFeature",
|
|
2076
|
+
"fqn": "pulumi_sdwan",
|
|
2077
|
+
"classes": {
|
|
2078
|
+
"sdwan:index/transportIpv4AclFeature:TransportIpv4AclFeature": "TransportIpv4AclFeature"
|
|
2079
|
+
}
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
"pkg": "sdwan",
|
|
2083
|
+
"mod": "index/transportIpv6AclFeature",
|
|
2084
|
+
"fqn": "pulumi_sdwan",
|
|
2085
|
+
"classes": {
|
|
2086
|
+
"sdwan:index/transportIpv6AclFeature:TransportIpv6AclFeature": "TransportIpv6AclFeature"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
1532
2089
|
{
|
|
1533
2090
|
"pkg": "sdwan",
|
|
1534
2091
|
"mod": "index/transportIpv6TrackerFeature",
|
|
@@ -1601,6 +2158,14 @@ _utilities.register(
|
|
|
1601
2158
|
"sdwan:index/transportRoutingOspfv3Ipv6Feature:TransportRoutingOspfv3Ipv6Feature": "TransportRoutingOspfv3Ipv6Feature"
|
|
1602
2159
|
}
|
|
1603
2160
|
},
|
|
2161
|
+
{
|
|
2162
|
+
"pkg": "sdwan",
|
|
2163
|
+
"mod": "index/transportT1E1ControllerFeature",
|
|
2164
|
+
"fqn": "pulumi_sdwan",
|
|
2165
|
+
"classes": {
|
|
2166
|
+
"sdwan:index/transportT1E1ControllerFeature:TransportT1E1ControllerFeature": "TransportT1E1ControllerFeature"
|
|
2167
|
+
}
|
|
2168
|
+
},
|
|
1604
2169
|
{
|
|
1605
2170
|
"pkg": "sdwan",
|
|
1606
2171
|
"mod": "index/transportTrackerFeature",
|
|
@@ -1625,6 +2190,38 @@ _utilities.register(
|
|
|
1625
2190
|
"sdwan:index/transportWanVpnFeature:TransportWanVpnFeature": "TransportWanVpnFeature"
|
|
1626
2191
|
}
|
|
1627
2192
|
},
|
|
2193
|
+
{
|
|
2194
|
+
"pkg": "sdwan",
|
|
2195
|
+
"mod": "index/transportWanVpnFeatureAssociateRoutingBgpFeature",
|
|
2196
|
+
"fqn": "pulumi_sdwan",
|
|
2197
|
+
"classes": {
|
|
2198
|
+
"sdwan:index/transportWanVpnFeatureAssociateRoutingBgpFeature:TransportWanVpnFeatureAssociateRoutingBgpFeature": "TransportWanVpnFeatureAssociateRoutingBgpFeature"
|
|
2199
|
+
}
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
"pkg": "sdwan",
|
|
2203
|
+
"mod": "index/transportWanVpnFeatureAssociateRoutingOspfFeature",
|
|
2204
|
+
"fqn": "pulumi_sdwan",
|
|
2205
|
+
"classes": {
|
|
2206
|
+
"sdwan:index/transportWanVpnFeatureAssociateRoutingOspfFeature:TransportWanVpnFeatureAssociateRoutingOspfFeature": "TransportWanVpnFeatureAssociateRoutingOspfFeature"
|
|
2207
|
+
}
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
"pkg": "sdwan",
|
|
2211
|
+
"mod": "index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature",
|
|
2212
|
+
"fqn": "pulumi_sdwan",
|
|
2213
|
+
"classes": {
|
|
2214
|
+
"sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature": "TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature"
|
|
2215
|
+
}
|
|
2216
|
+
},
|
|
2217
|
+
{
|
|
2218
|
+
"pkg": "sdwan",
|
|
2219
|
+
"mod": "index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature",
|
|
2220
|
+
"fqn": "pulumi_sdwan",
|
|
2221
|
+
"classes": {
|
|
2222
|
+
"sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature": "TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature"
|
|
2223
|
+
}
|
|
2224
|
+
},
|
|
1628
2225
|
{
|
|
1629
2226
|
"pkg": "sdwan",
|
|
1630
2227
|
"mod": "index/transportWanVpnInterfaceCellularFeature",
|
|
@@ -1633,6 +2230,22 @@ _utilities.register(
|
|
|
1633
2230
|
"sdwan:index/transportWanVpnInterfaceCellularFeature:TransportWanVpnInterfaceCellularFeature": "TransportWanVpnInterfaceCellularFeature"
|
|
1634
2231
|
}
|
|
1635
2232
|
},
|
|
2233
|
+
{
|
|
2234
|
+
"pkg": "sdwan",
|
|
2235
|
+
"mod": "index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature",
|
|
2236
|
+
"fqn": "pulumi_sdwan",
|
|
2237
|
+
"classes": {
|
|
2238
|
+
"sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature": "TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature"
|
|
2239
|
+
}
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"pkg": "sdwan",
|
|
2243
|
+
"mod": "index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature",
|
|
2244
|
+
"fqn": "pulumi_sdwan",
|
|
2245
|
+
"classes": {
|
|
2246
|
+
"sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature": "TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature"
|
|
2247
|
+
}
|
|
2248
|
+
},
|
|
1636
2249
|
{
|
|
1637
2250
|
"pkg": "sdwan",
|
|
1638
2251
|
"mod": "index/transportWanVpnInterfaceEthernetFeature",
|
|
@@ -1641,6 +2254,38 @@ _utilities.register(
|
|
|
1641
2254
|
"sdwan:index/transportWanVpnInterfaceEthernetFeature:TransportWanVpnInterfaceEthernetFeature": "TransportWanVpnInterfaceEthernetFeature"
|
|
1642
2255
|
}
|
|
1643
2256
|
},
|
|
2257
|
+
{
|
|
2258
|
+
"pkg": "sdwan",
|
|
2259
|
+
"mod": "index/transportWanVpnInterfaceEthernetFeatureAssociateIpv6TrackerFeature",
|
|
2260
|
+
"fqn": "pulumi_sdwan",
|
|
2261
|
+
"classes": {
|
|
2262
|
+
"sdwan:index/transportWanVpnInterfaceEthernetFeatureAssociateIpv6TrackerFeature:TransportWanVpnInterfaceEthernetFeatureAssociateIpv6TrackerFeature": "TransportWanVpnInterfaceEthernetFeatureAssociateIpv6TrackerFeature"
|
|
2263
|
+
}
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"pkg": "sdwan",
|
|
2267
|
+
"mod": "index/transportWanVpnInterfaceEthernetFeatureAssociateIpv6TrackerGroupFeature",
|
|
2268
|
+
"fqn": "pulumi_sdwan",
|
|
2269
|
+
"classes": {
|
|
2270
|
+
"sdwan:index/transportWanVpnInterfaceEthernetFeatureAssociateIpv6TrackerGroupFeature:TransportWanVpnInterfaceEthernetFeatureAssociateIpv6TrackerGroupFeature": "TransportWanVpnInterfaceEthernetFeatureAssociateIpv6TrackerGroupFeature"
|
|
2271
|
+
}
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"pkg": "sdwan",
|
|
2275
|
+
"mod": "index/transportWanVpnInterfaceEthernetFeatureAssociateTrackerFeature",
|
|
2276
|
+
"fqn": "pulumi_sdwan",
|
|
2277
|
+
"classes": {
|
|
2278
|
+
"sdwan:index/transportWanVpnInterfaceEthernetFeatureAssociateTrackerFeature:TransportWanVpnInterfaceEthernetFeatureAssociateTrackerFeature": "TransportWanVpnInterfaceEthernetFeatureAssociateTrackerFeature"
|
|
2279
|
+
}
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
"pkg": "sdwan",
|
|
2283
|
+
"mod": "index/transportWanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature",
|
|
2284
|
+
"fqn": "pulumi_sdwan",
|
|
2285
|
+
"classes": {
|
|
2286
|
+
"sdwan:index/transportWanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature": "TransportWanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature"
|
|
2287
|
+
}
|
|
2288
|
+
},
|
|
1644
2289
|
{
|
|
1645
2290
|
"pkg": "sdwan",
|
|
1646
2291
|
"mod": "index/transportWanVpnInterfaceGreFeature",
|
|
@@ -1649,6 +2294,14 @@ _utilities.register(
|
|
|
1649
2294
|
"sdwan:index/transportWanVpnInterfaceGreFeature:TransportWanVpnInterfaceGreFeature": "TransportWanVpnInterfaceGreFeature"
|
|
1650
2295
|
}
|
|
1651
2296
|
},
|
|
2297
|
+
{
|
|
2298
|
+
"pkg": "sdwan",
|
|
2299
|
+
"mod": "index/transportWanVpnInterfaceGreFeatureAssociateTrackerFeature",
|
|
2300
|
+
"fqn": "pulumi_sdwan",
|
|
2301
|
+
"classes": {
|
|
2302
|
+
"sdwan:index/transportWanVpnInterfaceGreFeatureAssociateTrackerFeature:TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature": "TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature"
|
|
2303
|
+
}
|
|
2304
|
+
},
|
|
1652
2305
|
{
|
|
1653
2306
|
"pkg": "sdwan",
|
|
1654
2307
|
"mod": "index/transportWanVpnInterfaceIpsecFeature",
|
|
@@ -1657,6 +2310,14 @@ _utilities.register(
|
|
|
1657
2310
|
"sdwan:index/transportWanVpnInterfaceIpsecFeature:TransportWanVpnInterfaceIpsecFeature": "TransportWanVpnInterfaceIpsecFeature"
|
|
1658
2311
|
}
|
|
1659
2312
|
},
|
|
2313
|
+
{
|
|
2314
|
+
"pkg": "sdwan",
|
|
2315
|
+
"mod": "index/transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature",
|
|
2316
|
+
"fqn": "pulumi_sdwan",
|
|
2317
|
+
"classes": {
|
|
2318
|
+
"sdwan:index/transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature:TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature": "TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature"
|
|
2319
|
+
}
|
|
2320
|
+
},
|
|
1660
2321
|
{
|
|
1661
2322
|
"pkg": "sdwan",
|
|
1662
2323
|
"mod": "index/transportWanVpnInterfaceT1E1SerialFeature",
|