pulumi-sdwan 0.6.0a1760684516__py3-none-any.whl → 0.6.0a1762412463__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.
Files changed (130) hide show
  1. pulumi_sdwan/__init__.py +70 -0
  2. pulumi_sdwan/_inputs.py +146 -22
  3. pulumi_sdwan/application_aware_routing_policy_definition.py +192 -0
  4. pulumi_sdwan/application_priority_qos_policy.py +34 -0
  5. pulumi_sdwan/application_priority_traffic_policy_policy.py +50 -0
  6. pulumi_sdwan/as_path_list_policy_object.py +22 -0
  7. pulumi_sdwan/cedge_aaa_feature_template.py +162 -0
  8. pulumi_sdwan/cedge_igmp_feature_template.py +34 -0
  9. pulumi_sdwan/cedge_pim_feature_template.py +80 -0
  10. pulumi_sdwan/cellular_controller_feature_template.py +40 -0
  11. pulumi_sdwan/cflowd_policy_definition.py +52 -0
  12. pulumi_sdwan/cisco_bfd_feature_template.py +40 -0
  13. pulumi_sdwan/cisco_dhcp_server_feature_template.py +60 -0
  14. pulumi_sdwan/cisco_ntp_feature_template.py +52 -0
  15. pulumi_sdwan/cisco_omp_feature_template.py +60 -0
  16. pulumi_sdwan/cisco_ospf_feature_template.py +122 -0
  17. pulumi_sdwan/cisco_ospfv3_feature_template.py +222 -0
  18. pulumi_sdwan/cisco_secure_internet_gateway_feature_template.py +166 -0
  19. pulumi_sdwan/cisco_security_feature_template.py +84 -0
  20. pulumi_sdwan/cisco_snmp_feature_template.py +92 -0
  21. pulumi_sdwan/cisco_system_feature_template.py +114 -0
  22. pulumi_sdwan/cisco_thousandeyes_feature_template.py +46 -0
  23. pulumi_sdwan/cisco_trustsec_feature_template.py +72 -0
  24. pulumi_sdwan/cisco_vpn_interface_feature_template.py +370 -0
  25. pulumi_sdwan/cisco_vpn_interface_gre_feature_template.py +56 -0
  26. pulumi_sdwan/cisco_wireless_lan_feature_template.py +62 -0
  27. pulumi_sdwan/custom_control_topology_policy_definition.py +56 -0
  28. pulumi_sdwan/eigrp_feature_template.py +68 -0
  29. pulumi_sdwan/get_application_aware_routing_policy_definition.py +43 -1
  30. pulumi_sdwan/get_policy_object_security_protocol_list.py +174 -0
  31. pulumi_sdwan/get_policy_object_unified_advanced_inspection_profile.py +217 -0
  32. pulumi_sdwan/get_policy_object_unified_advanced_malware_protection.py +239 -0
  33. pulumi_sdwan/get_policy_object_unified_intrusion_prevention.py +229 -0
  34. pulumi_sdwan/get_policy_object_unified_tls_ssl_decryption.py +325 -0
  35. pulumi_sdwan/get_policy_object_unified_tls_ssl_profile.py +261 -0
  36. pulumi_sdwan/get_policy_object_unified_url_filtering.py +272 -0
  37. pulumi_sdwan/hub_and_spoke_topology_policy_definition.py +46 -0
  38. pulumi_sdwan/intrusion_prevention_policy_definition.py +38 -0
  39. pulumi_sdwan/ips_signature_list_policy_object.py +24 -0
  40. pulumi_sdwan/ipv4_acl_policy_definition.py +52 -0
  41. pulumi_sdwan/ipv4_device_acl_policy_definition.py +46 -0
  42. pulumi_sdwan/ipv6_acl_policy_definition.py +52 -0
  43. pulumi_sdwan/ipv6_device_acl_policy_definition.py +46 -0
  44. pulumi_sdwan/mesh_topology_policy_definition.py +28 -0
  45. pulumi_sdwan/other_thousandeyes_feature.py +44 -0
  46. pulumi_sdwan/other_ucse_feature.py +48 -0
  47. pulumi_sdwan/outputs.py +172 -17
  48. pulumi_sdwan/policy_object_as_path_list.py +28 -0
  49. pulumi_sdwan/policy_object_data_ipv4_prefix_list.py +28 -0
  50. pulumi_sdwan/policy_object_data_ipv6_prefix_list.py +28 -0
  51. pulumi_sdwan/policy_object_extended_community_list.py +26 -0
  52. pulumi_sdwan/policy_object_ipv4_prefix_list.py +32 -0
  53. pulumi_sdwan/policy_object_ipv6_prefix_list.py +32 -0
  54. pulumi_sdwan/policy_object_mirror.py +28 -0
  55. pulumi_sdwan/policy_object_policer.py +30 -0
  56. pulumi_sdwan/policy_object_security_data_ipv4_prefix_list.py +26 -0
  57. pulumi_sdwan/policy_object_security_ips_signature.py +28 -0
  58. pulumi_sdwan/policy_object_security_local_domain_list.py +26 -0
  59. pulumi_sdwan/policy_object_security_protocol_list.py +363 -0
  60. pulumi_sdwan/policy_object_security_scalable_group_tag_list.py +28 -0
  61. pulumi_sdwan/policy_object_sla_class_list.py +34 -0
  62. pulumi_sdwan/policy_object_standard_community_list.py +26 -0
  63. pulumi_sdwan/policy_object_tloc_list.py +32 -0
  64. pulumi_sdwan/policy_object_unified_advanced_inspection_profile.py +514 -0
  65. pulumi_sdwan/policy_object_unified_advanced_malware_protection.py +668 -0
  66. pulumi_sdwan/policy_object_unified_intrusion_prevention.py +576 -0
  67. pulumi_sdwan/policy_object_unified_tls_ssl_decryption.py +985 -0
  68. pulumi_sdwan/policy_object_unified_tls_ssl_profile.py +689 -0
  69. pulumi_sdwan/policy_object_unified_url_filtering.py +761 -0
  70. pulumi_sdwan/pulumi-plugin.json +1 -1
  71. pulumi_sdwan/qos_map_policy_definition.py +36 -0
  72. pulumi_sdwan/region_list_policy_object.py +22 -0
  73. pulumi_sdwan/rewrite_rule_policy_definition.py +30 -0
  74. pulumi_sdwan/route_policy_definition.py +50 -0
  75. pulumi_sdwan/rule_set_policy_definition.py +44 -0
  76. pulumi_sdwan/security_app_hosting_feature_template.py +42 -0
  77. pulumi_sdwan/security_policy.py +40 -0
  78. pulumi_sdwan/service_dhcp_server_feature.py +54 -0
  79. pulumi_sdwan/service_ipv4_acl_feature.py +60 -0
  80. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature.py +170 -0
  81. pulumi_sdwan/service_lan_vpn_interface_svi_feature.py +148 -0
  82. pulumi_sdwan/service_multicast_feature.py +124 -0
  83. pulumi_sdwan/service_object_tracker_group_feature.py +30 -0
  84. pulumi_sdwan/service_routing_bgp_feature.py +194 -0
  85. pulumi_sdwan/service_routing_eigrp_feature.py +62 -0
  86. pulumi_sdwan/service_routing_ospf_feature.py +110 -0
  87. pulumi_sdwan/service_routing_ospfv3_ipv4_feature.py +102 -0
  88. pulumi_sdwan/service_routing_ospfv3_ipv6_feature.py +98 -0
  89. pulumi_sdwan/service_switchport_feature.py +78 -0
  90. pulumi_sdwan/service_tracker_group_feature.py +28 -0
  91. pulumi_sdwan/service_wireless_lan_feature.py +52 -0
  92. pulumi_sdwan/site_list_policy_object.py +22 -0
  93. pulumi_sdwan/system_basic_feature.py +94 -0
  94. pulumi_sdwan/system_bfd_feature.py +40 -0
  95. pulumi_sdwan/system_ipv4_device_access_feature.py +34 -0
  96. pulumi_sdwan/system_ipv6_device_access_feature.py +34 -0
  97. pulumi_sdwan/system_logging_feature.py +72 -0
  98. pulumi_sdwan/system_ntp_feature.py +52 -0
  99. pulumi_sdwan/system_security_feature.py +70 -0
  100. pulumi_sdwan/system_snmp_feature.py +94 -0
  101. pulumi_sdwan/tloc_list_policy_object.py +28 -0
  102. pulumi_sdwan/traffic_data_policy_definition.py +50 -0
  103. pulumi_sdwan/transport_ipv4_acl_feature.py +60 -0
  104. pulumi_sdwan/transport_ipv6_tracker_group_feature.py +30 -0
  105. pulumi_sdwan/transport_management_vpn_feature.py +72 -0
  106. pulumi_sdwan/transport_management_vpn_interface_ethernet_feature.py +84 -0
  107. pulumi_sdwan/transport_routing_bgp_feature.py +202 -0
  108. pulumi_sdwan/transport_routing_ospf_feature.py +110 -0
  109. pulumi_sdwan/transport_routing_ospfv3_ipv4_feature.py +102 -0
  110. pulumi_sdwan/transport_routing_ospfv3_ipv6_feature.py +98 -0
  111. pulumi_sdwan/transport_t1_e1_controller_feature.py +52 -0
  112. pulumi_sdwan/transport_tracker_group_feature.py +28 -0
  113. pulumi_sdwan/transport_wan_vpn_feature.py +92 -0
  114. pulumi_sdwan/transport_wan_vpn_interface_cellular_feature.py +152 -0
  115. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py +228 -0
  116. pulumi_sdwan/url_filtering_policy_definition.py +42 -0
  117. pulumi_sdwan/vpn_interface_cellular_feature_template.py +216 -0
  118. pulumi_sdwan/vpn_interface_dsl_ipoe_feature_template.py +238 -0
  119. pulumi_sdwan/vpn_interface_dsl_pppoa_feature_template.py +252 -0
  120. pulumi_sdwan/vpn_interface_dsl_pppoe_feature_template.py +236 -0
  121. pulumi_sdwan/vpn_interface_ethernet_pppoe_feature_template.py +216 -0
  122. pulumi_sdwan/vpn_interface_svi_feature_template.py +164 -0
  123. pulumi_sdwan/vpn_interface_t1_e1_serial_feature_template.py +160 -0
  124. pulumi_sdwan/vpn_list_policy_object.py +22 -0
  125. pulumi_sdwan/vpn_membership_policy_definition.py +26 -0
  126. pulumi_sdwan/zone_based_firewall_policy_definition.py +56 -0
  127. {pulumi_sdwan-0.6.0a1760684516.dist-info → pulumi_sdwan-0.6.0a1762412463.dist-info}/METADATA +1 -1
  128. {pulumi_sdwan-0.6.0a1760684516.dist-info → pulumi_sdwan-0.6.0a1762412463.dist-info}/RECORD +130 -116
  129. {pulumi_sdwan-0.6.0a1760684516.dist-info → pulumi_sdwan-0.6.0a1762412463.dist-info}/WHEEL +0 -0
  130. {pulumi_sdwan-0.6.0a1760684516.dist-info → pulumi_sdwan-0.6.0a1762412463.dist-info}/top_level.txt +0 -0
@@ -1920,6 +1920,107 @@ class TransportRoutingBgpFeature(pulumi.CustomResource):
1920
1920
 
1921
1921
  ## Example Usage
1922
1922
 
1923
+ ```python
1924
+ import pulumi
1925
+ import pulumi_sdwan as sdwan
1926
+
1927
+ example = sdwan.TransportRoutingBgpFeature("example",
1928
+ name="Example",
1929
+ description="My Example",
1930
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1931
+ as_number=429,
1932
+ router_id="1.2.3.4",
1933
+ propagate_as_path=False,
1934
+ propagate_community=False,
1935
+ external_routes_distance=20,
1936
+ internal_routes_distance=200,
1937
+ local_routes_distance=20,
1938
+ keepalive_time=60,
1939
+ hold_time=180,
1940
+ always_compare_med=False,
1941
+ deterministic_med=False,
1942
+ missing_med_as_worst=False,
1943
+ compare_router_id=False,
1944
+ multipath_relax=False,
1945
+ ipv4_neighbors=[{
1946
+ "address": "1.2.3.4",
1947
+ "description": "neighbor1",
1948
+ "shutdown": False,
1949
+ "remote_as": 200,
1950
+ "local_as": 200,
1951
+ "keepalive_time": 40,
1952
+ "hold_time": 200,
1953
+ "update_source_interface": "GigabitEthernet0",
1954
+ "next_hop_self": False,
1955
+ "send_community": True,
1956
+ "send_extended_community": True,
1957
+ "ebgp_multihop": 1,
1958
+ "password": "myPassword",
1959
+ "send_label": True,
1960
+ "explicit_null": False,
1961
+ "as_override": False,
1962
+ "allowas_in_number": 1,
1963
+ "address_families": [{
1964
+ "family_type": "ipv4-unicast",
1965
+ "policy_type": "restart",
1966
+ "restart_max_number_of_prefixes": 2000,
1967
+ "restart_threshold": 75,
1968
+ "restart_interval": 30,
1969
+ }],
1970
+ }],
1971
+ ipv6_neighbors=[{
1972
+ "address": "2001::1",
1973
+ "description": "neighbor2",
1974
+ "shutdown": False,
1975
+ "remote_as": 200,
1976
+ "local_as": 200,
1977
+ "keepalive_time": 180,
1978
+ "hold_time": 60,
1979
+ "update_source_interface": "Loopback1",
1980
+ "next_hop_self": True,
1981
+ "send_community": True,
1982
+ "send_extended_community": True,
1983
+ "ebgp_multihop": 3,
1984
+ "password": "myPassword",
1985
+ "as_override": True,
1986
+ "allowas_in_number": 3,
1987
+ "address_families": [{
1988
+ "family_type": "ipv6-unicast",
1989
+ "max_number_of_prefixes": 2000,
1990
+ "threshold": 75,
1991
+ "policy_type": "restart",
1992
+ "restart_interval": 30,
1993
+ }],
1994
+ }],
1995
+ ipv4_aggregate_addresses=[{
1996
+ "network_address": "10.10.0.0",
1997
+ "subnet_mask": "255.255.0.0",
1998
+ "as_set_path": False,
1999
+ "summary_only": False,
2000
+ }],
2001
+ ipv4_networks=[{
2002
+ "network_address": "10.10.0.0",
2003
+ "subnet_mask": "255.255.0.0",
2004
+ }],
2005
+ ipv4_eibgp_maximum_paths=1,
2006
+ ipv4_originate=False,
2007
+ ipv4_table_map_filter=False,
2008
+ ipv6_aggregate_addresses=[{
2009
+ "aggregate_prefix": "3001::1/128",
2010
+ "as_set_path": False,
2011
+ "summary_only": False,
2012
+ }],
2013
+ ipv6_networks=[{
2014
+ "network_prefix": "2001:0DB8:0000:000b::/64",
2015
+ }],
2016
+ ipv6_eibgp_maximum_paths=2,
2017
+ ipv6_originate=True,
2018
+ ipv6_table_map_filter=False,
2019
+ mpls_interfaces=[{
2020
+ "interface_name": "GigabitEthernet1",
2021
+ }])
2022
+ ```
2023
+
1923
2024
  ## Import
1924
2025
 
1925
2026
  The `pulumi import` command can be used, for example:
@@ -2020,6 +2121,107 @@ class TransportRoutingBgpFeature(pulumi.CustomResource):
2020
2121
 
2021
2122
  ## Example Usage
2022
2123
 
2124
+ ```python
2125
+ import pulumi
2126
+ import pulumi_sdwan as sdwan
2127
+
2128
+ example = sdwan.TransportRoutingBgpFeature("example",
2129
+ name="Example",
2130
+ description="My Example",
2131
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
2132
+ as_number=429,
2133
+ router_id="1.2.3.4",
2134
+ propagate_as_path=False,
2135
+ propagate_community=False,
2136
+ external_routes_distance=20,
2137
+ internal_routes_distance=200,
2138
+ local_routes_distance=20,
2139
+ keepalive_time=60,
2140
+ hold_time=180,
2141
+ always_compare_med=False,
2142
+ deterministic_med=False,
2143
+ missing_med_as_worst=False,
2144
+ compare_router_id=False,
2145
+ multipath_relax=False,
2146
+ ipv4_neighbors=[{
2147
+ "address": "1.2.3.4",
2148
+ "description": "neighbor1",
2149
+ "shutdown": False,
2150
+ "remote_as": 200,
2151
+ "local_as": 200,
2152
+ "keepalive_time": 40,
2153
+ "hold_time": 200,
2154
+ "update_source_interface": "GigabitEthernet0",
2155
+ "next_hop_self": False,
2156
+ "send_community": True,
2157
+ "send_extended_community": True,
2158
+ "ebgp_multihop": 1,
2159
+ "password": "myPassword",
2160
+ "send_label": True,
2161
+ "explicit_null": False,
2162
+ "as_override": False,
2163
+ "allowas_in_number": 1,
2164
+ "address_families": [{
2165
+ "family_type": "ipv4-unicast",
2166
+ "policy_type": "restart",
2167
+ "restart_max_number_of_prefixes": 2000,
2168
+ "restart_threshold": 75,
2169
+ "restart_interval": 30,
2170
+ }],
2171
+ }],
2172
+ ipv6_neighbors=[{
2173
+ "address": "2001::1",
2174
+ "description": "neighbor2",
2175
+ "shutdown": False,
2176
+ "remote_as": 200,
2177
+ "local_as": 200,
2178
+ "keepalive_time": 180,
2179
+ "hold_time": 60,
2180
+ "update_source_interface": "Loopback1",
2181
+ "next_hop_self": True,
2182
+ "send_community": True,
2183
+ "send_extended_community": True,
2184
+ "ebgp_multihop": 3,
2185
+ "password": "myPassword",
2186
+ "as_override": True,
2187
+ "allowas_in_number": 3,
2188
+ "address_families": [{
2189
+ "family_type": "ipv6-unicast",
2190
+ "max_number_of_prefixes": 2000,
2191
+ "threshold": 75,
2192
+ "policy_type": "restart",
2193
+ "restart_interval": 30,
2194
+ }],
2195
+ }],
2196
+ ipv4_aggregate_addresses=[{
2197
+ "network_address": "10.10.0.0",
2198
+ "subnet_mask": "255.255.0.0",
2199
+ "as_set_path": False,
2200
+ "summary_only": False,
2201
+ }],
2202
+ ipv4_networks=[{
2203
+ "network_address": "10.10.0.0",
2204
+ "subnet_mask": "255.255.0.0",
2205
+ }],
2206
+ ipv4_eibgp_maximum_paths=1,
2207
+ ipv4_originate=False,
2208
+ ipv4_table_map_filter=False,
2209
+ ipv6_aggregate_addresses=[{
2210
+ "aggregate_prefix": "3001::1/128",
2211
+ "as_set_path": False,
2212
+ "summary_only": False,
2213
+ }],
2214
+ ipv6_networks=[{
2215
+ "network_prefix": "2001:0DB8:0000:000b::/64",
2216
+ }],
2217
+ ipv6_eibgp_maximum_paths=2,
2218
+ ipv6_originate=True,
2219
+ ipv6_table_map_filter=False,
2220
+ mpls_interfaces=[{
2221
+ "interface_name": "GigabitEthernet1",
2222
+ }])
2223
+ ```
2224
+
2023
2225
  ## Import
2024
2226
 
2025
2227
  The `pulumi import` command can be used, for example:
@@ -1186,6 +1186,61 @@ class TransportRoutingOspfFeature(pulumi.CustomResource):
1186
1186
 
1187
1187
  ## Example Usage
1188
1188
 
1189
+ ```python
1190
+ import pulumi
1191
+ import pulumi_sdwan as sdwan
1192
+
1193
+ example = sdwan.TransportRoutingOspfFeature("example",
1194
+ name="Example",
1195
+ description="My Example",
1196
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1197
+ router_id="1.2.3.4",
1198
+ reference_bandwidth=101,
1199
+ rfc1583_compatible=True,
1200
+ default_information_originate=False,
1201
+ default_information_originate_always=False,
1202
+ default_information_originate_metric=1,
1203
+ default_information_originate_metric_type="type1",
1204
+ distance_external=110,
1205
+ distance_inter_area=110,
1206
+ distance_intra_area=110,
1207
+ spf_calculation_delay=200,
1208
+ spf_initial_hold_time=1000,
1209
+ spf_maximum_hold_time=10000,
1210
+ redistributes=[{
1211
+ "protocol": "static",
1212
+ "nat_dia": True,
1213
+ }],
1214
+ router_lsas=[{
1215
+ "type": "on-startup",
1216
+ "time": 5,
1217
+ }],
1218
+ areas=[{
1219
+ "area_number": 1,
1220
+ "area_type": "stub",
1221
+ "no_summary": False,
1222
+ "interfaces": [{
1223
+ "name": "GigabitEthernet2",
1224
+ "hello_interval": 10,
1225
+ "dead_interval": 40,
1226
+ "lsa_retransmit_interval": 5,
1227
+ "cost": 10,
1228
+ "designated_router_priority": 1,
1229
+ "network_type": "broadcast",
1230
+ "passive_interface": False,
1231
+ "authentication_type": "message-digest",
1232
+ "message_digest_key_id": 7,
1233
+ "message_digest_key": "sdjfhsghbjdjr",
1234
+ }],
1235
+ "ranges": [{
1236
+ "ip_address": "10.1.1.0",
1237
+ "subnet_mask": "255.255.255.0",
1238
+ "cost": 1,
1239
+ "no_advertise": False,
1240
+ }],
1241
+ }])
1242
+ ```
1243
+
1189
1244
  ## Import
1190
1245
 
1191
1246
  The `pulumi import` command can be used, for example:
@@ -1261,6 +1316,61 @@ class TransportRoutingOspfFeature(pulumi.CustomResource):
1261
1316
 
1262
1317
  ## Example Usage
1263
1318
 
1319
+ ```python
1320
+ import pulumi
1321
+ import pulumi_sdwan as sdwan
1322
+
1323
+ example = sdwan.TransportRoutingOspfFeature("example",
1324
+ name="Example",
1325
+ description="My Example",
1326
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1327
+ router_id="1.2.3.4",
1328
+ reference_bandwidth=101,
1329
+ rfc1583_compatible=True,
1330
+ default_information_originate=False,
1331
+ default_information_originate_always=False,
1332
+ default_information_originate_metric=1,
1333
+ default_information_originate_metric_type="type1",
1334
+ distance_external=110,
1335
+ distance_inter_area=110,
1336
+ distance_intra_area=110,
1337
+ spf_calculation_delay=200,
1338
+ spf_initial_hold_time=1000,
1339
+ spf_maximum_hold_time=10000,
1340
+ redistributes=[{
1341
+ "protocol": "static",
1342
+ "nat_dia": True,
1343
+ }],
1344
+ router_lsas=[{
1345
+ "type": "on-startup",
1346
+ "time": 5,
1347
+ }],
1348
+ areas=[{
1349
+ "area_number": 1,
1350
+ "area_type": "stub",
1351
+ "no_summary": False,
1352
+ "interfaces": [{
1353
+ "name": "GigabitEthernet2",
1354
+ "hello_interval": 10,
1355
+ "dead_interval": 40,
1356
+ "lsa_retransmit_interval": 5,
1357
+ "cost": 10,
1358
+ "designated_router_priority": 1,
1359
+ "network_type": "broadcast",
1360
+ "passive_interface": False,
1361
+ "authentication_type": "message-digest",
1362
+ "message_digest_key_id": 7,
1363
+ "message_digest_key": "sdjfhsghbjdjr",
1364
+ }],
1365
+ "ranges": [{
1366
+ "ip_address": "10.1.1.0",
1367
+ "subnet_mask": "255.255.255.0",
1368
+ "cost": 1,
1369
+ "no_advertise": False,
1370
+ }],
1371
+ }])
1372
+ ```
1373
+
1264
1374
  ## Import
1265
1375
 
1266
1376
  The `pulumi import` command can be used, for example:
@@ -1392,6 +1392,57 @@ class TransportRoutingOspfv3Ipv4Feature(pulumi.CustomResource):
1392
1392
 
1393
1393
  ## Example Usage
1394
1394
 
1395
+ ```python
1396
+ import pulumi
1397
+ import pulumi_sdwan as sdwan
1398
+
1399
+ example = sdwan.TransportRoutingOspfv3Ipv4Feature("example",
1400
+ name="Example",
1401
+ description="My Example",
1402
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1403
+ router_id="1.2.3.4",
1404
+ distance=110,
1405
+ distance_external=110,
1406
+ distance_inter_area=110,
1407
+ distance_intra_area=110,
1408
+ reference_bandwidth=101,
1409
+ rfc1583_compatible=True,
1410
+ default_information_originate=False,
1411
+ default_information_originate_always=False,
1412
+ default_information_originate_metric=1,
1413
+ default_information_originate_metric_type="type1",
1414
+ spf_calculation_delay=200,
1415
+ spf_initial_hold_time=1000,
1416
+ spf_maximum_hold_time=10000,
1417
+ filter=False,
1418
+ redistributes=[{
1419
+ "protocol": "nat-route",
1420
+ "nat_dia": True,
1421
+ }],
1422
+ router_lsa_action="on-startup",
1423
+ router_lsa_on_startup_time=30,
1424
+ areas=[{
1425
+ "area_number": 1,
1426
+ "area_type": "stub",
1427
+ "interfaces": [{
1428
+ "name": "GigabitEthernet2",
1429
+ "hello_interval": 10,
1430
+ "dead_interval": 40,
1431
+ "lsa_retransmit_interval": 5,
1432
+ "cost": 10,
1433
+ "network_type": "broadcast",
1434
+ "passive_interface": False,
1435
+ "authentication_type": "no-auth",
1436
+ }],
1437
+ "ranges": [{
1438
+ "ip_address": "10.1.1.0",
1439
+ "subnet_mask": "255.255.255.0",
1440
+ "cost": 1,
1441
+ "no_advertise": False,
1442
+ }],
1443
+ }])
1444
+ ```
1445
+
1395
1446
  ## Import
1396
1447
 
1397
1448
  The `pulumi import` command can be used, for example:
@@ -1475,6 +1526,57 @@ class TransportRoutingOspfv3Ipv4Feature(pulumi.CustomResource):
1475
1526
 
1476
1527
  ## Example Usage
1477
1528
 
1529
+ ```python
1530
+ import pulumi
1531
+ import pulumi_sdwan as sdwan
1532
+
1533
+ example = sdwan.TransportRoutingOspfv3Ipv4Feature("example",
1534
+ name="Example",
1535
+ description="My Example",
1536
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1537
+ router_id="1.2.3.4",
1538
+ distance=110,
1539
+ distance_external=110,
1540
+ distance_inter_area=110,
1541
+ distance_intra_area=110,
1542
+ reference_bandwidth=101,
1543
+ rfc1583_compatible=True,
1544
+ default_information_originate=False,
1545
+ default_information_originate_always=False,
1546
+ default_information_originate_metric=1,
1547
+ default_information_originate_metric_type="type1",
1548
+ spf_calculation_delay=200,
1549
+ spf_initial_hold_time=1000,
1550
+ spf_maximum_hold_time=10000,
1551
+ filter=False,
1552
+ redistributes=[{
1553
+ "protocol": "nat-route",
1554
+ "nat_dia": True,
1555
+ }],
1556
+ router_lsa_action="on-startup",
1557
+ router_lsa_on_startup_time=30,
1558
+ areas=[{
1559
+ "area_number": 1,
1560
+ "area_type": "stub",
1561
+ "interfaces": [{
1562
+ "name": "GigabitEthernet2",
1563
+ "hello_interval": 10,
1564
+ "dead_interval": 40,
1565
+ "lsa_retransmit_interval": 5,
1566
+ "cost": 10,
1567
+ "network_type": "broadcast",
1568
+ "passive_interface": False,
1569
+ "authentication_type": "no-auth",
1570
+ }],
1571
+ "ranges": [{
1572
+ "ip_address": "10.1.1.0",
1573
+ "subnet_mask": "255.255.255.0",
1574
+ "cost": 1,
1575
+ "no_advertise": False,
1576
+ }],
1577
+ }])
1578
+ ```
1579
+
1478
1580
  ## Import
1479
1581
 
1480
1582
  The `pulumi import` command can be used, for example:
@@ -1392,6 +1392,55 @@ class TransportRoutingOspfv3Ipv6Feature(pulumi.CustomResource):
1392
1392
 
1393
1393
  ## Example Usage
1394
1394
 
1395
+ ```python
1396
+ import pulumi
1397
+ import pulumi_sdwan as sdwan
1398
+
1399
+ example = sdwan.TransportRoutingOspfv3Ipv6Feature("example",
1400
+ name="Example",
1401
+ description="My Example",
1402
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1403
+ router_id="1.2.3.4",
1404
+ distance=110,
1405
+ distance_external=110,
1406
+ distance_inter_area=110,
1407
+ distance_intra_area=110,
1408
+ reference_bandwidth=101,
1409
+ rfc1583_compatible=True,
1410
+ default_information_originate=False,
1411
+ default_information_originate_always=False,
1412
+ default_information_originate_metric=1,
1413
+ default_information_originate_metric_type="type1",
1414
+ spf_calculation_delay=200,
1415
+ spf_initial_hold_time=1000,
1416
+ spf_maximum_hold_time=10000,
1417
+ filter=False,
1418
+ redistributes=[{
1419
+ "protocol": "static",
1420
+ }],
1421
+ router_lsa_action="on-startup",
1422
+ router_lsa_on_startup_time=30,
1423
+ areas=[{
1424
+ "area_number": 1,
1425
+ "area_type": "stub",
1426
+ "interfaces": [{
1427
+ "name": "GigabitEthernet2",
1428
+ "hello_interval": 10,
1429
+ "dead_interval": 40,
1430
+ "lsa_retransmit_interval": 5,
1431
+ "cost": 10,
1432
+ "network_type": "broadcast",
1433
+ "passive_interface": False,
1434
+ "authentication_type": "no-auth",
1435
+ }],
1436
+ "ranges": [{
1437
+ "prefix": "3002::/96",
1438
+ "cost": 1,
1439
+ "no_advertise": False,
1440
+ }],
1441
+ }])
1442
+ ```
1443
+
1395
1444
  ## Import
1396
1445
 
1397
1446
  The `pulumi import` command can be used, for example:
@@ -1475,6 +1524,55 @@ class TransportRoutingOspfv3Ipv6Feature(pulumi.CustomResource):
1475
1524
 
1476
1525
  ## Example Usage
1477
1526
 
1527
+ ```python
1528
+ import pulumi
1529
+ import pulumi_sdwan as sdwan
1530
+
1531
+ example = sdwan.TransportRoutingOspfv3Ipv6Feature("example",
1532
+ name="Example",
1533
+ description="My Example",
1534
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1535
+ router_id="1.2.3.4",
1536
+ distance=110,
1537
+ distance_external=110,
1538
+ distance_inter_area=110,
1539
+ distance_intra_area=110,
1540
+ reference_bandwidth=101,
1541
+ rfc1583_compatible=True,
1542
+ default_information_originate=False,
1543
+ default_information_originate_always=False,
1544
+ default_information_originate_metric=1,
1545
+ default_information_originate_metric_type="type1",
1546
+ spf_calculation_delay=200,
1547
+ spf_initial_hold_time=1000,
1548
+ spf_maximum_hold_time=10000,
1549
+ filter=False,
1550
+ redistributes=[{
1551
+ "protocol": "static",
1552
+ }],
1553
+ router_lsa_action="on-startup",
1554
+ router_lsa_on_startup_time=30,
1555
+ areas=[{
1556
+ "area_number": 1,
1557
+ "area_type": "stub",
1558
+ "interfaces": [{
1559
+ "name": "GigabitEthernet2",
1560
+ "hello_interval": 10,
1561
+ "dead_interval": 40,
1562
+ "lsa_retransmit_interval": 5,
1563
+ "cost": 10,
1564
+ "network_type": "broadcast",
1565
+ "passive_interface": False,
1566
+ "authentication_type": "no-auth",
1567
+ }],
1568
+ "ranges": [{
1569
+ "prefix": "3002::/96",
1570
+ "cost": 1,
1571
+ "no_advertise": False,
1572
+ }],
1573
+ }])
1574
+ ```
1575
+
1478
1576
  ## Import
1479
1577
 
1480
1578
  The `pulumi import` command can be used, for example:
@@ -295,6 +295,32 @@ class TransportT1E1ControllerFeature(pulumi.CustomResource):
295
295
 
296
296
  ## Example Usage
297
297
 
298
+ ```python
299
+ import pulumi
300
+ import pulumi_sdwan as sdwan
301
+
302
+ example = sdwan.TransportT1E1ControllerFeature("example",
303
+ name="Example",
304
+ description="My Example",
305
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
306
+ type="t1",
307
+ slot="11",
308
+ entries=[{
309
+ "t1_description": "T1",
310
+ "t1_framing": "esf",
311
+ "t1_linecode": "ami",
312
+ "cable_length": "long",
313
+ "length_long": "-7.5db",
314
+ "clock_source": "line",
315
+ "line_mode": "primary",
316
+ "description": "desc",
317
+ "channel_groups": [{
318
+ "channel_group": 12,
319
+ "time_slot": "timeslots 15",
320
+ }],
321
+ }])
322
+ ```
323
+
298
324
  ## Import
299
325
 
300
326
  The `pulumi import` command can be used, for example:
@@ -328,6 +354,32 @@ class TransportT1E1ControllerFeature(pulumi.CustomResource):
328
354
 
329
355
  ## Example Usage
330
356
 
357
+ ```python
358
+ import pulumi
359
+ import pulumi_sdwan as sdwan
360
+
361
+ example = sdwan.TransportT1E1ControllerFeature("example",
362
+ name="Example",
363
+ description="My Example",
364
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
365
+ type="t1",
366
+ slot="11",
367
+ entries=[{
368
+ "t1_description": "T1",
369
+ "t1_framing": "esf",
370
+ "t1_linecode": "ami",
371
+ "cable_length": "long",
372
+ "length_long": "-7.5db",
373
+ "clock_source": "line",
374
+ "line_mode": "primary",
375
+ "description": "desc",
376
+ "channel_groups": [{
377
+ "channel_group": 12,
378
+ "time_slot": "timeslots 15",
379
+ }],
380
+ }])
381
+ ```
382
+
331
383
  ## Import
332
384
 
333
385
  The `pulumi import` command can be used, for example:
@@ -268,6 +268,20 @@ class TransportTrackerGroupFeature(pulumi.CustomResource):
268
268
 
269
269
  ## Example Usage
270
270
 
271
+ ```python
272
+ import pulumi
273
+ import pulumi_sdwan as sdwan
274
+
275
+ example = sdwan.TransportTrackerGroupFeature("example",
276
+ name="Example",
277
+ description="My Example",
278
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
279
+ tracker_elements=[{
280
+ "tracker_id": "615d948f-34ee-4a2e-810e-a9bd8d3d48ec",
281
+ }],
282
+ tracker_boolean="or")
283
+ ```
284
+
271
285
  ## Import
272
286
 
273
287
  The `pulumi import` command can be used, for example:
@@ -301,6 +315,20 @@ class TransportTrackerGroupFeature(pulumi.CustomResource):
301
315
 
302
316
  ## Example Usage
303
317
 
318
+ ```python
319
+ import pulumi
320
+ import pulumi_sdwan as sdwan
321
+
322
+ example = sdwan.TransportTrackerGroupFeature("example",
323
+ name="Example",
324
+ description="My Example",
325
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
326
+ tracker_elements=[{
327
+ "tracker_id": "615d948f-34ee-4a2e-810e-a9bd8d3d48ec",
328
+ }],
329
+ tracker_boolean="or")
330
+ ```
331
+
304
332
  ## Import
305
333
 
306
334
  The `pulumi import` command can be used, for example: