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
|
@@ -1,8 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -27,7 +27,19 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getTransportWanVpnInterfaceEthernetFeature.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, arp_timeout=None, arp_timeout_variable=None, arps=None, auto_detect_bandwidth=None, auto_detect_bandwidth_variable=None, autonegotiate=None, autonegotiate_variable=None, bandwidth_downstream=None, bandwidth_downstream_variable=None, bandwidth_upstream=None, bandwidth_upstream_variable=None, block_non_source_ip=None, block_non_source_ip_variable=None, description=None, duplex=None, duplex_variable=None, enable_dhcpv6=None, feature_profile_id=None, gre_tunnel_source_ip=None, gre_tunnel_source_ip_variable=None, icmp_redirect_disable=None, icmp_redirect_disable_variable=None, id=None, interface_description=None, interface_description_variable=None, interface_mtu=None, interface_mtu_variable=None, interface_name=None, interface_name_variable=None, ip_directed_broadcast=None, ip_directed_broadcast_variable=None, ip_mtu=None, ip_mtu_variable=None, iperf_server=None, iperf_server_variable=None, ipv4_address=None, ipv4_address_variable=None, ipv4_dhcp_distance=None, ipv4_dhcp_distance_variable=None, ipv4_dhcp_helper_variable=None, ipv4_dhcp_helpers=None, ipv4_secondary_addresses=None, ipv4_subnet_mask=None, ipv4_subnet_mask_variable=None, ipv6_address=None, ipv6_address_variable=None, ipv6_dhcp_secondary_addresses=None, ipv6_secondary_addresses=None, load_interval=None, load_interval_variable=None, mac_address=None, mac_address_variable=None, media_type=None, media_type_variable=None, name=None, nat64=None, nat66=None, nat_ipv4=None, nat_ipv4_variable=None, nat_ipv6=None, nat_ipv6_variable=None, nat_loopback=None, nat_loopback_variable=None, nat_overload=None, nat_overload_variable=None, nat_prefix_length=None, nat_prefix_length_variable=None, nat_range_end=None, nat_range_end_variable=None, nat_range_start=None, nat_range_start_variable=None, nat_tcp_timeout=None, nat_tcp_timeout_variable=None, nat_type=None, nat_type_variable=None, nat_udp_timeout=None, nat_udp_timeout_variable=None, new_static_nats=None, per_tunnel_qos=None, per_tunnel_qos_variable=None, qos_adaptive=None, qos_adaptive_bandwidth_downstream=None, qos_adaptive_bandwidth_upstream=None, qos_adaptive_default_downstream=None, qos_adaptive_default_downstream_variable=None, qos_adaptive_default_upstream=None, qos_adaptive_default_upstream_variable=None, qos_adaptive_max_downstream=None, qos_adaptive_max_downstream_variable=None, qos_adaptive_max_upstream=None, qos_adaptive_max_upstream_variable=None, qos_adaptive_min_downstream=None, qos_adaptive_min_downstream_variable=None, qos_adaptive_min_upstream=None, qos_adaptive_min_upstream_variable=None, qos_adaptive_period=None, qos_adaptive_period_variable=None, qos_shaping_rate=None, qos_shaping_rate_variable=None, service_provider=None, service_provider_variable=None, shutdown=None, shutdown_variable=None, speed=None, speed_variable=None, static_nat66s=None, tcp_mss=None, tcp_mss_variable=None, tloc_extension=None, tloc_extension_variable=None, tracker=None, tracker_variable=None, transport_wan_vpn_feature_id=None, tunnel_bandwidth_percent=None, tunnel_bandwidth_percent_variable=None, tunnel_interface=None, tunnel_interface_allow_all=None, tunnel_interface_allow_all_variable=None, tunnel_interface_allow_bfd=None, tunnel_interface_allow_bfd_variable=None, tunnel_interface_allow_bgp=None, tunnel_interface_allow_bgp_variable=None, tunnel_interface_allow_dhcp=None, tunnel_interface_allow_dhcp_variable=None, tunnel_interface_allow_dns=None, tunnel_interface_allow_dns_variable=None, tunnel_interface_allow_https=None, tunnel_interface_allow_https_variable=None, tunnel_interface_allow_icmp=None, tunnel_interface_allow_icmp_variable=None, tunnel_interface_allow_netconf=None, tunnel_interface_allow_netconf_variable=None, tunnel_interface_allow_ntp=None, tunnel_interface_allow_ntp_variable=None, tunnel_interface_allow_ospf=None, tunnel_interface_allow_ospf_variable=None, tunnel_interface_allow_snmp=None, tunnel_interface_allow_snmp_variable=None, tunnel_interface_allow_ssh=None, tunnel_interface_allow_ssh_variable=None, tunnel_interface_allow_stun=None, tunnel_interface_allow_stun_variable=None, tunnel_interface_bind_loopback_tunnel=None, tunnel_interface_bind_loopback_tunnel_variable=None, tunnel_interface_border=None, tunnel_interface_border_variable=None, tunnel_interface_carrier=None, tunnel_interface_carrier_variable=None, tunnel_interface_clear_dont_fragment=None, tunnel_interface_clear_dont_fragment_variable=None, tunnel_interface_color=None, tunnel_interface_color_restrict=None, tunnel_interface_color_restrict_variable=None, tunnel_interface_color_variable=None, tunnel_interface_cts_sgt_propagation=None, tunnel_interface_cts_sgt_propagation_variable=None, tunnel_interface_encapsulations=None, tunnel_interface_exclude_controller_group_list_variable=None, tunnel_interface_exclude_controller_group_lists=None, tunnel_interface_gre_tunnel_destination_ip=None, tunnel_interface_gre_tunnel_destination_ip_variable=None, tunnel_interface_groups=None, tunnel_interface_groups_variable=None, tunnel_interface_hello_interval=None, tunnel_interface_hello_interval_variable=None, tunnel_interface_hello_tolerance=None, tunnel_interface_hello_tolerance_variable=None, tunnel_interface_last_resort_circuit=None, tunnel_interface_last_resort_circuit_variable=None, tunnel_interface_low_bandwidth_link=None, tunnel_interface_low_bandwidth_link_variable=None, tunnel_interface_max_control_connections=None, tunnel_interface_max_control_connections_variable=None, tunnel_interface_nat_refresh_interval=None, tunnel_interface_nat_refresh_interval_variable=None, tunnel_interface_network_broadcast=None, tunnel_interface_network_broadcast_variable=None, tunnel_interface_port_hop=None, tunnel_interface_port_hop_variable=None, tunnel_interface_tunnel_tcp_mss=None, tunnel_interface_tunnel_tcp_mss_variable=None, tunnel_interface_vbond_as_stun_server=None, tunnel_interface_vbond_as_stun_server_variable=None, tunnel_interface_vmanage_connection_preference=None, tunnel_interface_vmanage_connection_preference_variable=None, tunnel_qos_mode=None, tunnel_qos_mode_variable=None, version=None, xconnect=None, xconnect_variable=None):
|
|
30
|
+
def __init__(__self__, acl_ipv4_egress_feature_id=None, acl_ipv4_ingress_feature_id=None, acl_ipv6_egress_feature_id=None, acl_ipv6_ingress_feature_id=None, arp_timeout=None, arp_timeout_variable=None, arps=None, auto_detect_bandwidth=None, auto_detect_bandwidth_variable=None, autonegotiate=None, autonegotiate_variable=None, bandwidth_downstream=None, bandwidth_downstream_variable=None, bandwidth_upstream=None, bandwidth_upstream_variable=None, block_non_source_ip=None, block_non_source_ip_variable=None, description=None, duplex=None, duplex_variable=None, enable_dhcpv6=None, feature_profile_id=None, gre_tunnel_source_ip=None, gre_tunnel_source_ip_variable=None, icmp_redirect_disable=None, icmp_redirect_disable_variable=None, id=None, interface_description=None, interface_description_variable=None, interface_mtu=None, interface_mtu_variable=None, interface_name=None, interface_name_variable=None, ip_directed_broadcast=None, ip_directed_broadcast_variable=None, ip_mtu=None, ip_mtu_variable=None, iperf_server=None, iperf_server_variable=None, ipv4_address=None, ipv4_address_variable=None, ipv4_configuration_type=None, ipv4_dhcp_distance=None, ipv4_dhcp_distance_variable=None, ipv4_dhcp_helper_variable=None, ipv4_dhcp_helpers=None, ipv4_secondary_addresses=None, ipv4_subnet_mask=None, ipv4_subnet_mask_variable=None, ipv6_address=None, ipv6_address_variable=None, ipv6_configuration_type=None, ipv6_dhcp_secondary_addresses=None, ipv6_secondary_addresses=None, load_interval=None, load_interval_variable=None, mac_address=None, mac_address_variable=None, media_type=None, media_type_variable=None, name=None, nat64=None, nat66=None, nat_ipv4=None, nat_ipv4_variable=None, nat_ipv6=None, nat_ipv6_variable=None, nat_loopback=None, nat_loopback_variable=None, nat_overload=None, nat_overload_variable=None, nat_prefix_length=None, nat_prefix_length_variable=None, nat_range_end=None, nat_range_end_variable=None, nat_range_start=None, nat_range_start_variable=None, nat_tcp_timeout=None, nat_tcp_timeout_variable=None, nat_type=None, nat_type_variable=None, nat_udp_timeout=None, nat_udp_timeout_variable=None, new_static_nats=None, per_tunnel_qos=None, per_tunnel_qos_variable=None, qos_adaptive=None, qos_adaptive_bandwidth_downstream=None, qos_adaptive_bandwidth_upstream=None, qos_adaptive_default_downstream=None, qos_adaptive_default_downstream_variable=None, qos_adaptive_default_upstream=None, qos_adaptive_default_upstream_variable=None, qos_adaptive_max_downstream=None, qos_adaptive_max_downstream_variable=None, qos_adaptive_max_upstream=None, qos_adaptive_max_upstream_variable=None, qos_adaptive_min_downstream=None, qos_adaptive_min_downstream_variable=None, qos_adaptive_min_upstream=None, qos_adaptive_min_upstream_variable=None, qos_adaptive_period=None, qos_adaptive_period_variable=None, qos_shaping_rate=None, qos_shaping_rate_variable=None, service_provider=None, service_provider_variable=None, shutdown=None, shutdown_variable=None, speed=None, speed_variable=None, static_nat66s=None, tcp_mss=None, tcp_mss_variable=None, tloc_extension=None, tloc_extension_variable=None, tracker=None, tracker_variable=None, transport_wan_vpn_feature_id=None, tunnel_bandwidth_percent=None, tunnel_bandwidth_percent_variable=None, tunnel_interface=None, tunnel_interface_allow_all=None, tunnel_interface_allow_all_variable=None, tunnel_interface_allow_bfd=None, tunnel_interface_allow_bfd_variable=None, tunnel_interface_allow_bgp=None, tunnel_interface_allow_bgp_variable=None, tunnel_interface_allow_dhcp=None, tunnel_interface_allow_dhcp_variable=None, tunnel_interface_allow_dns=None, tunnel_interface_allow_dns_variable=None, tunnel_interface_allow_https=None, tunnel_interface_allow_https_variable=None, tunnel_interface_allow_icmp=None, tunnel_interface_allow_icmp_variable=None, tunnel_interface_allow_netconf=None, tunnel_interface_allow_netconf_variable=None, tunnel_interface_allow_ntp=None, tunnel_interface_allow_ntp_variable=None, tunnel_interface_allow_ospf=None, tunnel_interface_allow_ospf_variable=None, tunnel_interface_allow_snmp=None, tunnel_interface_allow_snmp_variable=None, tunnel_interface_allow_ssh=None, tunnel_interface_allow_ssh_variable=None, tunnel_interface_allow_stun=None, tunnel_interface_allow_stun_variable=None, tunnel_interface_bind_loopback_tunnel=None, tunnel_interface_bind_loopback_tunnel_variable=None, tunnel_interface_border=None, tunnel_interface_border_variable=None, tunnel_interface_carrier=None, tunnel_interface_carrier_variable=None, tunnel_interface_clear_dont_fragment=None, tunnel_interface_clear_dont_fragment_variable=None, tunnel_interface_color=None, tunnel_interface_color_restrict=None, tunnel_interface_color_restrict_variable=None, tunnel_interface_color_variable=None, tunnel_interface_cts_sgt_propagation=None, tunnel_interface_cts_sgt_propagation_variable=None, tunnel_interface_encapsulations=None, tunnel_interface_exclude_controller_group_list_variable=None, tunnel_interface_exclude_controller_group_lists=None, tunnel_interface_gre_tunnel_destination_ip=None, tunnel_interface_gre_tunnel_destination_ip_variable=None, tunnel_interface_groups=None, tunnel_interface_groups_variable=None, tunnel_interface_hello_interval=None, tunnel_interface_hello_interval_variable=None, tunnel_interface_hello_tolerance=None, tunnel_interface_hello_tolerance_variable=None, tunnel_interface_last_resort_circuit=None, tunnel_interface_last_resort_circuit_variable=None, tunnel_interface_low_bandwidth_link=None, tunnel_interface_low_bandwidth_link_variable=None, tunnel_interface_max_control_connections=None, tunnel_interface_max_control_connections_variable=None, tunnel_interface_nat_refresh_interval=None, tunnel_interface_nat_refresh_interval_variable=None, tunnel_interface_network_broadcast=None, tunnel_interface_network_broadcast_variable=None, tunnel_interface_port_hop=None, tunnel_interface_port_hop_variable=None, tunnel_interface_tunnel_tcp_mss=None, tunnel_interface_tunnel_tcp_mss_variable=None, tunnel_interface_vbond_as_stun_server=None, tunnel_interface_vbond_as_stun_server_variable=None, tunnel_interface_vmanage_connection_preference=None, tunnel_interface_vmanage_connection_preference_variable=None, tunnel_qos_mode=None, tunnel_qos_mode_variable=None, version=None, xconnect=None, xconnect_variable=None):
|
|
31
|
+
if acl_ipv4_egress_feature_id and not isinstance(acl_ipv4_egress_feature_id, str):
|
|
32
|
+
raise TypeError("Expected argument 'acl_ipv4_egress_feature_id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "acl_ipv4_egress_feature_id", acl_ipv4_egress_feature_id)
|
|
34
|
+
if acl_ipv4_ingress_feature_id and not isinstance(acl_ipv4_ingress_feature_id, str):
|
|
35
|
+
raise TypeError("Expected argument 'acl_ipv4_ingress_feature_id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "acl_ipv4_ingress_feature_id", acl_ipv4_ingress_feature_id)
|
|
37
|
+
if acl_ipv6_egress_feature_id and not isinstance(acl_ipv6_egress_feature_id, str):
|
|
38
|
+
raise TypeError("Expected argument 'acl_ipv6_egress_feature_id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "acl_ipv6_egress_feature_id", acl_ipv6_egress_feature_id)
|
|
40
|
+
if acl_ipv6_ingress_feature_id and not isinstance(acl_ipv6_ingress_feature_id, str):
|
|
41
|
+
raise TypeError("Expected argument 'acl_ipv6_ingress_feature_id' to be a str")
|
|
42
|
+
pulumi.set(__self__, "acl_ipv6_ingress_feature_id", acl_ipv6_ingress_feature_id)
|
|
31
43
|
if arp_timeout and not isinstance(arp_timeout, int):
|
|
32
44
|
raise TypeError("Expected argument 'arp_timeout' to be a int")
|
|
33
45
|
pulumi.set(__self__, "arp_timeout", arp_timeout)
|
|
@@ -139,6 +151,9 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
139
151
|
if ipv4_address_variable and not isinstance(ipv4_address_variable, str):
|
|
140
152
|
raise TypeError("Expected argument 'ipv4_address_variable' to be a str")
|
|
141
153
|
pulumi.set(__self__, "ipv4_address_variable", ipv4_address_variable)
|
|
154
|
+
if ipv4_configuration_type and not isinstance(ipv4_configuration_type, str):
|
|
155
|
+
raise TypeError("Expected argument 'ipv4_configuration_type' to be a str")
|
|
156
|
+
pulumi.set(__self__, "ipv4_configuration_type", ipv4_configuration_type)
|
|
142
157
|
if ipv4_dhcp_distance and not isinstance(ipv4_dhcp_distance, int):
|
|
143
158
|
raise TypeError("Expected argument 'ipv4_dhcp_distance' to be a int")
|
|
144
159
|
pulumi.set(__self__, "ipv4_dhcp_distance", ipv4_dhcp_distance)
|
|
@@ -166,6 +181,9 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
166
181
|
if ipv6_address_variable and not isinstance(ipv6_address_variable, str):
|
|
167
182
|
raise TypeError("Expected argument 'ipv6_address_variable' to be a str")
|
|
168
183
|
pulumi.set(__self__, "ipv6_address_variable", ipv6_address_variable)
|
|
184
|
+
if ipv6_configuration_type and not isinstance(ipv6_configuration_type, str):
|
|
185
|
+
raise TypeError("Expected argument 'ipv6_configuration_type' to be a str")
|
|
186
|
+
pulumi.set(__self__, "ipv6_configuration_type", ipv6_configuration_type)
|
|
169
187
|
if ipv6_dhcp_secondary_addresses and not isinstance(ipv6_dhcp_secondary_addresses, list):
|
|
170
188
|
raise TypeError("Expected argument 'ipv6_dhcp_secondary_addresses' to be a list")
|
|
171
189
|
pulumi.set(__self__, "ipv6_dhcp_secondary_addresses", ipv6_dhcp_secondary_addresses)
|
|
@@ -599,23 +617,43 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
599
617
|
raise TypeError("Expected argument 'xconnect_variable' to be a str")
|
|
600
618
|
pulumi.set(__self__, "xconnect_variable", xconnect_variable)
|
|
601
619
|
|
|
602
|
-
@property
|
|
620
|
+
@_builtins.property
|
|
621
|
+
@pulumi.getter(name="aclIpv4EgressFeatureId")
|
|
622
|
+
def acl_ipv4_egress_feature_id(self) -> _builtins.str:
|
|
623
|
+
return pulumi.get(self, "acl_ipv4_egress_feature_id")
|
|
624
|
+
|
|
625
|
+
@_builtins.property
|
|
626
|
+
@pulumi.getter(name="aclIpv4IngressFeatureId")
|
|
627
|
+
def acl_ipv4_ingress_feature_id(self) -> _builtins.str:
|
|
628
|
+
return pulumi.get(self, "acl_ipv4_ingress_feature_id")
|
|
629
|
+
|
|
630
|
+
@_builtins.property
|
|
631
|
+
@pulumi.getter(name="aclIpv6EgressFeatureId")
|
|
632
|
+
def acl_ipv6_egress_feature_id(self) -> _builtins.str:
|
|
633
|
+
return pulumi.get(self, "acl_ipv6_egress_feature_id")
|
|
634
|
+
|
|
635
|
+
@_builtins.property
|
|
636
|
+
@pulumi.getter(name="aclIpv6IngressFeatureId")
|
|
637
|
+
def acl_ipv6_ingress_feature_id(self) -> _builtins.str:
|
|
638
|
+
return pulumi.get(self, "acl_ipv6_ingress_feature_id")
|
|
639
|
+
|
|
640
|
+
@_builtins.property
|
|
603
641
|
@pulumi.getter(name="arpTimeout")
|
|
604
|
-
def arp_timeout(self) -> int:
|
|
642
|
+
def arp_timeout(self) -> _builtins.int:
|
|
605
643
|
"""
|
|
606
644
|
Timeout value for dynamically learned ARP entries, \\n\\n seconds
|
|
607
645
|
"""
|
|
608
646
|
return pulumi.get(self, "arp_timeout")
|
|
609
647
|
|
|
610
|
-
@property
|
|
648
|
+
@_builtins.property
|
|
611
649
|
@pulumi.getter(name="arpTimeoutVariable")
|
|
612
|
-
def arp_timeout_variable(self) -> str:
|
|
650
|
+
def arp_timeout_variable(self) -> _builtins.str:
|
|
613
651
|
"""
|
|
614
652
|
Variable name
|
|
615
653
|
"""
|
|
616
654
|
return pulumi.get(self, "arp_timeout_variable")
|
|
617
655
|
|
|
618
|
-
@property
|
|
656
|
+
@_builtins.property
|
|
619
657
|
@pulumi.getter
|
|
620
658
|
def arps(self) -> Sequence['outputs.GetTransportWanVpnInterfaceEthernetFeatureArpResult']:
|
|
621
659
|
"""
|
|
@@ -623,305 +661,313 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
623
661
|
"""
|
|
624
662
|
return pulumi.get(self, "arps")
|
|
625
663
|
|
|
626
|
-
@property
|
|
664
|
+
@_builtins.property
|
|
627
665
|
@pulumi.getter(name="autoDetectBandwidth")
|
|
628
|
-
def auto_detect_bandwidth(self) -> bool:
|
|
666
|
+
def auto_detect_bandwidth(self) -> _builtins.bool:
|
|
629
667
|
"""
|
|
630
668
|
Interface auto detect bandwidth
|
|
631
669
|
"""
|
|
632
670
|
return pulumi.get(self, "auto_detect_bandwidth")
|
|
633
671
|
|
|
634
|
-
@property
|
|
672
|
+
@_builtins.property
|
|
635
673
|
@pulumi.getter(name="autoDetectBandwidthVariable")
|
|
636
|
-
def auto_detect_bandwidth_variable(self) -> str:
|
|
674
|
+
def auto_detect_bandwidth_variable(self) -> _builtins.str:
|
|
637
675
|
"""
|
|
638
676
|
Variable name
|
|
639
677
|
"""
|
|
640
678
|
return pulumi.get(self, "auto_detect_bandwidth_variable")
|
|
641
679
|
|
|
642
|
-
@property
|
|
680
|
+
@_builtins.property
|
|
643
681
|
@pulumi.getter
|
|
644
|
-
def autonegotiate(self) -> bool:
|
|
682
|
+
def autonegotiate(self) -> _builtins.bool:
|
|
645
683
|
"""
|
|
646
684
|
Link autonegotiation
|
|
647
685
|
"""
|
|
648
686
|
return pulumi.get(self, "autonegotiate")
|
|
649
687
|
|
|
650
|
-
@property
|
|
688
|
+
@_builtins.property
|
|
651
689
|
@pulumi.getter(name="autonegotiateVariable")
|
|
652
|
-
def autonegotiate_variable(self) -> str:
|
|
690
|
+
def autonegotiate_variable(self) -> _builtins.str:
|
|
653
691
|
"""
|
|
654
692
|
Variable name
|
|
655
693
|
"""
|
|
656
694
|
return pulumi.get(self, "autonegotiate_variable")
|
|
657
695
|
|
|
658
|
-
@property
|
|
696
|
+
@_builtins.property
|
|
659
697
|
@pulumi.getter(name="bandwidthDownstream")
|
|
660
|
-
def bandwidth_downstream(self) -> int:
|
|
698
|
+
def bandwidth_downstream(self) -> _builtins.int:
|
|
661
699
|
"""
|
|
662
700
|
Interface downstream bandwidth capacity, in kbps
|
|
663
701
|
"""
|
|
664
702
|
return pulumi.get(self, "bandwidth_downstream")
|
|
665
703
|
|
|
666
|
-
@property
|
|
704
|
+
@_builtins.property
|
|
667
705
|
@pulumi.getter(name="bandwidthDownstreamVariable")
|
|
668
|
-
def bandwidth_downstream_variable(self) -> str:
|
|
706
|
+
def bandwidth_downstream_variable(self) -> _builtins.str:
|
|
669
707
|
"""
|
|
670
708
|
Variable name
|
|
671
709
|
"""
|
|
672
710
|
return pulumi.get(self, "bandwidth_downstream_variable")
|
|
673
711
|
|
|
674
|
-
@property
|
|
712
|
+
@_builtins.property
|
|
675
713
|
@pulumi.getter(name="bandwidthUpstream")
|
|
676
|
-
def bandwidth_upstream(self) -> int:
|
|
714
|
+
def bandwidth_upstream(self) -> _builtins.int:
|
|
677
715
|
"""
|
|
678
716
|
Interface upstream bandwidth capacity, in kbps
|
|
679
717
|
"""
|
|
680
718
|
return pulumi.get(self, "bandwidth_upstream")
|
|
681
719
|
|
|
682
|
-
@property
|
|
720
|
+
@_builtins.property
|
|
683
721
|
@pulumi.getter(name="bandwidthUpstreamVariable")
|
|
684
|
-
def bandwidth_upstream_variable(self) -> str:
|
|
722
|
+
def bandwidth_upstream_variable(self) -> _builtins.str:
|
|
685
723
|
"""
|
|
686
724
|
Variable name
|
|
687
725
|
"""
|
|
688
726
|
return pulumi.get(self, "bandwidth_upstream_variable")
|
|
689
727
|
|
|
690
|
-
@property
|
|
728
|
+
@_builtins.property
|
|
691
729
|
@pulumi.getter(name="blockNonSourceIp")
|
|
692
|
-
def block_non_source_ip(self) -> bool:
|
|
730
|
+
def block_non_source_ip(self) -> _builtins.bool:
|
|
693
731
|
"""
|
|
694
732
|
Block packets originating from IP address that is not from this source
|
|
695
733
|
"""
|
|
696
734
|
return pulumi.get(self, "block_non_source_ip")
|
|
697
735
|
|
|
698
|
-
@property
|
|
736
|
+
@_builtins.property
|
|
699
737
|
@pulumi.getter(name="blockNonSourceIpVariable")
|
|
700
|
-
def block_non_source_ip_variable(self) -> str:
|
|
738
|
+
def block_non_source_ip_variable(self) -> _builtins.str:
|
|
701
739
|
"""
|
|
702
740
|
Variable name
|
|
703
741
|
"""
|
|
704
742
|
return pulumi.get(self, "block_non_source_ip_variable")
|
|
705
743
|
|
|
706
|
-
@property
|
|
744
|
+
@_builtins.property
|
|
707
745
|
@pulumi.getter
|
|
708
|
-
def description(self) -> str:
|
|
746
|
+
def description(self) -> _builtins.str:
|
|
709
747
|
"""
|
|
710
748
|
The description of the Feature
|
|
711
749
|
"""
|
|
712
750
|
return pulumi.get(self, "description")
|
|
713
751
|
|
|
714
|
-
@property
|
|
752
|
+
@_builtins.property
|
|
715
753
|
@pulumi.getter
|
|
716
|
-
def duplex(self) -> str:
|
|
754
|
+
def duplex(self) -> _builtins.str:
|
|
717
755
|
"""
|
|
718
756
|
Duplex mode
|
|
719
757
|
"""
|
|
720
758
|
return pulumi.get(self, "duplex")
|
|
721
759
|
|
|
722
|
-
@property
|
|
760
|
+
@_builtins.property
|
|
723
761
|
@pulumi.getter(name="duplexVariable")
|
|
724
|
-
def duplex_variable(self) -> str:
|
|
762
|
+
def duplex_variable(self) -> _builtins.str:
|
|
725
763
|
"""
|
|
726
764
|
Variable name
|
|
727
765
|
"""
|
|
728
766
|
return pulumi.get(self, "duplex_variable")
|
|
729
767
|
|
|
730
|
-
@property
|
|
768
|
+
@_builtins.property
|
|
731
769
|
@pulumi.getter(name="enableDhcpv6")
|
|
732
|
-
def enable_dhcpv6(self) -> bool:
|
|
770
|
+
def enable_dhcpv6(self) -> _builtins.bool:
|
|
733
771
|
"""
|
|
734
772
|
Enable DHCPv6
|
|
735
773
|
"""
|
|
736
774
|
return pulumi.get(self, "enable_dhcpv6")
|
|
737
775
|
|
|
738
|
-
@property
|
|
776
|
+
@_builtins.property
|
|
739
777
|
@pulumi.getter(name="featureProfileId")
|
|
740
|
-
def feature_profile_id(self) -> str:
|
|
778
|
+
def feature_profile_id(self) -> _builtins.str:
|
|
741
779
|
"""
|
|
742
780
|
Feature Profile ID
|
|
743
781
|
"""
|
|
744
782
|
return pulumi.get(self, "feature_profile_id")
|
|
745
783
|
|
|
746
|
-
@property
|
|
784
|
+
@_builtins.property
|
|
747
785
|
@pulumi.getter(name="greTunnelSourceIp")
|
|
748
|
-
def gre_tunnel_source_ip(self) -> str:
|
|
786
|
+
def gre_tunnel_source_ip(self) -> _builtins.str:
|
|
749
787
|
"""
|
|
750
788
|
GRE tunnel source IP
|
|
751
789
|
"""
|
|
752
790
|
return pulumi.get(self, "gre_tunnel_source_ip")
|
|
753
791
|
|
|
754
|
-
@property
|
|
792
|
+
@_builtins.property
|
|
755
793
|
@pulumi.getter(name="greTunnelSourceIpVariable")
|
|
756
|
-
def gre_tunnel_source_ip_variable(self) -> str:
|
|
794
|
+
def gre_tunnel_source_ip_variable(self) -> _builtins.str:
|
|
757
795
|
"""
|
|
758
796
|
Variable name
|
|
759
797
|
"""
|
|
760
798
|
return pulumi.get(self, "gre_tunnel_source_ip_variable")
|
|
761
799
|
|
|
762
|
-
@property
|
|
800
|
+
@_builtins.property
|
|
763
801
|
@pulumi.getter(name="icmpRedirectDisable")
|
|
764
|
-
def icmp_redirect_disable(self) -> bool:
|
|
802
|
+
def icmp_redirect_disable(self) -> _builtins.bool:
|
|
765
803
|
"""
|
|
766
804
|
ICMP/ICMPv6 Redirect Disable
|
|
767
805
|
"""
|
|
768
806
|
return pulumi.get(self, "icmp_redirect_disable")
|
|
769
807
|
|
|
770
|
-
@property
|
|
808
|
+
@_builtins.property
|
|
771
809
|
@pulumi.getter(name="icmpRedirectDisableVariable")
|
|
772
|
-
def icmp_redirect_disable_variable(self) -> str:
|
|
810
|
+
def icmp_redirect_disable_variable(self) -> _builtins.str:
|
|
773
811
|
"""
|
|
774
812
|
Variable name
|
|
775
813
|
"""
|
|
776
814
|
return pulumi.get(self, "icmp_redirect_disable_variable")
|
|
777
815
|
|
|
778
|
-
@property
|
|
816
|
+
@_builtins.property
|
|
779
817
|
@pulumi.getter
|
|
780
|
-
def id(self) -> str:
|
|
818
|
+
def id(self) -> _builtins.str:
|
|
781
819
|
"""
|
|
782
820
|
The id of the Feature
|
|
783
821
|
"""
|
|
784
822
|
return pulumi.get(self, "id")
|
|
785
823
|
|
|
786
|
-
@property
|
|
824
|
+
@_builtins.property
|
|
787
825
|
@pulumi.getter(name="interfaceDescription")
|
|
788
|
-
def interface_description(self) -> str:
|
|
826
|
+
def interface_description(self) -> _builtins.str:
|
|
789
827
|
return pulumi.get(self, "interface_description")
|
|
790
828
|
|
|
791
|
-
@property
|
|
829
|
+
@_builtins.property
|
|
792
830
|
@pulumi.getter(name="interfaceDescriptionVariable")
|
|
793
|
-
def interface_description_variable(self) -> str:
|
|
831
|
+
def interface_description_variable(self) -> _builtins.str:
|
|
794
832
|
"""
|
|
795
833
|
Variable name
|
|
796
834
|
"""
|
|
797
835
|
return pulumi.get(self, "interface_description_variable")
|
|
798
836
|
|
|
799
|
-
@property
|
|
837
|
+
@_builtins.property
|
|
800
838
|
@pulumi.getter(name="interfaceMtu")
|
|
801
|
-
def interface_mtu(self) -> int:
|
|
839
|
+
def interface_mtu(self) -> _builtins.int:
|
|
802
840
|
"""
|
|
803
841
|
Interface MTU GigabitEthernet0 \\n\\n, Other GigabitEthernet \\n\\n in bytes
|
|
804
842
|
"""
|
|
805
843
|
return pulumi.get(self, "interface_mtu")
|
|
806
844
|
|
|
807
|
-
@property
|
|
845
|
+
@_builtins.property
|
|
808
846
|
@pulumi.getter(name="interfaceMtuVariable")
|
|
809
|
-
def interface_mtu_variable(self) -> str:
|
|
847
|
+
def interface_mtu_variable(self) -> _builtins.str:
|
|
810
848
|
"""
|
|
811
849
|
Variable name
|
|
812
850
|
"""
|
|
813
851
|
return pulumi.get(self, "interface_mtu_variable")
|
|
814
852
|
|
|
815
|
-
@property
|
|
853
|
+
@_builtins.property
|
|
816
854
|
@pulumi.getter(name="interfaceName")
|
|
817
|
-
def interface_name(self) -> str:
|
|
855
|
+
def interface_name(self) -> _builtins.str:
|
|
818
856
|
return pulumi.get(self, "interface_name")
|
|
819
857
|
|
|
820
|
-
@property
|
|
858
|
+
@_builtins.property
|
|
821
859
|
@pulumi.getter(name="interfaceNameVariable")
|
|
822
|
-
def interface_name_variable(self) -> str:
|
|
860
|
+
def interface_name_variable(self) -> _builtins.str:
|
|
823
861
|
"""
|
|
824
862
|
Variable name
|
|
825
863
|
"""
|
|
826
864
|
return pulumi.get(self, "interface_name_variable")
|
|
827
865
|
|
|
828
|
-
@property
|
|
866
|
+
@_builtins.property
|
|
829
867
|
@pulumi.getter(name="ipDirectedBroadcast")
|
|
830
|
-
def ip_directed_broadcast(self) -> bool:
|
|
868
|
+
def ip_directed_broadcast(self) -> _builtins.bool:
|
|
831
869
|
"""
|
|
832
870
|
IP Directed-Broadcast
|
|
833
871
|
"""
|
|
834
872
|
return pulumi.get(self, "ip_directed_broadcast")
|
|
835
873
|
|
|
836
|
-
@property
|
|
874
|
+
@_builtins.property
|
|
837
875
|
@pulumi.getter(name="ipDirectedBroadcastVariable")
|
|
838
|
-
def ip_directed_broadcast_variable(self) -> str:
|
|
876
|
+
def ip_directed_broadcast_variable(self) -> _builtins.str:
|
|
839
877
|
"""
|
|
840
878
|
Variable name
|
|
841
879
|
"""
|
|
842
880
|
return pulumi.get(self, "ip_directed_broadcast_variable")
|
|
843
881
|
|
|
844
|
-
@property
|
|
882
|
+
@_builtins.property
|
|
845
883
|
@pulumi.getter(name="ipMtu")
|
|
846
|
-
def ip_mtu(self) -> int:
|
|
884
|
+
def ip_mtu(self) -> _builtins.int:
|
|
847
885
|
"""
|
|
848
886
|
IP MTU for GigabitEthernet main \\n\\n, GigabitEthernet subinterface \\n\\n, Other Interfaces \\n\\n in bytes
|
|
849
887
|
"""
|
|
850
888
|
return pulumi.get(self, "ip_mtu")
|
|
851
889
|
|
|
852
|
-
@property
|
|
890
|
+
@_builtins.property
|
|
853
891
|
@pulumi.getter(name="ipMtuVariable")
|
|
854
|
-
def ip_mtu_variable(self) -> str:
|
|
892
|
+
def ip_mtu_variable(self) -> _builtins.str:
|
|
855
893
|
"""
|
|
856
894
|
Variable name
|
|
857
895
|
"""
|
|
858
896
|
return pulumi.get(self, "ip_mtu_variable")
|
|
859
897
|
|
|
860
|
-
@property
|
|
898
|
+
@_builtins.property
|
|
861
899
|
@pulumi.getter(name="iperfServer")
|
|
862
|
-
def iperf_server(self) -> str:
|
|
900
|
+
def iperf_server(self) -> _builtins.str:
|
|
863
901
|
"""
|
|
864
902
|
Iperf server for auto bandwidth detect
|
|
865
903
|
"""
|
|
866
904
|
return pulumi.get(self, "iperf_server")
|
|
867
905
|
|
|
868
|
-
@property
|
|
906
|
+
@_builtins.property
|
|
869
907
|
@pulumi.getter(name="iperfServerVariable")
|
|
870
|
-
def iperf_server_variable(self) -> str:
|
|
908
|
+
def iperf_server_variable(self) -> _builtins.str:
|
|
871
909
|
"""
|
|
872
910
|
Variable name
|
|
873
911
|
"""
|
|
874
912
|
return pulumi.get(self, "iperf_server_variable")
|
|
875
913
|
|
|
876
|
-
@property
|
|
914
|
+
@_builtins.property
|
|
877
915
|
@pulumi.getter(name="ipv4Address")
|
|
878
|
-
def ipv4_address(self) -> str:
|
|
916
|
+
def ipv4_address(self) -> _builtins.str:
|
|
879
917
|
"""
|
|
880
918
|
IP Address
|
|
881
919
|
"""
|
|
882
920
|
return pulumi.get(self, "ipv4_address")
|
|
883
921
|
|
|
884
|
-
@property
|
|
922
|
+
@_builtins.property
|
|
885
923
|
@pulumi.getter(name="ipv4AddressVariable")
|
|
886
|
-
def ipv4_address_variable(self) -> str:
|
|
924
|
+
def ipv4_address_variable(self) -> _builtins.str:
|
|
887
925
|
"""
|
|
888
926
|
Variable name
|
|
889
927
|
"""
|
|
890
928
|
return pulumi.get(self, "ipv4_address_variable")
|
|
891
929
|
|
|
892
|
-
@property
|
|
930
|
+
@_builtins.property
|
|
931
|
+
@pulumi.getter(name="ipv4ConfigurationType")
|
|
932
|
+
def ipv4_configuration_type(self) -> _builtins.str:
|
|
933
|
+
"""
|
|
934
|
+
IPv4 Configuration Type
|
|
935
|
+
"""
|
|
936
|
+
return pulumi.get(self, "ipv4_configuration_type")
|
|
937
|
+
|
|
938
|
+
@_builtins.property
|
|
893
939
|
@pulumi.getter(name="ipv4DhcpDistance")
|
|
894
|
-
def ipv4_dhcp_distance(self) -> int:
|
|
940
|
+
def ipv4_dhcp_distance(self) -> _builtins.int:
|
|
895
941
|
"""
|
|
896
942
|
DHCP Distance
|
|
897
943
|
"""
|
|
898
944
|
return pulumi.get(self, "ipv4_dhcp_distance")
|
|
899
945
|
|
|
900
|
-
@property
|
|
946
|
+
@_builtins.property
|
|
901
947
|
@pulumi.getter(name="ipv4DhcpDistanceVariable")
|
|
902
|
-
def ipv4_dhcp_distance_variable(self) -> str:
|
|
948
|
+
def ipv4_dhcp_distance_variable(self) -> _builtins.str:
|
|
903
949
|
"""
|
|
904
950
|
Variable name
|
|
905
951
|
"""
|
|
906
952
|
return pulumi.get(self, "ipv4_dhcp_distance_variable")
|
|
907
953
|
|
|
908
|
-
@property
|
|
954
|
+
@_builtins.property
|
|
909
955
|
@pulumi.getter(name="ipv4DhcpHelperVariable")
|
|
910
|
-
def ipv4_dhcp_helper_variable(self) -> str:
|
|
956
|
+
def ipv4_dhcp_helper_variable(self) -> _builtins.str:
|
|
911
957
|
"""
|
|
912
958
|
Variable name
|
|
913
959
|
"""
|
|
914
960
|
return pulumi.get(self, "ipv4_dhcp_helper_variable")
|
|
915
961
|
|
|
916
|
-
@property
|
|
962
|
+
@_builtins.property
|
|
917
963
|
@pulumi.getter(name="ipv4DhcpHelpers")
|
|
918
|
-
def ipv4_dhcp_helpers(self) -> Sequence[str]:
|
|
964
|
+
def ipv4_dhcp_helpers(self) -> Sequence[_builtins.str]:
|
|
919
965
|
"""
|
|
920
966
|
List of DHCP IPv4 helper addresses (min 1, max 8)
|
|
921
967
|
"""
|
|
922
968
|
return pulumi.get(self, "ipv4_dhcp_helpers")
|
|
923
969
|
|
|
924
|
-
@property
|
|
970
|
+
@_builtins.property
|
|
925
971
|
@pulumi.getter(name="ipv4SecondaryAddresses")
|
|
926
972
|
def ipv4_secondary_addresses(self) -> Sequence['outputs.GetTransportWanVpnInterfaceEthernetFeatureIpv4SecondaryAddressResult']:
|
|
927
973
|
"""
|
|
@@ -929,39 +975,47 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
929
975
|
"""
|
|
930
976
|
return pulumi.get(self, "ipv4_secondary_addresses")
|
|
931
977
|
|
|
932
|
-
@property
|
|
978
|
+
@_builtins.property
|
|
933
979
|
@pulumi.getter(name="ipv4SubnetMask")
|
|
934
|
-
def ipv4_subnet_mask(self) -> str:
|
|
980
|
+
def ipv4_subnet_mask(self) -> _builtins.str:
|
|
935
981
|
"""
|
|
936
982
|
Subnet Mask
|
|
937
983
|
"""
|
|
938
984
|
return pulumi.get(self, "ipv4_subnet_mask")
|
|
939
985
|
|
|
940
|
-
@property
|
|
986
|
+
@_builtins.property
|
|
941
987
|
@pulumi.getter(name="ipv4SubnetMaskVariable")
|
|
942
|
-
def ipv4_subnet_mask_variable(self) -> str:
|
|
988
|
+
def ipv4_subnet_mask_variable(self) -> _builtins.str:
|
|
943
989
|
"""
|
|
944
990
|
Variable name
|
|
945
991
|
"""
|
|
946
992
|
return pulumi.get(self, "ipv4_subnet_mask_variable")
|
|
947
993
|
|
|
948
|
-
@property
|
|
994
|
+
@_builtins.property
|
|
949
995
|
@pulumi.getter(name="ipv6Address")
|
|
950
|
-
def ipv6_address(self) -> str:
|
|
996
|
+
def ipv6_address(self) -> _builtins.str:
|
|
951
997
|
"""
|
|
952
998
|
IPv6 Address Secondary
|
|
953
999
|
"""
|
|
954
1000
|
return pulumi.get(self, "ipv6_address")
|
|
955
1001
|
|
|
956
|
-
@property
|
|
1002
|
+
@_builtins.property
|
|
957
1003
|
@pulumi.getter(name="ipv6AddressVariable")
|
|
958
|
-
def ipv6_address_variable(self) -> str:
|
|
1004
|
+
def ipv6_address_variable(self) -> _builtins.str:
|
|
959
1005
|
"""
|
|
960
1006
|
Variable name
|
|
961
1007
|
"""
|
|
962
1008
|
return pulumi.get(self, "ipv6_address_variable")
|
|
963
1009
|
|
|
964
|
-
@property
|
|
1010
|
+
@_builtins.property
|
|
1011
|
+
@pulumi.getter(name="ipv6ConfigurationType")
|
|
1012
|
+
def ipv6_configuration_type(self) -> _builtins.str:
|
|
1013
|
+
"""
|
|
1014
|
+
IPv6 Configuration Type
|
|
1015
|
+
"""
|
|
1016
|
+
return pulumi.get(self, "ipv6_configuration_type")
|
|
1017
|
+
|
|
1018
|
+
@_builtins.property
|
|
965
1019
|
@pulumi.getter(name="ipv6DhcpSecondaryAddresses")
|
|
966
1020
|
def ipv6_dhcp_secondary_addresses(self) -> Sequence['outputs.GetTransportWanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressResult']:
|
|
967
1021
|
"""
|
|
@@ -969,7 +1023,7 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
969
1023
|
"""
|
|
970
1024
|
return pulumi.get(self, "ipv6_dhcp_secondary_addresses")
|
|
971
1025
|
|
|
972
|
-
@property
|
|
1026
|
+
@_builtins.property
|
|
973
1027
|
@pulumi.getter(name="ipv6SecondaryAddresses")
|
|
974
1028
|
def ipv6_secondary_addresses(self) -> Sequence['outputs.GetTransportWanVpnInterfaceEthernetFeatureIpv6SecondaryAddressResult']:
|
|
975
1029
|
"""
|
|
@@ -977,239 +1031,239 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
977
1031
|
"""
|
|
978
1032
|
return pulumi.get(self, "ipv6_secondary_addresses")
|
|
979
1033
|
|
|
980
|
-
@property
|
|
1034
|
+
@_builtins.property
|
|
981
1035
|
@pulumi.getter(name="loadInterval")
|
|
982
|
-
def load_interval(self) -> int:
|
|
1036
|
+
def load_interval(self) -> _builtins.int:
|
|
983
1037
|
"""
|
|
984
1038
|
Interval for interface load calculation
|
|
985
1039
|
"""
|
|
986
1040
|
return pulumi.get(self, "load_interval")
|
|
987
1041
|
|
|
988
|
-
@property
|
|
1042
|
+
@_builtins.property
|
|
989
1043
|
@pulumi.getter(name="loadIntervalVariable")
|
|
990
|
-
def load_interval_variable(self) -> str:
|
|
1044
|
+
def load_interval_variable(self) -> _builtins.str:
|
|
991
1045
|
"""
|
|
992
1046
|
Variable name
|
|
993
1047
|
"""
|
|
994
1048
|
return pulumi.get(self, "load_interval_variable")
|
|
995
1049
|
|
|
996
|
-
@property
|
|
1050
|
+
@_builtins.property
|
|
997
1051
|
@pulumi.getter(name="macAddress")
|
|
998
|
-
def mac_address(self) -> str:
|
|
1052
|
+
def mac_address(self) -> _builtins.str:
|
|
999
1053
|
"""
|
|
1000
1054
|
MAC Address
|
|
1001
1055
|
"""
|
|
1002
1056
|
return pulumi.get(self, "mac_address")
|
|
1003
1057
|
|
|
1004
|
-
@property
|
|
1058
|
+
@_builtins.property
|
|
1005
1059
|
@pulumi.getter(name="macAddressVariable")
|
|
1006
|
-
def mac_address_variable(self) -> str:
|
|
1060
|
+
def mac_address_variable(self) -> _builtins.str:
|
|
1007
1061
|
"""
|
|
1008
1062
|
Variable name
|
|
1009
1063
|
"""
|
|
1010
1064
|
return pulumi.get(self, "mac_address_variable")
|
|
1011
1065
|
|
|
1012
|
-
@property
|
|
1066
|
+
@_builtins.property
|
|
1013
1067
|
@pulumi.getter(name="mediaType")
|
|
1014
|
-
def media_type(self) -> str:
|
|
1068
|
+
def media_type(self) -> _builtins.str:
|
|
1015
1069
|
"""
|
|
1016
1070
|
Media type
|
|
1017
1071
|
"""
|
|
1018
1072
|
return pulumi.get(self, "media_type")
|
|
1019
1073
|
|
|
1020
|
-
@property
|
|
1074
|
+
@_builtins.property
|
|
1021
1075
|
@pulumi.getter(name="mediaTypeVariable")
|
|
1022
|
-
def media_type_variable(self) -> str:
|
|
1076
|
+
def media_type_variable(self) -> _builtins.str:
|
|
1023
1077
|
"""
|
|
1024
1078
|
Variable name
|
|
1025
1079
|
"""
|
|
1026
1080
|
return pulumi.get(self, "media_type_variable")
|
|
1027
1081
|
|
|
1028
|
-
@property
|
|
1082
|
+
@_builtins.property
|
|
1029
1083
|
@pulumi.getter
|
|
1030
|
-
def name(self) -> str:
|
|
1084
|
+
def name(self) -> _builtins.str:
|
|
1031
1085
|
"""
|
|
1032
1086
|
The name of the Feature
|
|
1033
1087
|
"""
|
|
1034
1088
|
return pulumi.get(self, "name")
|
|
1035
1089
|
|
|
1036
|
-
@property
|
|
1090
|
+
@_builtins.property
|
|
1037
1091
|
@pulumi.getter
|
|
1038
|
-
def nat64(self) -> bool:
|
|
1092
|
+
def nat64(self) -> _builtins.bool:
|
|
1039
1093
|
"""
|
|
1040
1094
|
NAT64 on this interface
|
|
1041
1095
|
"""
|
|
1042
1096
|
return pulumi.get(self, "nat64")
|
|
1043
1097
|
|
|
1044
|
-
@property
|
|
1098
|
+
@_builtins.property
|
|
1045
1099
|
@pulumi.getter
|
|
1046
|
-
def nat66(self) -> bool:
|
|
1100
|
+
def nat66(self) -> _builtins.bool:
|
|
1047
1101
|
"""
|
|
1048
1102
|
NAT66 on this interface
|
|
1049
1103
|
"""
|
|
1050
1104
|
return pulumi.get(self, "nat66")
|
|
1051
1105
|
|
|
1052
|
-
@property
|
|
1106
|
+
@_builtins.property
|
|
1053
1107
|
@pulumi.getter(name="natIpv4")
|
|
1054
|
-
def nat_ipv4(self) -> bool:
|
|
1108
|
+
def nat_ipv4(self) -> _builtins.bool:
|
|
1055
1109
|
"""
|
|
1056
1110
|
enable Network Address Translation on this interface
|
|
1057
1111
|
"""
|
|
1058
1112
|
return pulumi.get(self, "nat_ipv4")
|
|
1059
1113
|
|
|
1060
|
-
@property
|
|
1114
|
+
@_builtins.property
|
|
1061
1115
|
@pulumi.getter(name="natIpv4Variable")
|
|
1062
|
-
def nat_ipv4_variable(self) -> str:
|
|
1116
|
+
def nat_ipv4_variable(self) -> _builtins.str:
|
|
1063
1117
|
"""
|
|
1064
1118
|
Variable name
|
|
1065
1119
|
"""
|
|
1066
1120
|
return pulumi.get(self, "nat_ipv4_variable")
|
|
1067
1121
|
|
|
1068
|
-
@property
|
|
1122
|
+
@_builtins.property
|
|
1069
1123
|
@pulumi.getter(name="natIpv6")
|
|
1070
|
-
def nat_ipv6(self) -> bool:
|
|
1124
|
+
def nat_ipv6(self) -> _builtins.bool:
|
|
1071
1125
|
"""
|
|
1072
1126
|
enable Network Address Translation ipv6 on this interface
|
|
1073
1127
|
"""
|
|
1074
1128
|
return pulumi.get(self, "nat_ipv6")
|
|
1075
1129
|
|
|
1076
|
-
@property
|
|
1130
|
+
@_builtins.property
|
|
1077
1131
|
@pulumi.getter(name="natIpv6Variable")
|
|
1078
|
-
def nat_ipv6_variable(self) -> str:
|
|
1132
|
+
def nat_ipv6_variable(self) -> _builtins.str:
|
|
1079
1133
|
"""
|
|
1080
1134
|
Variable name
|
|
1081
1135
|
"""
|
|
1082
1136
|
return pulumi.get(self, "nat_ipv6_variable")
|
|
1083
1137
|
|
|
1084
|
-
@property
|
|
1138
|
+
@_builtins.property
|
|
1085
1139
|
@pulumi.getter(name="natLoopback")
|
|
1086
|
-
def nat_loopback(self) -> str:
|
|
1140
|
+
def nat_loopback(self) -> _builtins.str:
|
|
1087
1141
|
"""
|
|
1088
1142
|
NAT Inside Source Loopback Interface
|
|
1089
1143
|
"""
|
|
1090
1144
|
return pulumi.get(self, "nat_loopback")
|
|
1091
1145
|
|
|
1092
|
-
@property
|
|
1146
|
+
@_builtins.property
|
|
1093
1147
|
@pulumi.getter(name="natLoopbackVariable")
|
|
1094
|
-
def nat_loopback_variable(self) -> str:
|
|
1148
|
+
def nat_loopback_variable(self) -> _builtins.str:
|
|
1095
1149
|
"""
|
|
1096
1150
|
Variable name
|
|
1097
1151
|
"""
|
|
1098
1152
|
return pulumi.get(self, "nat_loopback_variable")
|
|
1099
1153
|
|
|
1100
|
-
@property
|
|
1154
|
+
@_builtins.property
|
|
1101
1155
|
@pulumi.getter(name="natOverload")
|
|
1102
|
-
def nat_overload(self) -> bool:
|
|
1156
|
+
def nat_overload(self) -> _builtins.bool:
|
|
1103
1157
|
"""
|
|
1104
1158
|
NAT Overload
|
|
1105
1159
|
"""
|
|
1106
1160
|
return pulumi.get(self, "nat_overload")
|
|
1107
1161
|
|
|
1108
|
-
@property
|
|
1162
|
+
@_builtins.property
|
|
1109
1163
|
@pulumi.getter(name="natOverloadVariable")
|
|
1110
|
-
def nat_overload_variable(self) -> str:
|
|
1164
|
+
def nat_overload_variable(self) -> _builtins.str:
|
|
1111
1165
|
"""
|
|
1112
1166
|
Variable name
|
|
1113
1167
|
"""
|
|
1114
1168
|
return pulumi.get(self, "nat_overload_variable")
|
|
1115
1169
|
|
|
1116
|
-
@property
|
|
1170
|
+
@_builtins.property
|
|
1117
1171
|
@pulumi.getter(name="natPrefixLength")
|
|
1118
|
-
def nat_prefix_length(self) -> int:
|
|
1172
|
+
def nat_prefix_length(self) -> _builtins.int:
|
|
1119
1173
|
"""
|
|
1120
1174
|
NAT Pool Prefix Length
|
|
1121
1175
|
"""
|
|
1122
1176
|
return pulumi.get(self, "nat_prefix_length")
|
|
1123
1177
|
|
|
1124
|
-
@property
|
|
1178
|
+
@_builtins.property
|
|
1125
1179
|
@pulumi.getter(name="natPrefixLengthVariable")
|
|
1126
|
-
def nat_prefix_length_variable(self) -> str:
|
|
1180
|
+
def nat_prefix_length_variable(self) -> _builtins.str:
|
|
1127
1181
|
"""
|
|
1128
1182
|
Variable name
|
|
1129
1183
|
"""
|
|
1130
1184
|
return pulumi.get(self, "nat_prefix_length_variable")
|
|
1131
1185
|
|
|
1132
|
-
@property
|
|
1186
|
+
@_builtins.property
|
|
1133
1187
|
@pulumi.getter(name="natRangeEnd")
|
|
1134
|
-
def nat_range_end(self) -> str:
|
|
1188
|
+
def nat_range_end(self) -> _builtins.str:
|
|
1135
1189
|
"""
|
|
1136
1190
|
NAT Pool Range End
|
|
1137
1191
|
"""
|
|
1138
1192
|
return pulumi.get(self, "nat_range_end")
|
|
1139
1193
|
|
|
1140
|
-
@property
|
|
1194
|
+
@_builtins.property
|
|
1141
1195
|
@pulumi.getter(name="natRangeEndVariable")
|
|
1142
|
-
def nat_range_end_variable(self) -> str:
|
|
1196
|
+
def nat_range_end_variable(self) -> _builtins.str:
|
|
1143
1197
|
"""
|
|
1144
1198
|
Variable name
|
|
1145
1199
|
"""
|
|
1146
1200
|
return pulumi.get(self, "nat_range_end_variable")
|
|
1147
1201
|
|
|
1148
|
-
@property
|
|
1202
|
+
@_builtins.property
|
|
1149
1203
|
@pulumi.getter(name="natRangeStart")
|
|
1150
|
-
def nat_range_start(self) -> str:
|
|
1204
|
+
def nat_range_start(self) -> _builtins.str:
|
|
1151
1205
|
"""
|
|
1152
1206
|
NAT Pool Range Start
|
|
1153
1207
|
"""
|
|
1154
1208
|
return pulumi.get(self, "nat_range_start")
|
|
1155
1209
|
|
|
1156
|
-
@property
|
|
1210
|
+
@_builtins.property
|
|
1157
1211
|
@pulumi.getter(name="natRangeStartVariable")
|
|
1158
|
-
def nat_range_start_variable(self) -> str:
|
|
1212
|
+
def nat_range_start_variable(self) -> _builtins.str:
|
|
1159
1213
|
"""
|
|
1160
1214
|
Variable name
|
|
1161
1215
|
"""
|
|
1162
1216
|
return pulumi.get(self, "nat_range_start_variable")
|
|
1163
1217
|
|
|
1164
|
-
@property
|
|
1218
|
+
@_builtins.property
|
|
1165
1219
|
@pulumi.getter(name="natTcpTimeout")
|
|
1166
|
-
def nat_tcp_timeout(self) -> int:
|
|
1220
|
+
def nat_tcp_timeout(self) -> _builtins.int:
|
|
1167
1221
|
"""
|
|
1168
1222
|
Set NAT TCP session timeout, in minutes
|
|
1169
1223
|
"""
|
|
1170
1224
|
return pulumi.get(self, "nat_tcp_timeout")
|
|
1171
1225
|
|
|
1172
|
-
@property
|
|
1226
|
+
@_builtins.property
|
|
1173
1227
|
@pulumi.getter(name="natTcpTimeoutVariable")
|
|
1174
|
-
def nat_tcp_timeout_variable(self) -> str:
|
|
1228
|
+
def nat_tcp_timeout_variable(self) -> _builtins.str:
|
|
1175
1229
|
"""
|
|
1176
1230
|
Variable name
|
|
1177
1231
|
"""
|
|
1178
1232
|
return pulumi.get(self, "nat_tcp_timeout_variable")
|
|
1179
1233
|
|
|
1180
|
-
@property
|
|
1234
|
+
@_builtins.property
|
|
1181
1235
|
@pulumi.getter(name="natType")
|
|
1182
|
-
def nat_type(self) -> str:
|
|
1236
|
+
def nat_type(self) -> _builtins.str:
|
|
1183
1237
|
"""
|
|
1184
1238
|
NAT Type
|
|
1185
1239
|
"""
|
|
1186
1240
|
return pulumi.get(self, "nat_type")
|
|
1187
1241
|
|
|
1188
|
-
@property
|
|
1242
|
+
@_builtins.property
|
|
1189
1243
|
@pulumi.getter(name="natTypeVariable")
|
|
1190
|
-
def nat_type_variable(self) -> str:
|
|
1244
|
+
def nat_type_variable(self) -> _builtins.str:
|
|
1191
1245
|
"""
|
|
1192
1246
|
Variable name
|
|
1193
1247
|
"""
|
|
1194
1248
|
return pulumi.get(self, "nat_type_variable")
|
|
1195
1249
|
|
|
1196
|
-
@property
|
|
1250
|
+
@_builtins.property
|
|
1197
1251
|
@pulumi.getter(name="natUdpTimeout")
|
|
1198
|
-
def nat_udp_timeout(self) -> int:
|
|
1252
|
+
def nat_udp_timeout(self) -> _builtins.int:
|
|
1199
1253
|
"""
|
|
1200
1254
|
Set NAT UDP session timeout, in minutes
|
|
1201
1255
|
"""
|
|
1202
1256
|
return pulumi.get(self, "nat_udp_timeout")
|
|
1203
1257
|
|
|
1204
|
-
@property
|
|
1258
|
+
@_builtins.property
|
|
1205
1259
|
@pulumi.getter(name="natUdpTimeoutVariable")
|
|
1206
|
-
def nat_udp_timeout_variable(self) -> str:
|
|
1260
|
+
def nat_udp_timeout_variable(self) -> _builtins.str:
|
|
1207
1261
|
"""
|
|
1208
1262
|
Variable name
|
|
1209
1263
|
"""
|
|
1210
1264
|
return pulumi.get(self, "nat_udp_timeout_variable")
|
|
1211
1265
|
|
|
1212
|
-
@property
|
|
1266
|
+
@_builtins.property
|
|
1213
1267
|
@pulumi.getter(name="newStaticNats")
|
|
1214
1268
|
def new_static_nats(self) -> Sequence['outputs.GetTransportWanVpnInterfaceEthernetFeatureNewStaticNatResult']:
|
|
1215
1269
|
"""
|
|
@@ -1217,220 +1271,220 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
1217
1271
|
"""
|
|
1218
1272
|
return pulumi.get(self, "new_static_nats")
|
|
1219
1273
|
|
|
1220
|
-
@property
|
|
1274
|
+
@_builtins.property
|
|
1221
1275
|
@pulumi.getter(name="perTunnelQos")
|
|
1222
|
-
def per_tunnel_qos(self) -> bool:
|
|
1276
|
+
def per_tunnel_qos(self) -> _builtins.bool:
|
|
1223
1277
|
"""
|
|
1224
1278
|
Per-tunnel Qos
|
|
1225
1279
|
"""
|
|
1226
1280
|
return pulumi.get(self, "per_tunnel_qos")
|
|
1227
1281
|
|
|
1228
|
-
@property
|
|
1282
|
+
@_builtins.property
|
|
1229
1283
|
@pulumi.getter(name="perTunnelQosVariable")
|
|
1230
|
-
def per_tunnel_qos_variable(self) -> str:
|
|
1284
|
+
def per_tunnel_qos_variable(self) -> _builtins.str:
|
|
1231
1285
|
"""
|
|
1232
1286
|
Variable name
|
|
1233
1287
|
"""
|
|
1234
1288
|
return pulumi.get(self, "per_tunnel_qos_variable")
|
|
1235
1289
|
|
|
1236
|
-
@property
|
|
1290
|
+
@_builtins.property
|
|
1237
1291
|
@pulumi.getter(name="qosAdaptive")
|
|
1238
|
-
def qos_adaptive(self) -> bool:
|
|
1292
|
+
def qos_adaptive(self) -> _builtins.bool:
|
|
1239
1293
|
"""
|
|
1240
1294
|
Adaptive QoS
|
|
1241
1295
|
"""
|
|
1242
1296
|
return pulumi.get(self, "qos_adaptive")
|
|
1243
1297
|
|
|
1244
|
-
@property
|
|
1298
|
+
@_builtins.property
|
|
1245
1299
|
@pulumi.getter(name="qosAdaptiveBandwidthDownstream")
|
|
1246
|
-
def qos_adaptive_bandwidth_downstream(self) -> bool:
|
|
1300
|
+
def qos_adaptive_bandwidth_downstream(self) -> _builtins.bool:
|
|
1247
1301
|
"""
|
|
1248
1302
|
Shaping Rate Downstream
|
|
1249
1303
|
"""
|
|
1250
1304
|
return pulumi.get(self, "qos_adaptive_bandwidth_downstream")
|
|
1251
1305
|
|
|
1252
|
-
@property
|
|
1306
|
+
@_builtins.property
|
|
1253
1307
|
@pulumi.getter(name="qosAdaptiveBandwidthUpstream")
|
|
1254
|
-
def qos_adaptive_bandwidth_upstream(self) -> bool:
|
|
1308
|
+
def qos_adaptive_bandwidth_upstream(self) -> _builtins.bool:
|
|
1255
1309
|
"""
|
|
1256
1310
|
Shaping Rate Upstream
|
|
1257
1311
|
"""
|
|
1258
1312
|
return pulumi.get(self, "qos_adaptive_bandwidth_upstream")
|
|
1259
1313
|
|
|
1260
|
-
@property
|
|
1314
|
+
@_builtins.property
|
|
1261
1315
|
@pulumi.getter(name="qosAdaptiveDefaultDownstream")
|
|
1262
|
-
def qos_adaptive_default_downstream(self) -> int:
|
|
1316
|
+
def qos_adaptive_default_downstream(self) -> _builtins.int:
|
|
1263
1317
|
"""
|
|
1264
1318
|
Adaptive QoS default downstream bandwidth (kbps)
|
|
1265
1319
|
"""
|
|
1266
1320
|
return pulumi.get(self, "qos_adaptive_default_downstream")
|
|
1267
1321
|
|
|
1268
|
-
@property
|
|
1322
|
+
@_builtins.property
|
|
1269
1323
|
@pulumi.getter(name="qosAdaptiveDefaultDownstreamVariable")
|
|
1270
|
-
def qos_adaptive_default_downstream_variable(self) -> str:
|
|
1324
|
+
def qos_adaptive_default_downstream_variable(self) -> _builtins.str:
|
|
1271
1325
|
"""
|
|
1272
1326
|
Variable name
|
|
1273
1327
|
"""
|
|
1274
1328
|
return pulumi.get(self, "qos_adaptive_default_downstream_variable")
|
|
1275
1329
|
|
|
1276
|
-
@property
|
|
1330
|
+
@_builtins.property
|
|
1277
1331
|
@pulumi.getter(name="qosAdaptiveDefaultUpstream")
|
|
1278
|
-
def qos_adaptive_default_upstream(self) -> int:
|
|
1332
|
+
def qos_adaptive_default_upstream(self) -> _builtins.int:
|
|
1279
1333
|
"""
|
|
1280
1334
|
Adaptive QoS default upstream bandwidth (kbps)
|
|
1281
1335
|
"""
|
|
1282
1336
|
return pulumi.get(self, "qos_adaptive_default_upstream")
|
|
1283
1337
|
|
|
1284
|
-
@property
|
|
1338
|
+
@_builtins.property
|
|
1285
1339
|
@pulumi.getter(name="qosAdaptiveDefaultUpstreamVariable")
|
|
1286
|
-
def qos_adaptive_default_upstream_variable(self) -> str:
|
|
1340
|
+
def qos_adaptive_default_upstream_variable(self) -> _builtins.str:
|
|
1287
1341
|
"""
|
|
1288
1342
|
Variable name
|
|
1289
1343
|
"""
|
|
1290
1344
|
return pulumi.get(self, "qos_adaptive_default_upstream_variable")
|
|
1291
1345
|
|
|
1292
|
-
@property
|
|
1346
|
+
@_builtins.property
|
|
1293
1347
|
@pulumi.getter(name="qosAdaptiveMaxDownstream")
|
|
1294
|
-
def qos_adaptive_max_downstream(self) -> int:
|
|
1348
|
+
def qos_adaptive_max_downstream(self) -> _builtins.int:
|
|
1295
1349
|
"""
|
|
1296
1350
|
Downstream max bandwidth limit (kbps)
|
|
1297
1351
|
"""
|
|
1298
1352
|
return pulumi.get(self, "qos_adaptive_max_downstream")
|
|
1299
1353
|
|
|
1300
|
-
@property
|
|
1354
|
+
@_builtins.property
|
|
1301
1355
|
@pulumi.getter(name="qosAdaptiveMaxDownstreamVariable")
|
|
1302
|
-
def qos_adaptive_max_downstream_variable(self) -> str:
|
|
1356
|
+
def qos_adaptive_max_downstream_variable(self) -> _builtins.str:
|
|
1303
1357
|
"""
|
|
1304
1358
|
Variable name
|
|
1305
1359
|
"""
|
|
1306
1360
|
return pulumi.get(self, "qos_adaptive_max_downstream_variable")
|
|
1307
1361
|
|
|
1308
|
-
@property
|
|
1362
|
+
@_builtins.property
|
|
1309
1363
|
@pulumi.getter(name="qosAdaptiveMaxUpstream")
|
|
1310
|
-
def qos_adaptive_max_upstream(self) -> int:
|
|
1364
|
+
def qos_adaptive_max_upstream(self) -> _builtins.int:
|
|
1311
1365
|
"""
|
|
1312
1366
|
Upstream max bandwidth limit (kbps)
|
|
1313
1367
|
"""
|
|
1314
1368
|
return pulumi.get(self, "qos_adaptive_max_upstream")
|
|
1315
1369
|
|
|
1316
|
-
@property
|
|
1370
|
+
@_builtins.property
|
|
1317
1371
|
@pulumi.getter(name="qosAdaptiveMaxUpstreamVariable")
|
|
1318
|
-
def qos_adaptive_max_upstream_variable(self) -> str:
|
|
1372
|
+
def qos_adaptive_max_upstream_variable(self) -> _builtins.str:
|
|
1319
1373
|
"""
|
|
1320
1374
|
Variable name
|
|
1321
1375
|
"""
|
|
1322
1376
|
return pulumi.get(self, "qos_adaptive_max_upstream_variable")
|
|
1323
1377
|
|
|
1324
|
-
@property
|
|
1378
|
+
@_builtins.property
|
|
1325
1379
|
@pulumi.getter(name="qosAdaptiveMinDownstream")
|
|
1326
|
-
def qos_adaptive_min_downstream(self) -> int:
|
|
1380
|
+
def qos_adaptive_min_downstream(self) -> _builtins.int:
|
|
1327
1381
|
"""
|
|
1328
1382
|
Downstream min bandwidth limit (kbps)
|
|
1329
1383
|
"""
|
|
1330
1384
|
return pulumi.get(self, "qos_adaptive_min_downstream")
|
|
1331
1385
|
|
|
1332
|
-
@property
|
|
1386
|
+
@_builtins.property
|
|
1333
1387
|
@pulumi.getter(name="qosAdaptiveMinDownstreamVariable")
|
|
1334
|
-
def qos_adaptive_min_downstream_variable(self) -> str:
|
|
1388
|
+
def qos_adaptive_min_downstream_variable(self) -> _builtins.str:
|
|
1335
1389
|
"""
|
|
1336
1390
|
Variable name
|
|
1337
1391
|
"""
|
|
1338
1392
|
return pulumi.get(self, "qos_adaptive_min_downstream_variable")
|
|
1339
1393
|
|
|
1340
|
-
@property
|
|
1394
|
+
@_builtins.property
|
|
1341
1395
|
@pulumi.getter(name="qosAdaptiveMinUpstream")
|
|
1342
|
-
def qos_adaptive_min_upstream(self) -> int:
|
|
1396
|
+
def qos_adaptive_min_upstream(self) -> _builtins.int:
|
|
1343
1397
|
"""
|
|
1344
1398
|
Upstream min bandwidth limit (kbps)
|
|
1345
1399
|
"""
|
|
1346
1400
|
return pulumi.get(self, "qos_adaptive_min_upstream")
|
|
1347
1401
|
|
|
1348
|
-
@property
|
|
1402
|
+
@_builtins.property
|
|
1349
1403
|
@pulumi.getter(name="qosAdaptiveMinUpstreamVariable")
|
|
1350
|
-
def qos_adaptive_min_upstream_variable(self) -> str:
|
|
1404
|
+
def qos_adaptive_min_upstream_variable(self) -> _builtins.str:
|
|
1351
1405
|
"""
|
|
1352
1406
|
Variable name
|
|
1353
1407
|
"""
|
|
1354
1408
|
return pulumi.get(self, "qos_adaptive_min_upstream_variable")
|
|
1355
1409
|
|
|
1356
|
-
@property
|
|
1410
|
+
@_builtins.property
|
|
1357
1411
|
@pulumi.getter(name="qosAdaptivePeriod")
|
|
1358
|
-
def qos_adaptive_period(self) -> int:
|
|
1412
|
+
def qos_adaptive_period(self) -> _builtins.int:
|
|
1359
1413
|
"""
|
|
1360
1414
|
Adapt Period(Minutes)
|
|
1361
1415
|
"""
|
|
1362
1416
|
return pulumi.get(self, "qos_adaptive_period")
|
|
1363
1417
|
|
|
1364
|
-
@property
|
|
1418
|
+
@_builtins.property
|
|
1365
1419
|
@pulumi.getter(name="qosAdaptivePeriodVariable")
|
|
1366
|
-
def qos_adaptive_period_variable(self) -> str:
|
|
1420
|
+
def qos_adaptive_period_variable(self) -> _builtins.str:
|
|
1367
1421
|
"""
|
|
1368
1422
|
Variable name
|
|
1369
1423
|
"""
|
|
1370
1424
|
return pulumi.get(self, "qos_adaptive_period_variable")
|
|
1371
1425
|
|
|
1372
|
-
@property
|
|
1426
|
+
@_builtins.property
|
|
1373
1427
|
@pulumi.getter(name="qosShapingRate")
|
|
1374
|
-
def qos_shaping_rate(self) -> int:
|
|
1428
|
+
def qos_shaping_rate(self) -> _builtins.int:
|
|
1375
1429
|
"""
|
|
1376
1430
|
Shaping Rate (Kbps)
|
|
1377
1431
|
"""
|
|
1378
1432
|
return pulumi.get(self, "qos_shaping_rate")
|
|
1379
1433
|
|
|
1380
|
-
@property
|
|
1434
|
+
@_builtins.property
|
|
1381
1435
|
@pulumi.getter(name="qosShapingRateVariable")
|
|
1382
|
-
def qos_shaping_rate_variable(self) -> str:
|
|
1436
|
+
def qos_shaping_rate_variable(self) -> _builtins.str:
|
|
1383
1437
|
"""
|
|
1384
1438
|
Variable name
|
|
1385
1439
|
"""
|
|
1386
1440
|
return pulumi.get(self, "qos_shaping_rate_variable")
|
|
1387
1441
|
|
|
1388
|
-
@property
|
|
1442
|
+
@_builtins.property
|
|
1389
1443
|
@pulumi.getter(name="serviceProvider")
|
|
1390
|
-
def service_provider(self) -> str:
|
|
1444
|
+
def service_provider(self) -> _builtins.str:
|
|
1391
1445
|
"""
|
|
1392
1446
|
Service Provider Name
|
|
1393
1447
|
"""
|
|
1394
1448
|
return pulumi.get(self, "service_provider")
|
|
1395
1449
|
|
|
1396
|
-
@property
|
|
1450
|
+
@_builtins.property
|
|
1397
1451
|
@pulumi.getter(name="serviceProviderVariable")
|
|
1398
|
-
def service_provider_variable(self) -> str:
|
|
1452
|
+
def service_provider_variable(self) -> _builtins.str:
|
|
1399
1453
|
"""
|
|
1400
1454
|
Variable name
|
|
1401
1455
|
"""
|
|
1402
1456
|
return pulumi.get(self, "service_provider_variable")
|
|
1403
1457
|
|
|
1404
|
-
@property
|
|
1458
|
+
@_builtins.property
|
|
1405
1459
|
@pulumi.getter
|
|
1406
|
-
def shutdown(self) -> bool:
|
|
1460
|
+
def shutdown(self) -> _builtins.bool:
|
|
1407
1461
|
return pulumi.get(self, "shutdown")
|
|
1408
1462
|
|
|
1409
|
-
@property
|
|
1463
|
+
@_builtins.property
|
|
1410
1464
|
@pulumi.getter(name="shutdownVariable")
|
|
1411
|
-
def shutdown_variable(self) -> str:
|
|
1465
|
+
def shutdown_variable(self) -> _builtins.str:
|
|
1412
1466
|
"""
|
|
1413
1467
|
Variable name
|
|
1414
1468
|
"""
|
|
1415
1469
|
return pulumi.get(self, "shutdown_variable")
|
|
1416
1470
|
|
|
1417
|
-
@property
|
|
1471
|
+
@_builtins.property
|
|
1418
1472
|
@pulumi.getter
|
|
1419
|
-
def speed(self) -> str:
|
|
1473
|
+
def speed(self) -> _builtins.str:
|
|
1420
1474
|
"""
|
|
1421
1475
|
Set interface speed
|
|
1422
1476
|
"""
|
|
1423
1477
|
return pulumi.get(self, "speed")
|
|
1424
1478
|
|
|
1425
|
-
@property
|
|
1479
|
+
@_builtins.property
|
|
1426
1480
|
@pulumi.getter(name="speedVariable")
|
|
1427
|
-
def speed_variable(self) -> str:
|
|
1481
|
+
def speed_variable(self) -> _builtins.str:
|
|
1428
1482
|
"""
|
|
1429
1483
|
Variable name
|
|
1430
1484
|
"""
|
|
1431
1485
|
return pulumi.get(self, "speed_variable")
|
|
1432
1486
|
|
|
1433
|
-
@property
|
|
1487
|
+
@_builtins.property
|
|
1434
1488
|
@pulumi.getter(name="staticNat66s")
|
|
1435
1489
|
def static_nat66s(self) -> Sequence['outputs.GetTransportWanVpnInterfaceEthernetFeatureStaticNat66Result']:
|
|
1436
1490
|
"""
|
|
@@ -1438,407 +1492,407 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
1438
1492
|
"""
|
|
1439
1493
|
return pulumi.get(self, "static_nat66s")
|
|
1440
1494
|
|
|
1441
|
-
@property
|
|
1495
|
+
@_builtins.property
|
|
1442
1496
|
@pulumi.getter(name="tcpMss")
|
|
1443
|
-
def tcp_mss(self) -> int:
|
|
1497
|
+
def tcp_mss(self) -> _builtins.int:
|
|
1444
1498
|
"""
|
|
1445
1499
|
TCP MSS on SYN packets, in bytes
|
|
1446
1500
|
"""
|
|
1447
1501
|
return pulumi.get(self, "tcp_mss")
|
|
1448
1502
|
|
|
1449
|
-
@property
|
|
1503
|
+
@_builtins.property
|
|
1450
1504
|
@pulumi.getter(name="tcpMssVariable")
|
|
1451
|
-
def tcp_mss_variable(self) -> str:
|
|
1505
|
+
def tcp_mss_variable(self) -> _builtins.str:
|
|
1452
1506
|
"""
|
|
1453
1507
|
Variable name
|
|
1454
1508
|
"""
|
|
1455
1509
|
return pulumi.get(self, "tcp_mss_variable")
|
|
1456
1510
|
|
|
1457
|
-
@property
|
|
1511
|
+
@_builtins.property
|
|
1458
1512
|
@pulumi.getter(name="tlocExtension")
|
|
1459
|
-
def tloc_extension(self) -> str:
|
|
1513
|
+
def tloc_extension(self) -> _builtins.str:
|
|
1460
1514
|
"""
|
|
1461
1515
|
Extends a local TLOC to a remote node only for vpn 0
|
|
1462
1516
|
"""
|
|
1463
1517
|
return pulumi.get(self, "tloc_extension")
|
|
1464
1518
|
|
|
1465
|
-
@property
|
|
1519
|
+
@_builtins.property
|
|
1466
1520
|
@pulumi.getter(name="tlocExtensionVariable")
|
|
1467
|
-
def tloc_extension_variable(self) -> str:
|
|
1521
|
+
def tloc_extension_variable(self) -> _builtins.str:
|
|
1468
1522
|
"""
|
|
1469
1523
|
Variable name
|
|
1470
1524
|
"""
|
|
1471
1525
|
return pulumi.get(self, "tloc_extension_variable")
|
|
1472
1526
|
|
|
1473
|
-
@property
|
|
1527
|
+
@_builtins.property
|
|
1474
1528
|
@pulumi.getter
|
|
1475
|
-
def tracker(self) -> str:
|
|
1529
|
+
def tracker(self) -> _builtins.str:
|
|
1476
1530
|
"""
|
|
1477
1531
|
Enable tracker for this interface
|
|
1478
1532
|
"""
|
|
1479
1533
|
return pulumi.get(self, "tracker")
|
|
1480
1534
|
|
|
1481
|
-
@property
|
|
1535
|
+
@_builtins.property
|
|
1482
1536
|
@pulumi.getter(name="trackerVariable")
|
|
1483
|
-
def tracker_variable(self) -> str:
|
|
1537
|
+
def tracker_variable(self) -> _builtins.str:
|
|
1484
1538
|
"""
|
|
1485
1539
|
Variable name
|
|
1486
1540
|
"""
|
|
1487
1541
|
return pulumi.get(self, "tracker_variable")
|
|
1488
1542
|
|
|
1489
|
-
@property
|
|
1543
|
+
@_builtins.property
|
|
1490
1544
|
@pulumi.getter(name="transportWanVpnFeatureId")
|
|
1491
|
-
def transport_wan_vpn_feature_id(self) -> str:
|
|
1545
|
+
def transport_wan_vpn_feature_id(self) -> _builtins.str:
|
|
1492
1546
|
"""
|
|
1493
1547
|
Transport WAN VPN Feature ID
|
|
1494
1548
|
"""
|
|
1495
1549
|
return pulumi.get(self, "transport_wan_vpn_feature_id")
|
|
1496
1550
|
|
|
1497
|
-
@property
|
|
1551
|
+
@_builtins.property
|
|
1498
1552
|
@pulumi.getter(name="tunnelBandwidthPercent")
|
|
1499
|
-
def tunnel_bandwidth_percent(self) -> int:
|
|
1553
|
+
def tunnel_bandwidth_percent(self) -> _builtins.int:
|
|
1500
1554
|
"""
|
|
1501
1555
|
Tunnels Bandwidth Percent
|
|
1502
1556
|
"""
|
|
1503
1557
|
return pulumi.get(self, "tunnel_bandwidth_percent")
|
|
1504
1558
|
|
|
1505
|
-
@property
|
|
1559
|
+
@_builtins.property
|
|
1506
1560
|
@pulumi.getter(name="tunnelBandwidthPercentVariable")
|
|
1507
|
-
def tunnel_bandwidth_percent_variable(self) -> str:
|
|
1561
|
+
def tunnel_bandwidth_percent_variable(self) -> _builtins.str:
|
|
1508
1562
|
"""
|
|
1509
1563
|
Variable name
|
|
1510
1564
|
"""
|
|
1511
1565
|
return pulumi.get(self, "tunnel_bandwidth_percent_variable")
|
|
1512
1566
|
|
|
1513
|
-
@property
|
|
1567
|
+
@_builtins.property
|
|
1514
1568
|
@pulumi.getter(name="tunnelInterface")
|
|
1515
|
-
def tunnel_interface(self) -> bool:
|
|
1569
|
+
def tunnel_interface(self) -> _builtins.bool:
|
|
1516
1570
|
"""
|
|
1517
1571
|
Tunnel Interface on/off
|
|
1518
1572
|
"""
|
|
1519
1573
|
return pulumi.get(self, "tunnel_interface")
|
|
1520
1574
|
|
|
1521
|
-
@property
|
|
1575
|
+
@_builtins.property
|
|
1522
1576
|
@pulumi.getter(name="tunnelInterfaceAllowAll")
|
|
1523
|
-
def tunnel_interface_allow_all(self) -> bool:
|
|
1577
|
+
def tunnel_interface_allow_all(self) -> _builtins.bool:
|
|
1524
1578
|
"""
|
|
1525
1579
|
Allow all traffic. Overrides all other allow-service options if allow-service all is set
|
|
1526
1580
|
"""
|
|
1527
1581
|
return pulumi.get(self, "tunnel_interface_allow_all")
|
|
1528
1582
|
|
|
1529
|
-
@property
|
|
1583
|
+
@_builtins.property
|
|
1530
1584
|
@pulumi.getter(name="tunnelInterfaceAllowAllVariable")
|
|
1531
|
-
def tunnel_interface_allow_all_variable(self) -> str:
|
|
1585
|
+
def tunnel_interface_allow_all_variable(self) -> _builtins.str:
|
|
1532
1586
|
"""
|
|
1533
1587
|
Variable name
|
|
1534
1588
|
"""
|
|
1535
1589
|
return pulumi.get(self, "tunnel_interface_allow_all_variable")
|
|
1536
1590
|
|
|
1537
|
-
@property
|
|
1591
|
+
@_builtins.property
|
|
1538
1592
|
@pulumi.getter(name="tunnelInterfaceAllowBfd")
|
|
1539
|
-
def tunnel_interface_allow_bfd(self) -> bool:
|
|
1593
|
+
def tunnel_interface_allow_bfd(self) -> _builtins.bool:
|
|
1540
1594
|
"""
|
|
1541
1595
|
Allow/Deny BFD
|
|
1542
1596
|
"""
|
|
1543
1597
|
return pulumi.get(self, "tunnel_interface_allow_bfd")
|
|
1544
1598
|
|
|
1545
|
-
@property
|
|
1599
|
+
@_builtins.property
|
|
1546
1600
|
@pulumi.getter(name="tunnelInterfaceAllowBfdVariable")
|
|
1547
|
-
def tunnel_interface_allow_bfd_variable(self) -> str:
|
|
1601
|
+
def tunnel_interface_allow_bfd_variable(self) -> _builtins.str:
|
|
1548
1602
|
"""
|
|
1549
1603
|
Variable name
|
|
1550
1604
|
"""
|
|
1551
1605
|
return pulumi.get(self, "tunnel_interface_allow_bfd_variable")
|
|
1552
1606
|
|
|
1553
|
-
@property
|
|
1607
|
+
@_builtins.property
|
|
1554
1608
|
@pulumi.getter(name="tunnelInterfaceAllowBgp")
|
|
1555
|
-
def tunnel_interface_allow_bgp(self) -> bool:
|
|
1609
|
+
def tunnel_interface_allow_bgp(self) -> _builtins.bool:
|
|
1556
1610
|
"""
|
|
1557
1611
|
Allow/deny BGP
|
|
1558
1612
|
"""
|
|
1559
1613
|
return pulumi.get(self, "tunnel_interface_allow_bgp")
|
|
1560
1614
|
|
|
1561
|
-
@property
|
|
1615
|
+
@_builtins.property
|
|
1562
1616
|
@pulumi.getter(name="tunnelInterfaceAllowBgpVariable")
|
|
1563
|
-
def tunnel_interface_allow_bgp_variable(self) -> str:
|
|
1617
|
+
def tunnel_interface_allow_bgp_variable(self) -> _builtins.str:
|
|
1564
1618
|
"""
|
|
1565
1619
|
Variable name
|
|
1566
1620
|
"""
|
|
1567
1621
|
return pulumi.get(self, "tunnel_interface_allow_bgp_variable")
|
|
1568
1622
|
|
|
1569
|
-
@property
|
|
1623
|
+
@_builtins.property
|
|
1570
1624
|
@pulumi.getter(name="tunnelInterfaceAllowDhcp")
|
|
1571
|
-
def tunnel_interface_allow_dhcp(self) -> bool:
|
|
1625
|
+
def tunnel_interface_allow_dhcp(self) -> _builtins.bool:
|
|
1572
1626
|
"""
|
|
1573
1627
|
Allow/Deny DHCP
|
|
1574
1628
|
"""
|
|
1575
1629
|
return pulumi.get(self, "tunnel_interface_allow_dhcp")
|
|
1576
1630
|
|
|
1577
|
-
@property
|
|
1631
|
+
@_builtins.property
|
|
1578
1632
|
@pulumi.getter(name="tunnelInterfaceAllowDhcpVariable")
|
|
1579
|
-
def tunnel_interface_allow_dhcp_variable(self) -> str:
|
|
1633
|
+
def tunnel_interface_allow_dhcp_variable(self) -> _builtins.str:
|
|
1580
1634
|
"""
|
|
1581
1635
|
Variable name
|
|
1582
1636
|
"""
|
|
1583
1637
|
return pulumi.get(self, "tunnel_interface_allow_dhcp_variable")
|
|
1584
1638
|
|
|
1585
|
-
@property
|
|
1639
|
+
@_builtins.property
|
|
1586
1640
|
@pulumi.getter(name="tunnelInterfaceAllowDns")
|
|
1587
|
-
def tunnel_interface_allow_dns(self) -> bool:
|
|
1641
|
+
def tunnel_interface_allow_dns(self) -> _builtins.bool:
|
|
1588
1642
|
"""
|
|
1589
1643
|
Allow/Deny DNS
|
|
1590
1644
|
"""
|
|
1591
1645
|
return pulumi.get(self, "tunnel_interface_allow_dns")
|
|
1592
1646
|
|
|
1593
|
-
@property
|
|
1647
|
+
@_builtins.property
|
|
1594
1648
|
@pulumi.getter(name="tunnelInterfaceAllowDnsVariable")
|
|
1595
|
-
def tunnel_interface_allow_dns_variable(self) -> str:
|
|
1649
|
+
def tunnel_interface_allow_dns_variable(self) -> _builtins.str:
|
|
1596
1650
|
"""
|
|
1597
1651
|
Variable name
|
|
1598
1652
|
"""
|
|
1599
1653
|
return pulumi.get(self, "tunnel_interface_allow_dns_variable")
|
|
1600
1654
|
|
|
1601
|
-
@property
|
|
1655
|
+
@_builtins.property
|
|
1602
1656
|
@pulumi.getter(name="tunnelInterfaceAllowHttps")
|
|
1603
|
-
def tunnel_interface_allow_https(self) -> bool:
|
|
1657
|
+
def tunnel_interface_allow_https(self) -> _builtins.bool:
|
|
1604
1658
|
"""
|
|
1605
1659
|
Allow/Deny HTTPS
|
|
1606
1660
|
"""
|
|
1607
1661
|
return pulumi.get(self, "tunnel_interface_allow_https")
|
|
1608
1662
|
|
|
1609
|
-
@property
|
|
1663
|
+
@_builtins.property
|
|
1610
1664
|
@pulumi.getter(name="tunnelInterfaceAllowHttpsVariable")
|
|
1611
|
-
def tunnel_interface_allow_https_variable(self) -> str:
|
|
1665
|
+
def tunnel_interface_allow_https_variable(self) -> _builtins.str:
|
|
1612
1666
|
"""
|
|
1613
1667
|
Variable name
|
|
1614
1668
|
"""
|
|
1615
1669
|
return pulumi.get(self, "tunnel_interface_allow_https_variable")
|
|
1616
1670
|
|
|
1617
|
-
@property
|
|
1671
|
+
@_builtins.property
|
|
1618
1672
|
@pulumi.getter(name="tunnelInterfaceAllowIcmp")
|
|
1619
|
-
def tunnel_interface_allow_icmp(self) -> bool:
|
|
1673
|
+
def tunnel_interface_allow_icmp(self) -> _builtins.bool:
|
|
1620
1674
|
"""
|
|
1621
1675
|
Allow/Deny ICMP
|
|
1622
1676
|
"""
|
|
1623
1677
|
return pulumi.get(self, "tunnel_interface_allow_icmp")
|
|
1624
1678
|
|
|
1625
|
-
@property
|
|
1679
|
+
@_builtins.property
|
|
1626
1680
|
@pulumi.getter(name="tunnelInterfaceAllowIcmpVariable")
|
|
1627
|
-
def tunnel_interface_allow_icmp_variable(self) -> str:
|
|
1681
|
+
def tunnel_interface_allow_icmp_variable(self) -> _builtins.str:
|
|
1628
1682
|
"""
|
|
1629
1683
|
Variable name
|
|
1630
1684
|
"""
|
|
1631
1685
|
return pulumi.get(self, "tunnel_interface_allow_icmp_variable")
|
|
1632
1686
|
|
|
1633
|
-
@property
|
|
1687
|
+
@_builtins.property
|
|
1634
1688
|
@pulumi.getter(name="tunnelInterfaceAllowNetconf")
|
|
1635
|
-
def tunnel_interface_allow_netconf(self) -> bool:
|
|
1689
|
+
def tunnel_interface_allow_netconf(self) -> _builtins.bool:
|
|
1636
1690
|
"""
|
|
1637
1691
|
Allow/Deny NETCONF
|
|
1638
1692
|
"""
|
|
1639
1693
|
return pulumi.get(self, "tunnel_interface_allow_netconf")
|
|
1640
1694
|
|
|
1641
|
-
@property
|
|
1695
|
+
@_builtins.property
|
|
1642
1696
|
@pulumi.getter(name="tunnelInterfaceAllowNetconfVariable")
|
|
1643
|
-
def tunnel_interface_allow_netconf_variable(self) -> str:
|
|
1697
|
+
def tunnel_interface_allow_netconf_variable(self) -> _builtins.str:
|
|
1644
1698
|
"""
|
|
1645
1699
|
Variable name
|
|
1646
1700
|
"""
|
|
1647
1701
|
return pulumi.get(self, "tunnel_interface_allow_netconf_variable")
|
|
1648
1702
|
|
|
1649
|
-
@property
|
|
1703
|
+
@_builtins.property
|
|
1650
1704
|
@pulumi.getter(name="tunnelInterfaceAllowNtp")
|
|
1651
|
-
def tunnel_interface_allow_ntp(self) -> bool:
|
|
1705
|
+
def tunnel_interface_allow_ntp(self) -> _builtins.bool:
|
|
1652
1706
|
"""
|
|
1653
1707
|
Allow/Deny NTP
|
|
1654
1708
|
"""
|
|
1655
1709
|
return pulumi.get(self, "tunnel_interface_allow_ntp")
|
|
1656
1710
|
|
|
1657
|
-
@property
|
|
1711
|
+
@_builtins.property
|
|
1658
1712
|
@pulumi.getter(name="tunnelInterfaceAllowNtpVariable")
|
|
1659
|
-
def tunnel_interface_allow_ntp_variable(self) -> str:
|
|
1713
|
+
def tunnel_interface_allow_ntp_variable(self) -> _builtins.str:
|
|
1660
1714
|
"""
|
|
1661
1715
|
Variable name
|
|
1662
1716
|
"""
|
|
1663
1717
|
return pulumi.get(self, "tunnel_interface_allow_ntp_variable")
|
|
1664
1718
|
|
|
1665
|
-
@property
|
|
1719
|
+
@_builtins.property
|
|
1666
1720
|
@pulumi.getter(name="tunnelInterfaceAllowOspf")
|
|
1667
|
-
def tunnel_interface_allow_ospf(self) -> bool:
|
|
1721
|
+
def tunnel_interface_allow_ospf(self) -> _builtins.bool:
|
|
1668
1722
|
"""
|
|
1669
1723
|
Allow/Deny OSPF
|
|
1670
1724
|
"""
|
|
1671
1725
|
return pulumi.get(self, "tunnel_interface_allow_ospf")
|
|
1672
1726
|
|
|
1673
|
-
@property
|
|
1727
|
+
@_builtins.property
|
|
1674
1728
|
@pulumi.getter(name="tunnelInterfaceAllowOspfVariable")
|
|
1675
|
-
def tunnel_interface_allow_ospf_variable(self) -> str:
|
|
1729
|
+
def tunnel_interface_allow_ospf_variable(self) -> _builtins.str:
|
|
1676
1730
|
"""
|
|
1677
1731
|
Variable name
|
|
1678
1732
|
"""
|
|
1679
1733
|
return pulumi.get(self, "tunnel_interface_allow_ospf_variable")
|
|
1680
1734
|
|
|
1681
|
-
@property
|
|
1735
|
+
@_builtins.property
|
|
1682
1736
|
@pulumi.getter(name="tunnelInterfaceAllowSnmp")
|
|
1683
|
-
def tunnel_interface_allow_snmp(self) -> bool:
|
|
1737
|
+
def tunnel_interface_allow_snmp(self) -> _builtins.bool:
|
|
1684
1738
|
"""
|
|
1685
1739
|
Allow/Deny SNMP
|
|
1686
1740
|
"""
|
|
1687
1741
|
return pulumi.get(self, "tunnel_interface_allow_snmp")
|
|
1688
1742
|
|
|
1689
|
-
@property
|
|
1743
|
+
@_builtins.property
|
|
1690
1744
|
@pulumi.getter(name="tunnelInterfaceAllowSnmpVariable")
|
|
1691
|
-
def tunnel_interface_allow_snmp_variable(self) -> str:
|
|
1745
|
+
def tunnel_interface_allow_snmp_variable(self) -> _builtins.str:
|
|
1692
1746
|
"""
|
|
1693
1747
|
Variable name
|
|
1694
1748
|
"""
|
|
1695
1749
|
return pulumi.get(self, "tunnel_interface_allow_snmp_variable")
|
|
1696
1750
|
|
|
1697
|
-
@property
|
|
1751
|
+
@_builtins.property
|
|
1698
1752
|
@pulumi.getter(name="tunnelInterfaceAllowSsh")
|
|
1699
|
-
def tunnel_interface_allow_ssh(self) -> bool:
|
|
1753
|
+
def tunnel_interface_allow_ssh(self) -> _builtins.bool:
|
|
1700
1754
|
"""
|
|
1701
1755
|
Allow/Deny SSH
|
|
1702
1756
|
"""
|
|
1703
1757
|
return pulumi.get(self, "tunnel_interface_allow_ssh")
|
|
1704
1758
|
|
|
1705
|
-
@property
|
|
1759
|
+
@_builtins.property
|
|
1706
1760
|
@pulumi.getter(name="tunnelInterfaceAllowSshVariable")
|
|
1707
|
-
def tunnel_interface_allow_ssh_variable(self) -> str:
|
|
1761
|
+
def tunnel_interface_allow_ssh_variable(self) -> _builtins.str:
|
|
1708
1762
|
"""
|
|
1709
1763
|
Variable name
|
|
1710
1764
|
"""
|
|
1711
1765
|
return pulumi.get(self, "tunnel_interface_allow_ssh_variable")
|
|
1712
1766
|
|
|
1713
|
-
@property
|
|
1767
|
+
@_builtins.property
|
|
1714
1768
|
@pulumi.getter(name="tunnelInterfaceAllowStun")
|
|
1715
|
-
def tunnel_interface_allow_stun(self) -> bool:
|
|
1769
|
+
def tunnel_interface_allow_stun(self) -> _builtins.bool:
|
|
1716
1770
|
"""
|
|
1717
1771
|
Allow/Deny STUN
|
|
1718
1772
|
"""
|
|
1719
1773
|
return pulumi.get(self, "tunnel_interface_allow_stun")
|
|
1720
1774
|
|
|
1721
|
-
@property
|
|
1775
|
+
@_builtins.property
|
|
1722
1776
|
@pulumi.getter(name="tunnelInterfaceAllowStunVariable")
|
|
1723
|
-
def tunnel_interface_allow_stun_variable(self) -> str:
|
|
1777
|
+
def tunnel_interface_allow_stun_variable(self) -> _builtins.str:
|
|
1724
1778
|
"""
|
|
1725
1779
|
Variable name
|
|
1726
1780
|
"""
|
|
1727
1781
|
return pulumi.get(self, "tunnel_interface_allow_stun_variable")
|
|
1728
1782
|
|
|
1729
|
-
@property
|
|
1783
|
+
@_builtins.property
|
|
1730
1784
|
@pulumi.getter(name="tunnelInterfaceBindLoopbackTunnel")
|
|
1731
|
-
def tunnel_interface_bind_loopback_tunnel(self) -> str:
|
|
1785
|
+
def tunnel_interface_bind_loopback_tunnel(self) -> _builtins.str:
|
|
1732
1786
|
"""
|
|
1733
1787
|
Bind loopback tunnel interface to a physical interface
|
|
1734
1788
|
"""
|
|
1735
1789
|
return pulumi.get(self, "tunnel_interface_bind_loopback_tunnel")
|
|
1736
1790
|
|
|
1737
|
-
@property
|
|
1791
|
+
@_builtins.property
|
|
1738
1792
|
@pulumi.getter(name="tunnelInterfaceBindLoopbackTunnelVariable")
|
|
1739
|
-
def tunnel_interface_bind_loopback_tunnel_variable(self) -> str:
|
|
1793
|
+
def tunnel_interface_bind_loopback_tunnel_variable(self) -> _builtins.str:
|
|
1740
1794
|
"""
|
|
1741
1795
|
Variable name
|
|
1742
1796
|
"""
|
|
1743
1797
|
return pulumi.get(self, "tunnel_interface_bind_loopback_tunnel_variable")
|
|
1744
1798
|
|
|
1745
|
-
@property
|
|
1799
|
+
@_builtins.property
|
|
1746
1800
|
@pulumi.getter(name="tunnelInterfaceBorder")
|
|
1747
|
-
def tunnel_interface_border(self) -> bool:
|
|
1801
|
+
def tunnel_interface_border(self) -> _builtins.bool:
|
|
1748
1802
|
"""
|
|
1749
1803
|
Set TLOC as border TLOC
|
|
1750
1804
|
"""
|
|
1751
1805
|
return pulumi.get(self, "tunnel_interface_border")
|
|
1752
1806
|
|
|
1753
|
-
@property
|
|
1807
|
+
@_builtins.property
|
|
1754
1808
|
@pulumi.getter(name="tunnelInterfaceBorderVariable")
|
|
1755
|
-
def tunnel_interface_border_variable(self) -> str:
|
|
1809
|
+
def tunnel_interface_border_variable(self) -> _builtins.str:
|
|
1756
1810
|
"""
|
|
1757
1811
|
Variable name
|
|
1758
1812
|
"""
|
|
1759
1813
|
return pulumi.get(self, "tunnel_interface_border_variable")
|
|
1760
1814
|
|
|
1761
|
-
@property
|
|
1815
|
+
@_builtins.property
|
|
1762
1816
|
@pulumi.getter(name="tunnelInterfaceCarrier")
|
|
1763
|
-
def tunnel_interface_carrier(self) -> str:
|
|
1817
|
+
def tunnel_interface_carrier(self) -> _builtins.str:
|
|
1764
1818
|
"""
|
|
1765
1819
|
Set carrier for TLOC
|
|
1766
1820
|
"""
|
|
1767
1821
|
return pulumi.get(self, "tunnel_interface_carrier")
|
|
1768
1822
|
|
|
1769
|
-
@property
|
|
1823
|
+
@_builtins.property
|
|
1770
1824
|
@pulumi.getter(name="tunnelInterfaceCarrierVariable")
|
|
1771
|
-
def tunnel_interface_carrier_variable(self) -> str:
|
|
1825
|
+
def tunnel_interface_carrier_variable(self) -> _builtins.str:
|
|
1772
1826
|
"""
|
|
1773
1827
|
Variable name
|
|
1774
1828
|
"""
|
|
1775
1829
|
return pulumi.get(self, "tunnel_interface_carrier_variable")
|
|
1776
1830
|
|
|
1777
|
-
@property
|
|
1831
|
+
@_builtins.property
|
|
1778
1832
|
@pulumi.getter(name="tunnelInterfaceClearDontFragment")
|
|
1779
|
-
def tunnel_interface_clear_dont_fragment(self) -> bool:
|
|
1833
|
+
def tunnel_interface_clear_dont_fragment(self) -> _builtins.bool:
|
|
1780
1834
|
"""
|
|
1781
1835
|
Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
|
|
1782
1836
|
"""
|
|
1783
1837
|
return pulumi.get(self, "tunnel_interface_clear_dont_fragment")
|
|
1784
1838
|
|
|
1785
|
-
@property
|
|
1839
|
+
@_builtins.property
|
|
1786
1840
|
@pulumi.getter(name="tunnelInterfaceClearDontFragmentVariable")
|
|
1787
|
-
def tunnel_interface_clear_dont_fragment_variable(self) -> str:
|
|
1841
|
+
def tunnel_interface_clear_dont_fragment_variable(self) -> _builtins.str:
|
|
1788
1842
|
"""
|
|
1789
1843
|
Variable name
|
|
1790
1844
|
"""
|
|
1791
1845
|
return pulumi.get(self, "tunnel_interface_clear_dont_fragment_variable")
|
|
1792
1846
|
|
|
1793
|
-
@property
|
|
1847
|
+
@_builtins.property
|
|
1794
1848
|
@pulumi.getter(name="tunnelInterfaceColor")
|
|
1795
|
-
def tunnel_interface_color(self) -> str:
|
|
1849
|
+
def tunnel_interface_color(self) -> _builtins.str:
|
|
1796
1850
|
"""
|
|
1797
1851
|
Set color for TLOC
|
|
1798
1852
|
"""
|
|
1799
1853
|
return pulumi.get(self, "tunnel_interface_color")
|
|
1800
1854
|
|
|
1801
|
-
@property
|
|
1855
|
+
@_builtins.property
|
|
1802
1856
|
@pulumi.getter(name="tunnelInterfaceColorRestrict")
|
|
1803
|
-
def tunnel_interface_color_restrict(self) -> bool:
|
|
1857
|
+
def tunnel_interface_color_restrict(self) -> _builtins.bool:
|
|
1804
1858
|
"""
|
|
1805
1859
|
Restrict this TLOC behavior
|
|
1806
1860
|
"""
|
|
1807
1861
|
return pulumi.get(self, "tunnel_interface_color_restrict")
|
|
1808
1862
|
|
|
1809
|
-
@property
|
|
1863
|
+
@_builtins.property
|
|
1810
1864
|
@pulumi.getter(name="tunnelInterfaceColorRestrictVariable")
|
|
1811
|
-
def tunnel_interface_color_restrict_variable(self) -> str:
|
|
1865
|
+
def tunnel_interface_color_restrict_variable(self) -> _builtins.str:
|
|
1812
1866
|
"""
|
|
1813
1867
|
Variable name
|
|
1814
1868
|
"""
|
|
1815
1869
|
return pulumi.get(self, "tunnel_interface_color_restrict_variable")
|
|
1816
1870
|
|
|
1817
|
-
@property
|
|
1871
|
+
@_builtins.property
|
|
1818
1872
|
@pulumi.getter(name="tunnelInterfaceColorVariable")
|
|
1819
|
-
def tunnel_interface_color_variable(self) -> str:
|
|
1873
|
+
def tunnel_interface_color_variable(self) -> _builtins.str:
|
|
1820
1874
|
"""
|
|
1821
1875
|
Variable name
|
|
1822
1876
|
"""
|
|
1823
1877
|
return pulumi.get(self, "tunnel_interface_color_variable")
|
|
1824
1878
|
|
|
1825
|
-
@property
|
|
1879
|
+
@_builtins.property
|
|
1826
1880
|
@pulumi.getter(name="tunnelInterfaceCtsSgtPropagation")
|
|
1827
|
-
def tunnel_interface_cts_sgt_propagation(self) -> bool:
|
|
1881
|
+
def tunnel_interface_cts_sgt_propagation(self) -> _builtins.bool:
|
|
1828
1882
|
"""
|
|
1829
1883
|
CTS SGT Propagation configuration
|
|
1830
1884
|
"""
|
|
1831
1885
|
return pulumi.get(self, "tunnel_interface_cts_sgt_propagation")
|
|
1832
1886
|
|
|
1833
|
-
@property
|
|
1887
|
+
@_builtins.property
|
|
1834
1888
|
@pulumi.getter(name="tunnelInterfaceCtsSgtPropagationVariable")
|
|
1835
|
-
def tunnel_interface_cts_sgt_propagation_variable(self) -> str:
|
|
1889
|
+
def tunnel_interface_cts_sgt_propagation_variable(self) -> _builtins.str:
|
|
1836
1890
|
"""
|
|
1837
1891
|
Variable name
|
|
1838
1892
|
"""
|
|
1839
1893
|
return pulumi.get(self, "tunnel_interface_cts_sgt_propagation_variable")
|
|
1840
1894
|
|
|
1841
|
-
@property
|
|
1895
|
+
@_builtins.property
|
|
1842
1896
|
@pulumi.getter(name="tunnelInterfaceEncapsulations")
|
|
1843
1897
|
def tunnel_interface_encapsulations(self) -> Sequence['outputs.GetTransportWanVpnInterfaceEthernetFeatureTunnelInterfaceEncapsulationResult']:
|
|
1844
1898
|
"""
|
|
@@ -1846,265 +1900,265 @@ class GetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
|
1846
1900
|
"""
|
|
1847
1901
|
return pulumi.get(self, "tunnel_interface_encapsulations")
|
|
1848
1902
|
|
|
1849
|
-
@property
|
|
1903
|
+
@_builtins.property
|
|
1850
1904
|
@pulumi.getter(name="tunnelInterfaceExcludeControllerGroupListVariable")
|
|
1851
|
-
def tunnel_interface_exclude_controller_group_list_variable(self) -> str:
|
|
1905
|
+
def tunnel_interface_exclude_controller_group_list_variable(self) -> _builtins.str:
|
|
1852
1906
|
"""
|
|
1853
1907
|
Variable name
|
|
1854
1908
|
"""
|
|
1855
1909
|
return pulumi.get(self, "tunnel_interface_exclude_controller_group_list_variable")
|
|
1856
1910
|
|
|
1857
|
-
@property
|
|
1911
|
+
@_builtins.property
|
|
1858
1912
|
@pulumi.getter(name="tunnelInterfaceExcludeControllerGroupLists")
|
|
1859
|
-
def tunnel_interface_exclude_controller_group_lists(self) -> Sequence[int]:
|
|
1913
|
+
def tunnel_interface_exclude_controller_group_lists(self) -> Sequence[_builtins.int]:
|
|
1860
1914
|
"""
|
|
1861
1915
|
Exclude the following controller groups defined in this list.
|
|
1862
1916
|
"""
|
|
1863
1917
|
return pulumi.get(self, "tunnel_interface_exclude_controller_group_lists")
|
|
1864
1918
|
|
|
1865
|
-
@property
|
|
1919
|
+
@_builtins.property
|
|
1866
1920
|
@pulumi.getter(name="tunnelInterfaceGreTunnelDestinationIp")
|
|
1867
|
-
def tunnel_interface_gre_tunnel_destination_ip(self) -> str:
|
|
1921
|
+
def tunnel_interface_gre_tunnel_destination_ip(self) -> _builtins.str:
|
|
1868
1922
|
"""
|
|
1869
1923
|
GRE tunnel destination IP
|
|
1870
1924
|
"""
|
|
1871
1925
|
return pulumi.get(self, "tunnel_interface_gre_tunnel_destination_ip")
|
|
1872
1926
|
|
|
1873
|
-
@property
|
|
1927
|
+
@_builtins.property
|
|
1874
1928
|
@pulumi.getter(name="tunnelInterfaceGreTunnelDestinationIpVariable")
|
|
1875
|
-
def tunnel_interface_gre_tunnel_destination_ip_variable(self) -> str:
|
|
1929
|
+
def tunnel_interface_gre_tunnel_destination_ip_variable(self) -> _builtins.str:
|
|
1876
1930
|
"""
|
|
1877
1931
|
Variable name
|
|
1878
1932
|
"""
|
|
1879
1933
|
return pulumi.get(self, "tunnel_interface_gre_tunnel_destination_ip_variable")
|
|
1880
1934
|
|
|
1881
|
-
@property
|
|
1935
|
+
@_builtins.property
|
|
1882
1936
|
@pulumi.getter(name="tunnelInterfaceGroups")
|
|
1883
|
-
def tunnel_interface_groups(self) -> int:
|
|
1937
|
+
def tunnel_interface_groups(self) -> _builtins.int:
|
|
1884
1938
|
"""
|
|
1885
1939
|
List of groups
|
|
1886
1940
|
"""
|
|
1887
1941
|
return pulumi.get(self, "tunnel_interface_groups")
|
|
1888
1942
|
|
|
1889
|
-
@property
|
|
1943
|
+
@_builtins.property
|
|
1890
1944
|
@pulumi.getter(name="tunnelInterfaceGroupsVariable")
|
|
1891
|
-
def tunnel_interface_groups_variable(self) -> str:
|
|
1945
|
+
def tunnel_interface_groups_variable(self) -> _builtins.str:
|
|
1892
1946
|
"""
|
|
1893
1947
|
Variable name
|
|
1894
1948
|
"""
|
|
1895
1949
|
return pulumi.get(self, "tunnel_interface_groups_variable")
|
|
1896
1950
|
|
|
1897
|
-
@property
|
|
1951
|
+
@_builtins.property
|
|
1898
1952
|
@pulumi.getter(name="tunnelInterfaceHelloInterval")
|
|
1899
|
-
def tunnel_interface_hello_interval(self) -> int:
|
|
1953
|
+
def tunnel_interface_hello_interval(self) -> _builtins.int:
|
|
1900
1954
|
"""
|
|
1901
1955
|
Set time period of control hello packets \\n\\n milli seconds
|
|
1902
1956
|
"""
|
|
1903
1957
|
return pulumi.get(self, "tunnel_interface_hello_interval")
|
|
1904
1958
|
|
|
1905
|
-
@property
|
|
1959
|
+
@_builtins.property
|
|
1906
1960
|
@pulumi.getter(name="tunnelInterfaceHelloIntervalVariable")
|
|
1907
|
-
def tunnel_interface_hello_interval_variable(self) -> str:
|
|
1961
|
+
def tunnel_interface_hello_interval_variable(self) -> _builtins.str:
|
|
1908
1962
|
"""
|
|
1909
1963
|
Variable name
|
|
1910
1964
|
"""
|
|
1911
1965
|
return pulumi.get(self, "tunnel_interface_hello_interval_variable")
|
|
1912
1966
|
|
|
1913
|
-
@property
|
|
1967
|
+
@_builtins.property
|
|
1914
1968
|
@pulumi.getter(name="tunnelInterfaceHelloTolerance")
|
|
1915
|
-
def tunnel_interface_hello_tolerance(self) -> int:
|
|
1969
|
+
def tunnel_interface_hello_tolerance(self) -> _builtins.int:
|
|
1916
1970
|
"""
|
|
1917
1971
|
Set tolerance of control hello packets \\n\\n seconds
|
|
1918
1972
|
"""
|
|
1919
1973
|
return pulumi.get(self, "tunnel_interface_hello_tolerance")
|
|
1920
1974
|
|
|
1921
|
-
@property
|
|
1975
|
+
@_builtins.property
|
|
1922
1976
|
@pulumi.getter(name="tunnelInterfaceHelloToleranceVariable")
|
|
1923
|
-
def tunnel_interface_hello_tolerance_variable(self) -> str:
|
|
1977
|
+
def tunnel_interface_hello_tolerance_variable(self) -> _builtins.str:
|
|
1924
1978
|
"""
|
|
1925
1979
|
Variable name
|
|
1926
1980
|
"""
|
|
1927
1981
|
return pulumi.get(self, "tunnel_interface_hello_tolerance_variable")
|
|
1928
1982
|
|
|
1929
|
-
@property
|
|
1983
|
+
@_builtins.property
|
|
1930
1984
|
@pulumi.getter(name="tunnelInterfaceLastResortCircuit")
|
|
1931
|
-
def tunnel_interface_last_resort_circuit(self) -> bool:
|
|
1985
|
+
def tunnel_interface_last_resort_circuit(self) -> _builtins.bool:
|
|
1932
1986
|
"""
|
|
1933
1987
|
Set TLOC as last resort
|
|
1934
1988
|
"""
|
|
1935
1989
|
return pulumi.get(self, "tunnel_interface_last_resort_circuit")
|
|
1936
1990
|
|
|
1937
|
-
@property
|
|
1991
|
+
@_builtins.property
|
|
1938
1992
|
@pulumi.getter(name="tunnelInterfaceLastResortCircuitVariable")
|
|
1939
|
-
def tunnel_interface_last_resort_circuit_variable(self) -> str:
|
|
1993
|
+
def tunnel_interface_last_resort_circuit_variable(self) -> _builtins.str:
|
|
1940
1994
|
"""
|
|
1941
1995
|
Variable name
|
|
1942
1996
|
"""
|
|
1943
1997
|
return pulumi.get(self, "tunnel_interface_last_resort_circuit_variable")
|
|
1944
1998
|
|
|
1945
|
-
@property
|
|
1999
|
+
@_builtins.property
|
|
1946
2000
|
@pulumi.getter(name="tunnelInterfaceLowBandwidthLink")
|
|
1947
|
-
def tunnel_interface_low_bandwidth_link(self) -> bool:
|
|
2001
|
+
def tunnel_interface_low_bandwidth_link(self) -> _builtins.bool:
|
|
1948
2002
|
"""
|
|
1949
2003
|
Set the interface as a low-bandwidth circuit
|
|
1950
2004
|
"""
|
|
1951
2005
|
return pulumi.get(self, "tunnel_interface_low_bandwidth_link")
|
|
1952
2006
|
|
|
1953
|
-
@property
|
|
2007
|
+
@_builtins.property
|
|
1954
2008
|
@pulumi.getter(name="tunnelInterfaceLowBandwidthLinkVariable")
|
|
1955
|
-
def tunnel_interface_low_bandwidth_link_variable(self) -> str:
|
|
2009
|
+
def tunnel_interface_low_bandwidth_link_variable(self) -> _builtins.str:
|
|
1956
2010
|
"""
|
|
1957
2011
|
Variable name
|
|
1958
2012
|
"""
|
|
1959
2013
|
return pulumi.get(self, "tunnel_interface_low_bandwidth_link_variable")
|
|
1960
2014
|
|
|
1961
|
-
@property
|
|
2015
|
+
@_builtins.property
|
|
1962
2016
|
@pulumi.getter(name="tunnelInterfaceMaxControlConnections")
|
|
1963
|
-
def tunnel_interface_max_control_connections(self) -> int:
|
|
2017
|
+
def tunnel_interface_max_control_connections(self) -> _builtins.int:
|
|
1964
2018
|
"""
|
|
1965
2019
|
Maximum Control Connections
|
|
1966
2020
|
"""
|
|
1967
2021
|
return pulumi.get(self, "tunnel_interface_max_control_connections")
|
|
1968
2022
|
|
|
1969
|
-
@property
|
|
2023
|
+
@_builtins.property
|
|
1970
2024
|
@pulumi.getter(name="tunnelInterfaceMaxControlConnectionsVariable")
|
|
1971
|
-
def tunnel_interface_max_control_connections_variable(self) -> str:
|
|
2025
|
+
def tunnel_interface_max_control_connections_variable(self) -> _builtins.str:
|
|
1972
2026
|
"""
|
|
1973
2027
|
Variable name
|
|
1974
2028
|
"""
|
|
1975
2029
|
return pulumi.get(self, "tunnel_interface_max_control_connections_variable")
|
|
1976
2030
|
|
|
1977
|
-
@property
|
|
2031
|
+
@_builtins.property
|
|
1978
2032
|
@pulumi.getter(name="tunnelInterfaceNatRefreshInterval")
|
|
1979
|
-
def tunnel_interface_nat_refresh_interval(self) -> int:
|
|
2033
|
+
def tunnel_interface_nat_refresh_interval(self) -> _builtins.int:
|
|
1980
2034
|
"""
|
|
1981
2035
|
Set time period of nat refresh packets \\n\\n seconds
|
|
1982
2036
|
"""
|
|
1983
2037
|
return pulumi.get(self, "tunnel_interface_nat_refresh_interval")
|
|
1984
2038
|
|
|
1985
|
-
@property
|
|
2039
|
+
@_builtins.property
|
|
1986
2040
|
@pulumi.getter(name="tunnelInterfaceNatRefreshIntervalVariable")
|
|
1987
|
-
def tunnel_interface_nat_refresh_interval_variable(self) -> str:
|
|
2041
|
+
def tunnel_interface_nat_refresh_interval_variable(self) -> _builtins.str:
|
|
1988
2042
|
"""
|
|
1989
2043
|
Variable name
|
|
1990
2044
|
"""
|
|
1991
2045
|
return pulumi.get(self, "tunnel_interface_nat_refresh_interval_variable")
|
|
1992
2046
|
|
|
1993
|
-
@property
|
|
2047
|
+
@_builtins.property
|
|
1994
2048
|
@pulumi.getter(name="tunnelInterfaceNetworkBroadcast")
|
|
1995
|
-
def tunnel_interface_network_broadcast(self) -> bool:
|
|
2049
|
+
def tunnel_interface_network_broadcast(self) -> _builtins.bool:
|
|
1996
2050
|
"""
|
|
1997
2051
|
Accept and respond to network-prefix-directed broadcasts
|
|
1998
2052
|
"""
|
|
1999
2053
|
return pulumi.get(self, "tunnel_interface_network_broadcast")
|
|
2000
2054
|
|
|
2001
|
-
@property
|
|
2055
|
+
@_builtins.property
|
|
2002
2056
|
@pulumi.getter(name="tunnelInterfaceNetworkBroadcastVariable")
|
|
2003
|
-
def tunnel_interface_network_broadcast_variable(self) -> str:
|
|
2057
|
+
def tunnel_interface_network_broadcast_variable(self) -> _builtins.str:
|
|
2004
2058
|
"""
|
|
2005
2059
|
Variable name
|
|
2006
2060
|
"""
|
|
2007
2061
|
return pulumi.get(self, "tunnel_interface_network_broadcast_variable")
|
|
2008
2062
|
|
|
2009
|
-
@property
|
|
2063
|
+
@_builtins.property
|
|
2010
2064
|
@pulumi.getter(name="tunnelInterfacePortHop")
|
|
2011
|
-
def tunnel_interface_port_hop(self) -> bool:
|
|
2065
|
+
def tunnel_interface_port_hop(self) -> _builtins.bool:
|
|
2012
2066
|
"""
|
|
2013
2067
|
Disallow port hopping on the tunnel interface
|
|
2014
2068
|
"""
|
|
2015
2069
|
return pulumi.get(self, "tunnel_interface_port_hop")
|
|
2016
2070
|
|
|
2017
|
-
@property
|
|
2071
|
+
@_builtins.property
|
|
2018
2072
|
@pulumi.getter(name="tunnelInterfacePortHopVariable")
|
|
2019
|
-
def tunnel_interface_port_hop_variable(self) -> str:
|
|
2073
|
+
def tunnel_interface_port_hop_variable(self) -> _builtins.str:
|
|
2020
2074
|
"""
|
|
2021
2075
|
Variable name
|
|
2022
2076
|
"""
|
|
2023
2077
|
return pulumi.get(self, "tunnel_interface_port_hop_variable")
|
|
2024
2078
|
|
|
2025
|
-
@property
|
|
2079
|
+
@_builtins.property
|
|
2026
2080
|
@pulumi.getter(name="tunnelInterfaceTunnelTcpMss")
|
|
2027
|
-
def tunnel_interface_tunnel_tcp_mss(self) -> int:
|
|
2081
|
+
def tunnel_interface_tunnel_tcp_mss(self) -> _builtins.int:
|
|
2028
2082
|
"""
|
|
2029
2083
|
Tunnel TCP MSS on SYN packets, in bytes
|
|
2030
2084
|
"""
|
|
2031
2085
|
return pulumi.get(self, "tunnel_interface_tunnel_tcp_mss")
|
|
2032
2086
|
|
|
2033
|
-
@property
|
|
2087
|
+
@_builtins.property
|
|
2034
2088
|
@pulumi.getter(name="tunnelInterfaceTunnelTcpMssVariable")
|
|
2035
|
-
def tunnel_interface_tunnel_tcp_mss_variable(self) -> str:
|
|
2089
|
+
def tunnel_interface_tunnel_tcp_mss_variable(self) -> _builtins.str:
|
|
2036
2090
|
"""
|
|
2037
2091
|
Variable name
|
|
2038
2092
|
"""
|
|
2039
2093
|
return pulumi.get(self, "tunnel_interface_tunnel_tcp_mss_variable")
|
|
2040
2094
|
|
|
2041
|
-
@property
|
|
2095
|
+
@_builtins.property
|
|
2042
2096
|
@pulumi.getter(name="tunnelInterfaceVbondAsStunServer")
|
|
2043
|
-
def tunnel_interface_vbond_as_stun_server(self) -> bool:
|
|
2097
|
+
def tunnel_interface_vbond_as_stun_server(self) -> _builtins.bool:
|
|
2044
2098
|
"""
|
|
2045
2099
|
Put this wan interface in STUN mode only
|
|
2046
2100
|
"""
|
|
2047
2101
|
return pulumi.get(self, "tunnel_interface_vbond_as_stun_server")
|
|
2048
2102
|
|
|
2049
|
-
@property
|
|
2103
|
+
@_builtins.property
|
|
2050
2104
|
@pulumi.getter(name="tunnelInterfaceVbondAsStunServerVariable")
|
|
2051
|
-
def tunnel_interface_vbond_as_stun_server_variable(self) -> str:
|
|
2105
|
+
def tunnel_interface_vbond_as_stun_server_variable(self) -> _builtins.str:
|
|
2052
2106
|
"""
|
|
2053
2107
|
Variable name
|
|
2054
2108
|
"""
|
|
2055
2109
|
return pulumi.get(self, "tunnel_interface_vbond_as_stun_server_variable")
|
|
2056
2110
|
|
|
2057
|
-
@property
|
|
2111
|
+
@_builtins.property
|
|
2058
2112
|
@pulumi.getter(name="tunnelInterfaceVmanageConnectionPreference")
|
|
2059
|
-
def tunnel_interface_vmanage_connection_preference(self) -> int:
|
|
2113
|
+
def tunnel_interface_vmanage_connection_preference(self) -> _builtins.int:
|
|
2060
2114
|
"""
|
|
2061
2115
|
Set interface preference for control connection to vManage \\n\\n
|
|
2062
2116
|
"""
|
|
2063
2117
|
return pulumi.get(self, "tunnel_interface_vmanage_connection_preference")
|
|
2064
2118
|
|
|
2065
|
-
@property
|
|
2119
|
+
@_builtins.property
|
|
2066
2120
|
@pulumi.getter(name="tunnelInterfaceVmanageConnectionPreferenceVariable")
|
|
2067
|
-
def tunnel_interface_vmanage_connection_preference_variable(self) -> str:
|
|
2121
|
+
def tunnel_interface_vmanage_connection_preference_variable(self) -> _builtins.str:
|
|
2068
2122
|
"""
|
|
2069
2123
|
Variable name
|
|
2070
2124
|
"""
|
|
2071
2125
|
return pulumi.get(self, "tunnel_interface_vmanage_connection_preference_variable")
|
|
2072
2126
|
|
|
2073
|
-
@property
|
|
2127
|
+
@_builtins.property
|
|
2074
2128
|
@pulumi.getter(name="tunnelQosMode")
|
|
2075
|
-
def tunnel_qos_mode(self) -> str:
|
|
2129
|
+
def tunnel_qos_mode(self) -> _builtins.str:
|
|
2076
2130
|
"""
|
|
2077
2131
|
Set tunnel QoS mode
|
|
2078
2132
|
"""
|
|
2079
2133
|
return pulumi.get(self, "tunnel_qos_mode")
|
|
2080
2134
|
|
|
2081
|
-
@property
|
|
2135
|
+
@_builtins.property
|
|
2082
2136
|
@pulumi.getter(name="tunnelQosModeVariable")
|
|
2083
|
-
def tunnel_qos_mode_variable(self) -> str:
|
|
2137
|
+
def tunnel_qos_mode_variable(self) -> _builtins.str:
|
|
2084
2138
|
"""
|
|
2085
2139
|
Variable name
|
|
2086
2140
|
"""
|
|
2087
2141
|
return pulumi.get(self, "tunnel_qos_mode_variable")
|
|
2088
2142
|
|
|
2089
|
-
@property
|
|
2143
|
+
@_builtins.property
|
|
2090
2144
|
@pulumi.getter
|
|
2091
|
-
def version(self) -> int:
|
|
2145
|
+
def version(self) -> _builtins.int:
|
|
2092
2146
|
"""
|
|
2093
2147
|
The version of the Feature
|
|
2094
2148
|
"""
|
|
2095
2149
|
return pulumi.get(self, "version")
|
|
2096
2150
|
|
|
2097
|
-
@property
|
|
2151
|
+
@_builtins.property
|
|
2098
2152
|
@pulumi.getter
|
|
2099
|
-
def xconnect(self) -> str:
|
|
2153
|
+
def xconnect(self) -> _builtins.str:
|
|
2100
2154
|
"""
|
|
2101
2155
|
Extend remote TLOC over a GRE tunnel to a local WAN interface
|
|
2102
2156
|
"""
|
|
2103
2157
|
return pulumi.get(self, "xconnect")
|
|
2104
2158
|
|
|
2105
|
-
@property
|
|
2159
|
+
@_builtins.property
|
|
2106
2160
|
@pulumi.getter(name="xconnectVariable")
|
|
2107
|
-
def xconnect_variable(self) -> str:
|
|
2161
|
+
def xconnect_variable(self) -> _builtins.str:
|
|
2108
2162
|
"""
|
|
2109
2163
|
Variable name
|
|
2110
2164
|
"""
|
|
@@ -2117,6 +2171,10 @@ class AwaitableGetTransportWanVpnInterfaceEthernetFeatureResult(GetTransportWanV
|
|
|
2117
2171
|
if False:
|
|
2118
2172
|
yield self
|
|
2119
2173
|
return GetTransportWanVpnInterfaceEthernetFeatureResult(
|
|
2174
|
+
acl_ipv4_egress_feature_id=self.acl_ipv4_egress_feature_id,
|
|
2175
|
+
acl_ipv4_ingress_feature_id=self.acl_ipv4_ingress_feature_id,
|
|
2176
|
+
acl_ipv6_egress_feature_id=self.acl_ipv6_egress_feature_id,
|
|
2177
|
+
acl_ipv6_ingress_feature_id=self.acl_ipv6_ingress_feature_id,
|
|
2120
2178
|
arp_timeout=self.arp_timeout,
|
|
2121
2179
|
arp_timeout_variable=self.arp_timeout_variable,
|
|
2122
2180
|
arps=self.arps,
|
|
@@ -2154,6 +2212,7 @@ class AwaitableGetTransportWanVpnInterfaceEthernetFeatureResult(GetTransportWanV
|
|
|
2154
2212
|
iperf_server_variable=self.iperf_server_variable,
|
|
2155
2213
|
ipv4_address=self.ipv4_address,
|
|
2156
2214
|
ipv4_address_variable=self.ipv4_address_variable,
|
|
2215
|
+
ipv4_configuration_type=self.ipv4_configuration_type,
|
|
2157
2216
|
ipv4_dhcp_distance=self.ipv4_dhcp_distance,
|
|
2158
2217
|
ipv4_dhcp_distance_variable=self.ipv4_dhcp_distance_variable,
|
|
2159
2218
|
ipv4_dhcp_helper_variable=self.ipv4_dhcp_helper_variable,
|
|
@@ -2163,6 +2222,7 @@ class AwaitableGetTransportWanVpnInterfaceEthernetFeatureResult(GetTransportWanV
|
|
|
2163
2222
|
ipv4_subnet_mask_variable=self.ipv4_subnet_mask_variable,
|
|
2164
2223
|
ipv6_address=self.ipv6_address,
|
|
2165
2224
|
ipv6_address_variable=self.ipv6_address_variable,
|
|
2225
|
+
ipv6_configuration_type=self.ipv6_configuration_type,
|
|
2166
2226
|
ipv6_dhcp_secondary_addresses=self.ipv6_dhcp_secondary_addresses,
|
|
2167
2227
|
ipv6_secondary_addresses=self.ipv6_secondary_addresses,
|
|
2168
2228
|
load_interval=self.load_interval,
|
|
@@ -2309,9 +2369,9 @@ class AwaitableGetTransportWanVpnInterfaceEthernetFeatureResult(GetTransportWanV
|
|
|
2309
2369
|
xconnect_variable=self.xconnect_variable)
|
|
2310
2370
|
|
|
2311
2371
|
|
|
2312
|
-
def get_transport_wan_vpn_interface_ethernet_feature(feature_profile_id: Optional[str] = None,
|
|
2313
|
-
id: Optional[str] = None,
|
|
2314
|
-
transport_wan_vpn_feature_id: Optional[str] = None,
|
|
2372
|
+
def get_transport_wan_vpn_interface_ethernet_feature(feature_profile_id: Optional[_builtins.str] = None,
|
|
2373
|
+
id: Optional[_builtins.str] = None,
|
|
2374
|
+
transport_wan_vpn_feature_id: Optional[_builtins.str] = None,
|
|
2315
2375
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTransportWanVpnInterfaceEthernetFeatureResult:
|
|
2316
2376
|
"""
|
|
2317
2377
|
This data source can read the Transport WAN VPN Interface Ethernet Feature.
|
|
@@ -2328,9 +2388,9 @@ def get_transport_wan_vpn_interface_ethernet_feature(feature_profile_id: Optiona
|
|
|
2328
2388
|
```
|
|
2329
2389
|
|
|
2330
2390
|
|
|
2331
|
-
:param str feature_profile_id: Feature Profile ID
|
|
2332
|
-
:param str id: The id of the Feature
|
|
2333
|
-
:param str transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
2391
|
+
:param _builtins.str feature_profile_id: Feature Profile ID
|
|
2392
|
+
:param _builtins.str id: The id of the Feature
|
|
2393
|
+
:param _builtins.str transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
2334
2394
|
"""
|
|
2335
2395
|
__args__ = dict()
|
|
2336
2396
|
__args__['featureProfileId'] = feature_profile_id
|
|
@@ -2340,6 +2400,10 @@ def get_transport_wan_vpn_interface_ethernet_feature(feature_profile_id: Optiona
|
|
|
2340
2400
|
__ret__ = pulumi.runtime.invoke('sdwan:index/getTransportWanVpnInterfaceEthernetFeature:getTransportWanVpnInterfaceEthernetFeature', __args__, opts=opts, typ=GetTransportWanVpnInterfaceEthernetFeatureResult).value
|
|
2341
2401
|
|
|
2342
2402
|
return AwaitableGetTransportWanVpnInterfaceEthernetFeatureResult(
|
|
2403
|
+
acl_ipv4_egress_feature_id=pulumi.get(__ret__, 'acl_ipv4_egress_feature_id'),
|
|
2404
|
+
acl_ipv4_ingress_feature_id=pulumi.get(__ret__, 'acl_ipv4_ingress_feature_id'),
|
|
2405
|
+
acl_ipv6_egress_feature_id=pulumi.get(__ret__, 'acl_ipv6_egress_feature_id'),
|
|
2406
|
+
acl_ipv6_ingress_feature_id=pulumi.get(__ret__, 'acl_ipv6_ingress_feature_id'),
|
|
2343
2407
|
arp_timeout=pulumi.get(__ret__, 'arp_timeout'),
|
|
2344
2408
|
arp_timeout_variable=pulumi.get(__ret__, 'arp_timeout_variable'),
|
|
2345
2409
|
arps=pulumi.get(__ret__, 'arps'),
|
|
@@ -2377,6 +2441,7 @@ def get_transport_wan_vpn_interface_ethernet_feature(feature_profile_id: Optiona
|
|
|
2377
2441
|
iperf_server_variable=pulumi.get(__ret__, 'iperf_server_variable'),
|
|
2378
2442
|
ipv4_address=pulumi.get(__ret__, 'ipv4_address'),
|
|
2379
2443
|
ipv4_address_variable=pulumi.get(__ret__, 'ipv4_address_variable'),
|
|
2444
|
+
ipv4_configuration_type=pulumi.get(__ret__, 'ipv4_configuration_type'),
|
|
2380
2445
|
ipv4_dhcp_distance=pulumi.get(__ret__, 'ipv4_dhcp_distance'),
|
|
2381
2446
|
ipv4_dhcp_distance_variable=pulumi.get(__ret__, 'ipv4_dhcp_distance_variable'),
|
|
2382
2447
|
ipv4_dhcp_helper_variable=pulumi.get(__ret__, 'ipv4_dhcp_helper_variable'),
|
|
@@ -2386,6 +2451,7 @@ def get_transport_wan_vpn_interface_ethernet_feature(feature_profile_id: Optiona
|
|
|
2386
2451
|
ipv4_subnet_mask_variable=pulumi.get(__ret__, 'ipv4_subnet_mask_variable'),
|
|
2387
2452
|
ipv6_address=pulumi.get(__ret__, 'ipv6_address'),
|
|
2388
2453
|
ipv6_address_variable=pulumi.get(__ret__, 'ipv6_address_variable'),
|
|
2454
|
+
ipv6_configuration_type=pulumi.get(__ret__, 'ipv6_configuration_type'),
|
|
2389
2455
|
ipv6_dhcp_secondary_addresses=pulumi.get(__ret__, 'ipv6_dhcp_secondary_addresses'),
|
|
2390
2456
|
ipv6_secondary_addresses=pulumi.get(__ret__, 'ipv6_secondary_addresses'),
|
|
2391
2457
|
load_interval=pulumi.get(__ret__, 'load_interval'),
|
|
@@ -2530,10 +2596,10 @@ def get_transport_wan_vpn_interface_ethernet_feature(feature_profile_id: Optiona
|
|
|
2530
2596
|
version=pulumi.get(__ret__, 'version'),
|
|
2531
2597
|
xconnect=pulumi.get(__ret__, 'xconnect'),
|
|
2532
2598
|
xconnect_variable=pulumi.get(__ret__, 'xconnect_variable'))
|
|
2533
|
-
def get_transport_wan_vpn_interface_ethernet_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
|
|
2534
|
-
id: Optional[pulumi.Input[str]] = None,
|
|
2535
|
-
transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
|
|
2536
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTransportWanVpnInterfaceEthernetFeatureResult]:
|
|
2599
|
+
def get_transport_wan_vpn_interface_ethernet_feature_output(feature_profile_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2600
|
+
id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2601
|
+
transport_wan_vpn_feature_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2602
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTransportWanVpnInterfaceEthernetFeatureResult]:
|
|
2537
2603
|
"""
|
|
2538
2604
|
This data source can read the Transport WAN VPN Interface Ethernet Feature.
|
|
2539
2605
|
|
|
@@ -2549,17 +2615,21 @@ def get_transport_wan_vpn_interface_ethernet_feature_output(feature_profile_id:
|
|
|
2549
2615
|
```
|
|
2550
2616
|
|
|
2551
2617
|
|
|
2552
|
-
:param str feature_profile_id: Feature Profile ID
|
|
2553
|
-
:param str id: The id of the Feature
|
|
2554
|
-
:param str transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
2618
|
+
:param _builtins.str feature_profile_id: Feature Profile ID
|
|
2619
|
+
:param _builtins.str id: The id of the Feature
|
|
2620
|
+
:param _builtins.str transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
2555
2621
|
"""
|
|
2556
2622
|
__args__ = dict()
|
|
2557
2623
|
__args__['featureProfileId'] = feature_profile_id
|
|
2558
2624
|
__args__['id'] = id
|
|
2559
2625
|
__args__['transportWanVpnFeatureId'] = transport_wan_vpn_feature_id
|
|
2560
|
-
opts = pulumi.
|
|
2626
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
2561
2627
|
__ret__ = pulumi.runtime.invoke_output('sdwan:index/getTransportWanVpnInterfaceEthernetFeature:getTransportWanVpnInterfaceEthernetFeature', __args__, opts=opts, typ=GetTransportWanVpnInterfaceEthernetFeatureResult)
|
|
2562
2628
|
return __ret__.apply(lambda __response__: GetTransportWanVpnInterfaceEthernetFeatureResult(
|
|
2629
|
+
acl_ipv4_egress_feature_id=pulumi.get(__response__, 'acl_ipv4_egress_feature_id'),
|
|
2630
|
+
acl_ipv4_ingress_feature_id=pulumi.get(__response__, 'acl_ipv4_ingress_feature_id'),
|
|
2631
|
+
acl_ipv6_egress_feature_id=pulumi.get(__response__, 'acl_ipv6_egress_feature_id'),
|
|
2632
|
+
acl_ipv6_ingress_feature_id=pulumi.get(__response__, 'acl_ipv6_ingress_feature_id'),
|
|
2563
2633
|
arp_timeout=pulumi.get(__response__, 'arp_timeout'),
|
|
2564
2634
|
arp_timeout_variable=pulumi.get(__response__, 'arp_timeout_variable'),
|
|
2565
2635
|
arps=pulumi.get(__response__, 'arps'),
|
|
@@ -2597,6 +2667,7 @@ def get_transport_wan_vpn_interface_ethernet_feature_output(feature_profile_id:
|
|
|
2597
2667
|
iperf_server_variable=pulumi.get(__response__, 'iperf_server_variable'),
|
|
2598
2668
|
ipv4_address=pulumi.get(__response__, 'ipv4_address'),
|
|
2599
2669
|
ipv4_address_variable=pulumi.get(__response__, 'ipv4_address_variable'),
|
|
2670
|
+
ipv4_configuration_type=pulumi.get(__response__, 'ipv4_configuration_type'),
|
|
2600
2671
|
ipv4_dhcp_distance=pulumi.get(__response__, 'ipv4_dhcp_distance'),
|
|
2601
2672
|
ipv4_dhcp_distance_variable=pulumi.get(__response__, 'ipv4_dhcp_distance_variable'),
|
|
2602
2673
|
ipv4_dhcp_helper_variable=pulumi.get(__response__, 'ipv4_dhcp_helper_variable'),
|
|
@@ -2606,6 +2677,7 @@ def get_transport_wan_vpn_interface_ethernet_feature_output(feature_profile_id:
|
|
|
2606
2677
|
ipv4_subnet_mask_variable=pulumi.get(__response__, 'ipv4_subnet_mask_variable'),
|
|
2607
2678
|
ipv6_address=pulumi.get(__response__, 'ipv6_address'),
|
|
2608
2679
|
ipv6_address_variable=pulumi.get(__response__, 'ipv6_address_variable'),
|
|
2680
|
+
ipv6_configuration_type=pulumi.get(__response__, 'ipv6_configuration_type'),
|
|
2609
2681
|
ipv6_dhcp_secondary_addresses=pulumi.get(__response__, 'ipv6_dhcp_secondary_addresses'),
|
|
2610
2682
|
ipv6_secondary_addresses=pulumi.get(__response__, 'ipv6_secondary_addresses'),
|
|
2611
2683
|
load_interval=pulumi.get(__response__, 'load_interval'),
|