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
@@ -3090,6 +3090,91 @@ class ServiceLanVpnInterfaceEthernetFeature(pulumi.CustomResource):
3090
3090
 
3091
3091
  ## Example Usage
3092
3092
 
3093
+ ```python
3094
+ import pulumi
3095
+ import pulumi_sdwan as sdwan
3096
+
3097
+ example = sdwan.ServiceLanVpnInterfaceEthernetFeature("example",
3098
+ name="Example",
3099
+ description="My Example",
3100
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
3101
+ service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
3102
+ shutdown=False,
3103
+ interface_name="GigabitEthernet3",
3104
+ interface_description="LAN",
3105
+ ipv4_configuration_type="static",
3106
+ ipv4_address="1.2.3.4",
3107
+ ipv4_subnet_mask="0.0.0.0",
3108
+ ipv4_secondary_addresses=[{
3109
+ "address": "1.2.3.5",
3110
+ "subnet_mask": "0.0.0.0",
3111
+ }],
3112
+ ipv4_dhcp_helpers=["1.2.3.4"],
3113
+ ipv6_configuration_type="static",
3114
+ ipv6_dhcp_helpers=[{
3115
+ "address": "2001:0:0:1::0",
3116
+ "dhcpv6_helper_vpn": 1,
3117
+ }],
3118
+ ipv4_nat=False,
3119
+ ipv4_nat_range_start="1.2.3.4",
3120
+ ipv4_nat_range_end="4.5.6.7",
3121
+ ipv4_nat_prefix_length=1,
3122
+ ipv4_nat_overload=True,
3123
+ ipv6_nat=True,
3124
+ nat64=False,
3125
+ acl_shaping_rate=12,
3126
+ ipv6_vrrps=[{
3127
+ "group_id": 1,
3128
+ "priority": 100,
3129
+ "timer": 1000,
3130
+ "track_omp": False,
3131
+ "ipv6_addresses": [{
3132
+ "link_local_address": "1::1",
3133
+ "global_address": "1::1/24",
3134
+ }],
3135
+ }],
3136
+ ipv4_vrrps=[{
3137
+ "group_id": 1,
3138
+ "priority": 100,
3139
+ "timer": 1000,
3140
+ "track_omp": False,
3141
+ "address": "1.2.3.4",
3142
+ "secondary_addresses": [{
3143
+ "address": "2.3.4.5",
3144
+ "subnet_mask": "0.0.0.0",
3145
+ }],
3146
+ "tloc_prefix_change": True,
3147
+ "tloc_pref_change_value": 100,
3148
+ "tracking_objects": [{
3149
+ "tracker_id": "1b270f6d-479b-47e3-ab0b-51bc6811a303",
3150
+ "tracker_action": "Decrement",
3151
+ "decrement_value": 100,
3152
+ }],
3153
+ }],
3154
+ arps=[{
3155
+ "ip_address": "1.2.3.4",
3156
+ "mac_address": "00-B0-D0-63-C2-26",
3157
+ }],
3158
+ trustsec_enable_sgt_propogation=False,
3159
+ trustsec_propogate=True,
3160
+ trustsec_security_group_tag=123,
3161
+ trustsec_enable_enforced_propogation=False,
3162
+ trustsec_enforced_security_group_tag=1234,
3163
+ duplex="full",
3164
+ mac_address="00-B0-D0-63-C2-26",
3165
+ ip_mtu=1500,
3166
+ interface_mtu=1500,
3167
+ tcp_mss=500,
3168
+ speed="1000",
3169
+ arp_timeout=1200,
3170
+ autonegotiate=False,
3171
+ media_type="auto-select",
3172
+ load_interval=30,
3173
+ icmp_redirect_disable=True,
3174
+ xconnect="1",
3175
+ ip_directed_broadcast=False)
3176
+ ```
3177
+
3093
3178
  ## Import
3094
3179
 
3095
3180
  The `pulumi import` command can be used, for example:
@@ -3233,6 +3318,91 @@ class ServiceLanVpnInterfaceEthernetFeature(pulumi.CustomResource):
3233
3318
 
3234
3319
  ## Example Usage
3235
3320
 
3321
+ ```python
3322
+ import pulumi
3323
+ import pulumi_sdwan as sdwan
3324
+
3325
+ example = sdwan.ServiceLanVpnInterfaceEthernetFeature("example",
3326
+ name="Example",
3327
+ description="My Example",
3328
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
3329
+ service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
3330
+ shutdown=False,
3331
+ interface_name="GigabitEthernet3",
3332
+ interface_description="LAN",
3333
+ ipv4_configuration_type="static",
3334
+ ipv4_address="1.2.3.4",
3335
+ ipv4_subnet_mask="0.0.0.0",
3336
+ ipv4_secondary_addresses=[{
3337
+ "address": "1.2.3.5",
3338
+ "subnet_mask": "0.0.0.0",
3339
+ }],
3340
+ ipv4_dhcp_helpers=["1.2.3.4"],
3341
+ ipv6_configuration_type="static",
3342
+ ipv6_dhcp_helpers=[{
3343
+ "address": "2001:0:0:1::0",
3344
+ "dhcpv6_helper_vpn": 1,
3345
+ }],
3346
+ ipv4_nat=False,
3347
+ ipv4_nat_range_start="1.2.3.4",
3348
+ ipv4_nat_range_end="4.5.6.7",
3349
+ ipv4_nat_prefix_length=1,
3350
+ ipv4_nat_overload=True,
3351
+ ipv6_nat=True,
3352
+ nat64=False,
3353
+ acl_shaping_rate=12,
3354
+ ipv6_vrrps=[{
3355
+ "group_id": 1,
3356
+ "priority": 100,
3357
+ "timer": 1000,
3358
+ "track_omp": False,
3359
+ "ipv6_addresses": [{
3360
+ "link_local_address": "1::1",
3361
+ "global_address": "1::1/24",
3362
+ }],
3363
+ }],
3364
+ ipv4_vrrps=[{
3365
+ "group_id": 1,
3366
+ "priority": 100,
3367
+ "timer": 1000,
3368
+ "track_omp": False,
3369
+ "address": "1.2.3.4",
3370
+ "secondary_addresses": [{
3371
+ "address": "2.3.4.5",
3372
+ "subnet_mask": "0.0.0.0",
3373
+ }],
3374
+ "tloc_prefix_change": True,
3375
+ "tloc_pref_change_value": 100,
3376
+ "tracking_objects": [{
3377
+ "tracker_id": "1b270f6d-479b-47e3-ab0b-51bc6811a303",
3378
+ "tracker_action": "Decrement",
3379
+ "decrement_value": 100,
3380
+ }],
3381
+ }],
3382
+ arps=[{
3383
+ "ip_address": "1.2.3.4",
3384
+ "mac_address": "00-B0-D0-63-C2-26",
3385
+ }],
3386
+ trustsec_enable_sgt_propogation=False,
3387
+ trustsec_propogate=True,
3388
+ trustsec_security_group_tag=123,
3389
+ trustsec_enable_enforced_propogation=False,
3390
+ trustsec_enforced_security_group_tag=1234,
3391
+ duplex="full",
3392
+ mac_address="00-B0-D0-63-C2-26",
3393
+ ip_mtu=1500,
3394
+ interface_mtu=1500,
3395
+ tcp_mss=500,
3396
+ speed="1000",
3397
+ arp_timeout=1200,
3398
+ autonegotiate=False,
3399
+ media_type="auto-select",
3400
+ load_interval=30,
3401
+ icmp_redirect_disable=True,
3402
+ xconnect="1",
3403
+ ip_directed_broadcast=False)
3404
+ ```
3405
+
3236
3406
  ## Import
3237
3407
 
3238
3408
  The `pulumi import` command can be used, for example:
@@ -1463,6 +1463,80 @@ class ServiceLanVpnInterfaceSviFeature(pulumi.CustomResource):
1463
1463
 
1464
1464
  ## Example Usage
1465
1465
 
1466
+ ```python
1467
+ import pulumi
1468
+ import pulumi_sdwan as sdwan
1469
+
1470
+ example = sdwan.ServiceLanVpnInterfaceSviFeature("example",
1471
+ name="Example",
1472
+ description="My Example",
1473
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1474
+ service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
1475
+ shutdown=False,
1476
+ interface_name="Vlan1",
1477
+ interface_description="SVI",
1478
+ interface_mtu=1500,
1479
+ ip_mtu=1500,
1480
+ ipv4_address="1.2.3.4",
1481
+ ipv4_subnet_mask="0.0.0.0",
1482
+ ipv4_secondary_addresses=[{
1483
+ "address": "2.3.4.5",
1484
+ "ipv4_subnet_mask": "0.0.0.0",
1485
+ }],
1486
+ ipv4_dhcp_helpers=["4.5.6.7"],
1487
+ ipv6_address="2001:0:0:1::0/32",
1488
+ ipv6_secondary_addresses=[{
1489
+ "address": "::2/32",
1490
+ }],
1491
+ ipv6_dhcp_helpers=[{
1492
+ "address": "2001:0:0:1::0",
1493
+ "vpn": 1,
1494
+ }],
1495
+ acl_ipv4_egress_feature_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1496
+ acl_ipv6_ingress_feature_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1497
+ arps=[{
1498
+ "ip_address": "1.2.3.4",
1499
+ "mac_address": "00-B0-D0-63-C2-26",
1500
+ }],
1501
+ ipv4_vrrps=[{
1502
+ "group_id": 1,
1503
+ "priority": 100,
1504
+ "timer": 1000,
1505
+ "track_omp": False,
1506
+ "prefix_list": "prefix",
1507
+ "address": "1.2.3.4",
1508
+ "secondary_addresses": [{
1509
+ "address": "2.3.4.5",
1510
+ }],
1511
+ "tloc_prefix_change": True,
1512
+ "tloc_prefix_change_value": 100,
1513
+ "tracking_objects": [{
1514
+ "tracker_id": "1b270f6d-479b-47e3-ab0b-51bc6811a303",
1515
+ "track_action": "decrement",
1516
+ "decrement_value": 100,
1517
+ }],
1518
+ }],
1519
+ ipv6_vrrps=[{
1520
+ "group_id": 1,
1521
+ "priority": 100,
1522
+ "timer": 1000,
1523
+ "track_omp": False,
1524
+ "track_prefix_list": "1",
1525
+ "addresses": [{
1526
+ "link_local_address": "1::1",
1527
+ "global_address": "1::1/24",
1528
+ }],
1529
+ "secondary_addresses": [{
1530
+ "prefix": "::20/32",
1531
+ }],
1532
+ }],
1533
+ enable_dhcpv6=False,
1534
+ tcp_mss=1024,
1535
+ arp_timeout=1200,
1536
+ ip_directed_broadcast=False,
1537
+ icmp_redirect_disable=True)
1538
+ ```
1539
+
1466
1540
  ## Import
1467
1541
 
1468
1542
  The `pulumi import` command can be used, for example:
@@ -1538,6 +1612,80 @@ class ServiceLanVpnInterfaceSviFeature(pulumi.CustomResource):
1538
1612
 
1539
1613
  ## Example Usage
1540
1614
 
1615
+ ```python
1616
+ import pulumi
1617
+ import pulumi_sdwan as sdwan
1618
+
1619
+ example = sdwan.ServiceLanVpnInterfaceSviFeature("example",
1620
+ name="Example",
1621
+ description="My Example",
1622
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1623
+ service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
1624
+ shutdown=False,
1625
+ interface_name="Vlan1",
1626
+ interface_description="SVI",
1627
+ interface_mtu=1500,
1628
+ ip_mtu=1500,
1629
+ ipv4_address="1.2.3.4",
1630
+ ipv4_subnet_mask="0.0.0.0",
1631
+ ipv4_secondary_addresses=[{
1632
+ "address": "2.3.4.5",
1633
+ "ipv4_subnet_mask": "0.0.0.0",
1634
+ }],
1635
+ ipv4_dhcp_helpers=["4.5.6.7"],
1636
+ ipv6_address="2001:0:0:1::0/32",
1637
+ ipv6_secondary_addresses=[{
1638
+ "address": "::2/32",
1639
+ }],
1640
+ ipv6_dhcp_helpers=[{
1641
+ "address": "2001:0:0:1::0",
1642
+ "vpn": 1,
1643
+ }],
1644
+ acl_ipv4_egress_feature_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1645
+ acl_ipv6_ingress_feature_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1646
+ arps=[{
1647
+ "ip_address": "1.2.3.4",
1648
+ "mac_address": "00-B0-D0-63-C2-26",
1649
+ }],
1650
+ ipv4_vrrps=[{
1651
+ "group_id": 1,
1652
+ "priority": 100,
1653
+ "timer": 1000,
1654
+ "track_omp": False,
1655
+ "prefix_list": "prefix",
1656
+ "address": "1.2.3.4",
1657
+ "secondary_addresses": [{
1658
+ "address": "2.3.4.5",
1659
+ }],
1660
+ "tloc_prefix_change": True,
1661
+ "tloc_prefix_change_value": 100,
1662
+ "tracking_objects": [{
1663
+ "tracker_id": "1b270f6d-479b-47e3-ab0b-51bc6811a303",
1664
+ "track_action": "decrement",
1665
+ "decrement_value": 100,
1666
+ }],
1667
+ }],
1668
+ ipv6_vrrps=[{
1669
+ "group_id": 1,
1670
+ "priority": 100,
1671
+ "timer": 1000,
1672
+ "track_omp": False,
1673
+ "track_prefix_list": "1",
1674
+ "addresses": [{
1675
+ "link_local_address": "1::1",
1676
+ "global_address": "1::1/24",
1677
+ }],
1678
+ "secondary_addresses": [{
1679
+ "prefix": "::20/32",
1680
+ }],
1681
+ }],
1682
+ enable_dhcpv6=False,
1683
+ tcp_mss=1024,
1684
+ arp_timeout=1200,
1685
+ ip_directed_broadcast=False,
1686
+ icmp_redirect_disable=True)
1687
+ ```
1688
+
1541
1689
  ## Import
1542
1690
 
1543
1691
  The `pulumi import` command can be used, for example:
@@ -1013,6 +1013,68 @@ class ServiceMulticastFeature(pulumi.CustomResource):
1013
1013
 
1014
1014
  ## Example Usage
1015
1015
 
1016
+ ```python
1017
+ import pulumi
1018
+ import pulumi_sdwan as sdwan
1019
+
1020
+ example = sdwan.ServiceMulticastFeature("example",
1021
+ name="Example",
1022
+ description="My Example",
1023
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1024
+ spt_only=False,
1025
+ local_replicator=False,
1026
+ local_replicator_threshold=10,
1027
+ igmp_interfaces=[{
1028
+ "interface_name": "GigabitEthernet1",
1029
+ "version": 2,
1030
+ "join_groups": [{
1031
+ "group_address": "224.0.0.0",
1032
+ "source_address": "1.2.3.4",
1033
+ }],
1034
+ }],
1035
+ pim_source_specific_multicast_enable=True,
1036
+ pim_source_specific_multicast_access_list="1",
1037
+ pim_spt_threshold="0",
1038
+ pim_interfaces=[{
1039
+ "interface_name": "GigabitEthernet1",
1040
+ "query_interval": 30,
1041
+ "join_prune_interval": 60,
1042
+ }],
1043
+ static_rp_addresses=[{
1044
+ "ip_address": "1.2.3.4",
1045
+ "access_list": "1",
1046
+ "override": False,
1047
+ }],
1048
+ enable_auto_rp=False,
1049
+ pim_bsr_rp_candidates=[{
1050
+ "interface_name": "GigabitEthernet1",
1051
+ "access_list_id": "2",
1052
+ "interval": 30,
1053
+ "priority": 1,
1054
+ }],
1055
+ pim_bsr_candidates=[{
1056
+ "interface_name": "GigabitEthernet1",
1057
+ "hash_mask_length": 30,
1058
+ "priority": 120,
1059
+ "accept_candidate_access_list": "test",
1060
+ }],
1061
+ msdp_groups=[{
1062
+ "mesh_group_name": "Example",
1063
+ "peers": [{
1064
+ "peer_ip": "1.2.3.4",
1065
+ "connection_source_interface": "GigabitEthernet1",
1066
+ "remote_as": 1,
1067
+ "peer_authentication_password": "Password123!",
1068
+ "keepalive_interval": 15,
1069
+ "keepalive_hold_time": 30,
1070
+ "sa_limit": 1,
1071
+ "default_peer": False,
1072
+ }],
1073
+ }],
1074
+ msdp_originator_id="GigabitEthernet1",
1075
+ msdp_connection_retry_interval=30)
1076
+ ```
1077
+
1016
1078
  ## Import
1017
1079
 
1018
1080
  The `pulumi import` command can be used, for example:
@@ -1073,6 +1135,68 @@ class ServiceMulticastFeature(pulumi.CustomResource):
1073
1135
 
1074
1136
  ## Example Usage
1075
1137
 
1138
+ ```python
1139
+ import pulumi
1140
+ import pulumi_sdwan as sdwan
1141
+
1142
+ example = sdwan.ServiceMulticastFeature("example",
1143
+ name="Example",
1144
+ description="My Example",
1145
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
1146
+ spt_only=False,
1147
+ local_replicator=False,
1148
+ local_replicator_threshold=10,
1149
+ igmp_interfaces=[{
1150
+ "interface_name": "GigabitEthernet1",
1151
+ "version": 2,
1152
+ "join_groups": [{
1153
+ "group_address": "224.0.0.0",
1154
+ "source_address": "1.2.3.4",
1155
+ }],
1156
+ }],
1157
+ pim_source_specific_multicast_enable=True,
1158
+ pim_source_specific_multicast_access_list="1",
1159
+ pim_spt_threshold="0",
1160
+ pim_interfaces=[{
1161
+ "interface_name": "GigabitEthernet1",
1162
+ "query_interval": 30,
1163
+ "join_prune_interval": 60,
1164
+ }],
1165
+ static_rp_addresses=[{
1166
+ "ip_address": "1.2.3.4",
1167
+ "access_list": "1",
1168
+ "override": False,
1169
+ }],
1170
+ enable_auto_rp=False,
1171
+ pim_bsr_rp_candidates=[{
1172
+ "interface_name": "GigabitEthernet1",
1173
+ "access_list_id": "2",
1174
+ "interval": 30,
1175
+ "priority": 1,
1176
+ }],
1177
+ pim_bsr_candidates=[{
1178
+ "interface_name": "GigabitEthernet1",
1179
+ "hash_mask_length": 30,
1180
+ "priority": 120,
1181
+ "accept_candidate_access_list": "test",
1182
+ }],
1183
+ msdp_groups=[{
1184
+ "mesh_group_name": "Example",
1185
+ "peers": [{
1186
+ "peer_ip": "1.2.3.4",
1187
+ "connection_source_interface": "GigabitEthernet1",
1188
+ "remote_as": 1,
1189
+ "peer_authentication_password": "Password123!",
1190
+ "keepalive_interval": 15,
1191
+ "keepalive_hold_time": 30,
1192
+ "sa_limit": 1,
1193
+ "default_peer": False,
1194
+ }],
1195
+ }],
1196
+ msdp_originator_id="GigabitEthernet1",
1197
+ msdp_connection_retry_interval=30)
1198
+ ```
1199
+
1076
1200
  ## Import
1077
1201
 
1078
1202
  The `pulumi import` command can be used, for example:
@@ -338,6 +338,21 @@ class ServiceObjectTrackerGroupFeature(pulumi.CustomResource):
338
338
 
339
339
  ## Example Usage
340
340
 
341
+ ```python
342
+ import pulumi
343
+ import pulumi_sdwan as sdwan
344
+
345
+ example = sdwan.ServiceObjectTrackerGroupFeature("example",
346
+ name="Example",
347
+ description="My Example",
348
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
349
+ object_tracker_id=10,
350
+ tracker_elements=[{
351
+ "object_tracker_id": "615d948f-34ee-4a2e-810e-a9bd8d3d48ec",
352
+ }],
353
+ reachable="or")
354
+ ```
355
+
341
356
  ## Import
342
357
 
343
358
  The `pulumi import` command can be used, for example:
@@ -374,6 +389,21 @@ class ServiceObjectTrackerGroupFeature(pulumi.CustomResource):
374
389
 
375
390
  ## Example Usage
376
391
 
392
+ ```python
393
+ import pulumi
394
+ import pulumi_sdwan as sdwan
395
+
396
+ example = sdwan.ServiceObjectTrackerGroupFeature("example",
397
+ name="Example",
398
+ description="My Example",
399
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
400
+ object_tracker_id=10,
401
+ tracker_elements=[{
402
+ "object_tracker_id": "615d948f-34ee-4a2e-810e-a9bd8d3d48ec",
403
+ }],
404
+ reachable="or")
405
+ ```
406
+
377
407
  ## Import
378
408
 
379
409
  The `pulumi import` command can be used, for example: