pulumi-sdwan 0.3.0a1742970533__py3-none-any.whl → 0.3.0a1743132889__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.

Potentially problematic release.


This version of pulumi-sdwan might be problematic. Click here for more details.

Files changed (69) hide show
  1. pulumi_sdwan/__init__.py +20 -0
  2. pulumi_sdwan/_inputs.py +890 -649
  3. pulumi_sdwan/cli_config_feature.py +6 -2
  4. pulumi_sdwan/configuration_group.py +35 -39
  5. pulumi_sdwan/dns_security_policy.py +701 -0
  6. pulumi_sdwan/get_configuration_group.py +11 -11
  7. pulumi_sdwan/get_dns_security_policy.py +272 -0
  8. pulumi_sdwan/get_intrusion_prevention_policy_definition.py +27 -1
  9. pulumi_sdwan/get_security_policy.py +99 -1
  10. pulumi_sdwan/get_service_lan_vpn_feature_associate_multicast_feature.py +18 -4
  11. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_bgp_feature.py +18 -4
  12. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_eigrp_feature.py +18 -4
  13. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospf_feature.py +18 -4
  14. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +18 -4
  15. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +18 -4
  16. pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature.py +18 -4
  17. pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +18 -4
  18. pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +18 -4
  19. pulumi_sdwan/get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature.py +18 -4
  20. pulumi_sdwan/get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature.py +18 -4
  21. pulumi_sdwan/get_tag.py +140 -0
  22. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_bgp_feature.py +18 -4
  23. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospf_feature.py +18 -4
  24. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +18 -4
  25. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +18 -4
  26. pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +18 -4
  27. pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +18 -4
  28. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +18 -4
  29. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +18 -4
  30. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +18 -4
  31. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +18 -4
  32. pulumi_sdwan/get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +18 -4
  33. pulumi_sdwan/get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +18 -4
  34. pulumi_sdwan/get_url_filtering_policy_definition.py +13 -1
  35. pulumi_sdwan/intrusion_prevention_policy_definition.py +83 -32
  36. pulumi_sdwan/outputs.py +806 -449
  37. pulumi_sdwan/pulumi-plugin.json +1 -1
  38. pulumi_sdwan/security_policy.py +329 -0
  39. pulumi_sdwan/service_lan_vpn_feature_associate_multicast_feature.py +36 -4
  40. pulumi_sdwan/service_lan_vpn_feature_associate_routing_bgp_feature.py +36 -4
  41. pulumi_sdwan/service_lan_vpn_feature_associate_routing_eigrp_feature.py +36 -4
  42. pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospf_feature.py +36 -4
  43. pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +36 -4
  44. pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +36 -4
  45. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature.py +36 -4
  46. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +36 -4
  47. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +36 -4
  48. pulumi_sdwan/service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature.py +36 -4
  49. pulumi_sdwan/service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature.py +36 -4
  50. pulumi_sdwan/tag.py +283 -0
  51. pulumi_sdwan/transport_cellular_profile_feature.py +29 -31
  52. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_bgp_feature.py +36 -4
  53. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospf_feature.py +36 -4
  54. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +36 -4
  55. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +36 -4
  56. pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +36 -4
  57. pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +36 -4
  58. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +36 -4
  59. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +36 -4
  60. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +36 -4
  61. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +36 -4
  62. pulumi_sdwan/transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +36 -4
  63. pulumi_sdwan/transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +36 -4
  64. pulumi_sdwan/url_filtering_policy_definition.py +36 -38
  65. pulumi_sdwan/zone_based_firewall_policy_definition.py +26 -14
  66. {pulumi_sdwan-0.3.0a1742970533.dist-info → pulumi_sdwan-0.3.0a1743132889.dist-info}/METADATA +1 -1
  67. {pulumi_sdwan-0.3.0a1742970533.dist-info → pulumi_sdwan-0.3.0a1743132889.dist-info}/RECORD +69 -65
  68. {pulumi_sdwan-0.3.0a1742970533.dist-info → pulumi_sdwan-0.3.0a1743132889.dist-info}/WHEEL +0 -0
  69. {pulumi_sdwan-0.3.0a1742970533.dist-info → pulumi_sdwan-0.3.0a1743132889.dist-info}/top_level.txt +0 -0
pulumi_sdwan/outputs.py CHANGED
@@ -162,7 +162,6 @@ __all__ = [
162
162
  'ColorListPolicyObjectEntry',
163
163
  'ConfigurationGroupDevice',
164
164
  'ConfigurationGroupDeviceVariable',
165
- 'ConfigurationGroupFeatureProfile',
166
165
  'ConfigurationGroupTopologyDevice',
167
166
  'ConfigurationGroupTopologyDeviceUnsupportedFeature',
168
167
  'CustomControlTopologyPolicyDefinitionSequence',
@@ -173,6 +172,7 @@ __all__ = [
173
172
  'DataIpv4PrefixListPolicyObjectEntry',
174
173
  'DataIpv6PrefixListPolicyObjectEntry',
175
174
  'DnsSecurityPolicyDefinitionTargetVpn',
175
+ 'DnsSecurityPolicyTargetVpn',
176
176
  'DomainListPolicyObjectEntry',
177
177
  'EigrpFeatureTemplateAddressFamily',
178
178
  'EigrpFeatureTemplateAddressFamilyNetwork',
@@ -189,6 +189,7 @@ __all__ = [
189
189
  'HubAndSpokeTopologyPolicyDefinitionTopology',
190
190
  'HubAndSpokeTopologyPolicyDefinitionTopologySpoke',
191
191
  'HubAndSpokeTopologyPolicyDefinitionTopologySpokeHub',
192
+ 'IntrusionPreventionPolicyDefinitionLogging',
192
193
  'IpsSignatureListPolicyObjectEntry',
193
194
  'Ipv4AclPolicyDefinitionSequence',
194
195
  'Ipv4AclPolicyDefinitionSequenceActionEntry',
@@ -465,6 +466,7 @@ __all__ = [
465
466
  'TransportWanVpnInterfaceEthernetFeatureStaticNat66',
466
467
  'TransportWanVpnInterfaceEthernetFeatureTunnelInterfaceEncapsulation',
467
468
  'TransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulation',
469
+ 'UrlFilteringPolicyDefinitionLogging',
468
470
  'VpnInterfaceCellularFeatureTemplateIpv4AccessList',
469
471
  'VpnInterfaceCellularFeatureTemplateIpv6AccessList',
470
472
  'VpnInterfaceCellularFeatureTemplateNatPortForward',
@@ -665,7 +667,6 @@ __all__ = [
665
667
  'GetColorListPolicyObjectEntryResult',
666
668
  'GetConfigurationGroupDeviceResult',
667
669
  'GetConfigurationGroupDeviceVariableResult',
668
- 'GetConfigurationGroupFeatureProfileResult',
669
670
  'GetConfigurationGroupTopologyDeviceResult',
670
671
  'GetConfigurationGroupTopologyDeviceUnsupportedFeatureResult',
671
672
  'GetCustomControlTopologyPolicyDefinitionSequenceResult',
@@ -677,6 +678,7 @@ __all__ = [
677
678
  'GetDataIpv6PrefixListPolicyObjectEntryResult',
678
679
  'GetDeviceDeviceResult',
679
680
  'GetDnsSecurityPolicyDefinitionTargetVpnResult',
681
+ 'GetDnsSecurityPolicyTargetVpnResult',
680
682
  'GetDomainListPolicyObjectEntryResult',
681
683
  'GetEigrpFeatureTemplateAddressFamilyResult',
682
684
  'GetEigrpFeatureTemplateAddressFamilyNetworkResult',
@@ -693,6 +695,7 @@ __all__ = [
693
695
  'GetHubAndSpokeTopologyPolicyDefinitionTopologyResult',
694
696
  'GetHubAndSpokeTopologyPolicyDefinitionTopologySpokeResult',
695
697
  'GetHubAndSpokeTopologyPolicyDefinitionTopologySpokeHubResult',
698
+ 'GetIntrusionPreventionPolicyDefinitionLoggingResult',
696
699
  'GetIpsSignatureListPolicyObjectEntryResult',
697
700
  'GetIpv4AclPolicyDefinitionSequenceResult',
698
701
  'GetIpv4AclPolicyDefinitionSequenceActionEntryResult',
@@ -969,6 +972,7 @@ __all__ = [
969
972
  'GetTransportWanVpnInterfaceEthernetFeatureStaticNat66Result',
970
973
  'GetTransportWanVpnInterfaceEthernetFeatureTunnelInterfaceEncapsulationResult',
971
974
  'GetTransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulationResult',
975
+ 'GetUrlFilteringPolicyDefinitionLoggingResult',
972
976
  'GetVedgeInventoryDeviceResult',
973
977
  'GetVpnInterfaceCellularFeatureTemplateIpv4AccessListResult',
974
978
  'GetVpnInterfaceCellularFeatureTemplateIpv6AccessListResult',
@@ -1201,11 +1205,11 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntry(dict):
1201
1205
  """
1202
1206
  :param str type: Type of action entry
1203
1207
  - Choices: `backupSlaPreferredColor`, `count`, `log`, `slaClass`, `cloudSaas`
1204
- :param str backup_sla_preferred_color: Backup SLA preferred color (Single value or multiple values separated by spaces)
1205
- :param bool cloud_sla: Cloud SLA
1206
- :param str counter: Counter name
1207
- :param bool log: Enable logging
1208
- :param Sequence['ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParameterArgs'] sla_class_parameters: List of SLA class parameters
1208
+ :param str backup_sla_preferred_color: Backup SLA preferred color (Single value or multiple values separated by spaces), Attribute conditional on `type` being equal to `backupSlaPreferredColor`
1209
+ :param bool cloud_sla: Cloud SLA, Attribute conditional on `type` being equal to `cloudSaas`
1210
+ :param str counter: Counter name, Attribute conditional on `type` being equal to `count`
1211
+ :param bool log: Enable logging, Attribute conditional on `type` being equal to `log`
1212
+ :param Sequence['ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParameterArgs'] sla_class_parameters: List of SLA class parameters, Attribute conditional on `type` being equal to `slaClass`
1209
1213
  """
1210
1214
  pulumi.set(__self__, "type", type)
1211
1215
  if backup_sla_preferred_color is not None:
@@ -1232,7 +1236,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntry(dict):
1232
1236
  @pulumi.getter(name="backupSlaPreferredColor")
1233
1237
  def backup_sla_preferred_color(self) -> Optional[str]:
1234
1238
  """
1235
- Backup SLA preferred color (Single value or multiple values separated by spaces)
1239
+ Backup SLA preferred color (Single value or multiple values separated by spaces), Attribute conditional on `type` being equal to `backupSlaPreferredColor`
1236
1240
  """
1237
1241
  return pulumi.get(self, "backup_sla_preferred_color")
1238
1242
 
@@ -1240,7 +1244,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntry(dict):
1240
1244
  @pulumi.getter(name="cloudSla")
1241
1245
  def cloud_sla(self) -> Optional[bool]:
1242
1246
  """
1243
- Cloud SLA
1247
+ Cloud SLA, Attribute conditional on `type` being equal to `cloudSaas`
1244
1248
  """
1245
1249
  return pulumi.get(self, "cloud_sla")
1246
1250
 
@@ -1248,7 +1252,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntry(dict):
1248
1252
  @pulumi.getter
1249
1253
  def counter(self) -> Optional[str]:
1250
1254
  """
1251
- Counter name
1255
+ Counter name, Attribute conditional on `type` being equal to `count`
1252
1256
  """
1253
1257
  return pulumi.get(self, "counter")
1254
1258
 
@@ -1256,7 +1260,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntry(dict):
1256
1260
  @pulumi.getter
1257
1261
  def log(self) -> Optional[bool]:
1258
1262
  """
1259
- Enable logging
1263
+ Enable logging, Attribute conditional on `type` being equal to `log`
1260
1264
  """
1261
1265
  return pulumi.get(self, "log")
1262
1266
 
@@ -1264,7 +1268,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntry(dict):
1264
1268
  @pulumi.getter(name="slaClassParameters")
1265
1269
  def sla_class_parameters(self) -> Optional[Sequence['outputs.ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParameter']]:
1266
1270
  """
1267
- List of SLA class parameters
1271
+ List of SLA class parameters, Attribute conditional on `type` being equal to `slaClass`
1268
1272
  """
1269
1273
  return pulumi.get(self, "sla_class_parameters")
1270
1274
 
@@ -1306,10 +1310,10 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParamete
1306
1310
  """
1307
1311
  :param str type: Type of SLA class parameter
1308
1312
  - Choices: `name`, `preferredColor`, `preferredColorGroup`, `strict`, `fallbackToBestPath`
1309
- :param str preferred_color: preferred color (Single value or multiple values separated by spaces)
1310
- :param str preferred_color_group_list: Preferred color group list ID
1313
+ :param str preferred_color: preferred color (Single value or multiple values separated by spaces), Attribute conditional on `type` being equal to `preferredColor`
1314
+ :param str preferred_color_group_list: Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
1311
1315
  :param int preferred_color_group_list_version: Preferred color group list version
1312
- :param str sla_class_list: SLA class list ID
1316
+ :param str sla_class_list: SLA class list ID, Attribute conditional on `type` being equal to `name`
1313
1317
  :param int sla_class_list_version: SLA class list version
1314
1318
  """
1315
1319
  pulumi.set(__self__, "type", type)
@@ -1337,7 +1341,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParamete
1337
1341
  @pulumi.getter(name="preferredColor")
1338
1342
  def preferred_color(self) -> Optional[str]:
1339
1343
  """
1340
- preferred color (Single value or multiple values separated by spaces)
1344
+ preferred color (Single value or multiple values separated by spaces), Attribute conditional on `type` being equal to `preferredColor`
1341
1345
  """
1342
1346
  return pulumi.get(self, "preferred_color")
1343
1347
 
@@ -1345,7 +1349,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParamete
1345
1349
  @pulumi.getter(name="preferredColorGroupList")
1346
1350
  def preferred_color_group_list(self) -> Optional[str]:
1347
1351
  """
1348
- Preferred color group list ID
1352
+ Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
1349
1353
  """
1350
1354
  return pulumi.get(self, "preferred_color_group_list")
1351
1355
 
@@ -1361,7 +1365,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParamete
1361
1365
  @pulumi.getter(name="slaClassList")
1362
1366
  def sla_class_list(self) -> Optional[str]:
1363
1367
  """
1364
- SLA class list ID
1368
+ SLA class list ID, Attribute conditional on `type` being equal to `name`
1365
1369
  """
1366
1370
  return pulumi.get(self, "sla_class_list")
1367
1371
 
@@ -1445,29 +1449,29 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1445
1449
  """
1446
1450
  :param str type: Type of match entry
1447
1451
  - Choices: `appList`, `dnsAppList`, `dns`, `dscp`, `plp`, `protocol`, `sourceDataPrefixList`, `sourceIp`, `sourcePort`, `destinationDataPrefixList`, `destinationIp`, `destinationRegion`, `destinationPort`, `trafficTo`, `icmpMessage`
1448
- :param str application_list_id: Application list ID
1452
+ :param str application_list_id: Application list ID, Attribute conditional on `type` being equal to `appList`
1449
1453
  :param int application_list_version: Application list version
1450
- :param str destination_data_prefix_list_id: Destination Data Prefix list ID
1454
+ :param str destination_data_prefix_list_id: Destination Data Prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
1451
1455
  :param int destination_data_prefix_list_version: Destination Data Prefix list version
1452
- :param str destination_ip: Destination IP
1453
- :param str destination_port: Destination port, 0-65535 (Single value, range or multiple values separated by spaces)
1454
- :param str destination_region: Destination region
1456
+ :param str destination_ip: Destination IP, Attribute conditional on `type` being equal to `destinationIp`
1457
+ :param str destination_port: Destination port, 0-65535 (Single value, range or multiple values separated by spaces), Attribute conditional on `type` being equal to `destinationPort`
1458
+ :param str destination_region: Destination region, Attribute conditional on `type` being equal to `destinationRegion`
1455
1459
  - Choices: `primary-region`, `secondary-region`, `other-region`
1456
- :param str dns: DNS request or response
1460
+ :param str dns: DNS request or response, Attribute conditional on `type` being equal to `dns`
1457
1461
  - Choices: `request`, `response`
1458
- :param str dns_application_list_id: DNS Application list ID
1462
+ :param str dns_application_list_id: DNS Application list ID, Attribute conditional on `type` being equal to `dnsAppList`
1459
1463
  :param int dns_application_list_version: DNS Application list version
1460
- :param int dscp: DSCP value
1464
+ :param int dscp: DSCP value, Attribute conditional on `type` being equal to `dscp`
1461
1465
  - Range: `0`-`63`
1462
- :param str icmp_message: ICMP Message
1463
- :param str plp: PLP
1466
+ :param str icmp_message: ICMP Message, Attribute conditional on `type` being equal to `icmpMessage`
1467
+ :param str plp: PLP, Attribute conditional on `type` being equal to `plp`
1464
1468
  - Choices: `low`, `high`
1465
- :param str protocol: IP Protocol, 0-255 (Single value or multiple values separated by spaces)
1466
- :param str source_data_prefix_list_id: Source Data Prefix list ID
1469
+ :param str protocol: IP Protocol, 0-255 (Single value or multiple values separated by spaces), Attribute conditional on `type` being equal to `protocol`
1470
+ :param str source_data_prefix_list_id: Source Data Prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
1467
1471
  :param int source_data_prefix_list_version: Source Data Prefix list version
1468
- :param str source_ip: Source IP
1469
- :param str source_port: Source port, 0-65535 (Single value, range or multiple values separated by spaces)
1470
- :param str traffic_to: Traffic to
1472
+ :param str source_ip: Source IP, Attribute conditional on `type` being equal to `sourceIp`
1473
+ :param str source_port: Source port, 0-65535 (Single value, range or multiple values separated by spaces), Attribute conditional on `type` being equal to `sourcePort`
1474
+ :param str traffic_to: Traffic to, Attribute conditional on `type` being equal to `trafficTo`
1471
1475
  - Choices: `access`, `core`, `service`
1472
1476
  """
1473
1477
  pulumi.set(__self__, "type", type)
@@ -1523,7 +1527,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1523
1527
  @pulumi.getter(name="applicationListId")
1524
1528
  def application_list_id(self) -> Optional[str]:
1525
1529
  """
1526
- Application list ID
1530
+ Application list ID, Attribute conditional on `type` being equal to `appList`
1527
1531
  """
1528
1532
  return pulumi.get(self, "application_list_id")
1529
1533
 
@@ -1539,7 +1543,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1539
1543
  @pulumi.getter(name="destinationDataPrefixListId")
1540
1544
  def destination_data_prefix_list_id(self) -> Optional[str]:
1541
1545
  """
1542
- Destination Data Prefix list ID
1546
+ Destination Data Prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
1543
1547
  """
1544
1548
  return pulumi.get(self, "destination_data_prefix_list_id")
1545
1549
 
@@ -1555,7 +1559,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1555
1559
  @pulumi.getter(name="destinationIp")
1556
1560
  def destination_ip(self) -> Optional[str]:
1557
1561
  """
1558
- Destination IP
1562
+ Destination IP, Attribute conditional on `type` being equal to `destinationIp`
1559
1563
  """
1560
1564
  return pulumi.get(self, "destination_ip")
1561
1565
 
@@ -1563,7 +1567,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1563
1567
  @pulumi.getter(name="destinationPort")
1564
1568
  def destination_port(self) -> Optional[str]:
1565
1569
  """
1566
- Destination port, 0-65535 (Single value, range or multiple values separated by spaces)
1570
+ Destination port, 0-65535 (Single value, range or multiple values separated by spaces), Attribute conditional on `type` being equal to `destinationPort`
1567
1571
  """
1568
1572
  return pulumi.get(self, "destination_port")
1569
1573
 
@@ -1571,7 +1575,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1571
1575
  @pulumi.getter(name="destinationRegion")
1572
1576
  def destination_region(self) -> Optional[str]:
1573
1577
  """
1574
- Destination region
1578
+ Destination region, Attribute conditional on `type` being equal to `destinationRegion`
1575
1579
  - Choices: `primary-region`, `secondary-region`, `other-region`
1576
1580
  """
1577
1581
  return pulumi.get(self, "destination_region")
@@ -1580,7 +1584,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1580
1584
  @pulumi.getter
1581
1585
  def dns(self) -> Optional[str]:
1582
1586
  """
1583
- DNS request or response
1587
+ DNS request or response, Attribute conditional on `type` being equal to `dns`
1584
1588
  - Choices: `request`, `response`
1585
1589
  """
1586
1590
  return pulumi.get(self, "dns")
@@ -1589,7 +1593,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1589
1593
  @pulumi.getter(name="dnsApplicationListId")
1590
1594
  def dns_application_list_id(self) -> Optional[str]:
1591
1595
  """
1592
- DNS Application list ID
1596
+ DNS Application list ID, Attribute conditional on `type` being equal to `dnsAppList`
1593
1597
  """
1594
1598
  return pulumi.get(self, "dns_application_list_id")
1595
1599
 
@@ -1605,7 +1609,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1605
1609
  @pulumi.getter
1606
1610
  def dscp(self) -> Optional[int]:
1607
1611
  """
1608
- DSCP value
1612
+ DSCP value, Attribute conditional on `type` being equal to `dscp`
1609
1613
  - Range: `0`-`63`
1610
1614
  """
1611
1615
  return pulumi.get(self, "dscp")
@@ -1614,7 +1618,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1614
1618
  @pulumi.getter(name="icmpMessage")
1615
1619
  def icmp_message(self) -> Optional[str]:
1616
1620
  """
1617
- ICMP Message
1621
+ ICMP Message, Attribute conditional on `type` being equal to `icmpMessage`
1618
1622
  """
1619
1623
  return pulumi.get(self, "icmp_message")
1620
1624
 
@@ -1622,7 +1626,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1622
1626
  @pulumi.getter
1623
1627
  def plp(self) -> Optional[str]:
1624
1628
  """
1625
- PLP
1629
+ PLP, Attribute conditional on `type` being equal to `plp`
1626
1630
  - Choices: `low`, `high`
1627
1631
  """
1628
1632
  return pulumi.get(self, "plp")
@@ -1631,7 +1635,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1631
1635
  @pulumi.getter
1632
1636
  def protocol(self) -> Optional[str]:
1633
1637
  """
1634
- IP Protocol, 0-255 (Single value or multiple values separated by spaces)
1638
+ IP Protocol, 0-255 (Single value or multiple values separated by spaces), Attribute conditional on `type` being equal to `protocol`
1635
1639
  """
1636
1640
  return pulumi.get(self, "protocol")
1637
1641
 
@@ -1639,7 +1643,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1639
1643
  @pulumi.getter(name="sourceDataPrefixListId")
1640
1644
  def source_data_prefix_list_id(self) -> Optional[str]:
1641
1645
  """
1642
- Source Data Prefix list ID
1646
+ Source Data Prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
1643
1647
  """
1644
1648
  return pulumi.get(self, "source_data_prefix_list_id")
1645
1649
 
@@ -1655,7 +1659,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1655
1659
  @pulumi.getter(name="sourceIp")
1656
1660
  def source_ip(self) -> Optional[str]:
1657
1661
  """
1658
- Source IP
1662
+ Source IP, Attribute conditional on `type` being equal to `sourceIp`
1659
1663
  """
1660
1664
  return pulumi.get(self, "source_ip")
1661
1665
 
@@ -1663,7 +1667,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1663
1667
  @pulumi.getter(name="sourcePort")
1664
1668
  def source_port(self) -> Optional[str]:
1665
1669
  """
1666
- Source port, 0-65535 (Single value, range or multiple values separated by spaces)
1670
+ Source port, 0-65535 (Single value, range or multiple values separated by spaces), Attribute conditional on `type` being equal to `sourcePort`
1667
1671
  """
1668
1672
  return pulumi.get(self, "source_port")
1669
1673
 
@@ -1671,7 +1675,7 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceMatchEntry(dict):
1671
1675
  @pulumi.getter(name="trafficTo")
1672
1676
  def traffic_to(self) -> Optional[str]:
1673
1677
  """
1674
- Traffic to
1678
+ Traffic to, Attribute conditional on `type` being equal to `trafficTo`
1675
1679
  - Choices: `access`, `core`, `service`
1676
1680
  """
1677
1681
  return pulumi.get(self, "traffic_to")
@@ -22044,25 +22048,6 @@ class ConfigurationGroupDeviceVariable(dict):
22044
22048
  return pulumi.get(self, "value")
22045
22049
 
22046
22050
 
22047
- @pulumi.output_type
22048
- class ConfigurationGroupFeatureProfile(dict):
22049
- def __init__(__self__, *,
22050
- id: Optional[str] = None):
22051
- """
22052
- :param str id: Feature profile ID
22053
- """
22054
- if id is not None:
22055
- pulumi.set(__self__, "id", id)
22056
-
22057
- @property
22058
- @pulumi.getter
22059
- def id(self) -> Optional[str]:
22060
- """
22061
- Feature profile ID
22062
- """
22063
- return pulumi.get(self, "id")
22064
-
22065
-
22066
22051
  @pulumi.output_type
22067
22052
  class ConfigurationGroupTopologyDevice(dict):
22068
22053
  @staticmethod
@@ -22329,9 +22314,9 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntry(dict):
22329
22314
  """
22330
22315
  :param str type: Type of action entry
22331
22316
  - Choices: `set`, `exportTo`
22332
- :param str export_to_vpn_list_id: Export to VPN list ID
22317
+ :param str export_to_vpn_list_id: Export to VPN list ID, Attribute conditional on `type` being equal to `exportTo`
22333
22318
  :param int export_to_vpn_list_version: Export to VPN list version
22334
- :param Sequence['CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameterArgs'] set_parameters: List of set parameters
22319
+ :param Sequence['CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameterArgs'] set_parameters: List of set parameters, Attribute conditional on `type` being equal to `set`
22335
22320
  """
22336
22321
  pulumi.set(__self__, "type", type)
22337
22322
  if export_to_vpn_list_id is not None:
@@ -22354,7 +22339,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntry(dict):
22354
22339
  @pulumi.getter(name="exportToVpnListId")
22355
22340
  def export_to_vpn_list_id(self) -> Optional[str]:
22356
22341
  """
22357
- Export to VPN list ID
22342
+ Export to VPN list ID, Attribute conditional on `type` being equal to `exportTo`
22358
22343
  """
22359
22344
  return pulumi.get(self, "export_to_vpn_list_id")
22360
22345
 
@@ -22370,7 +22355,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntry(dict):
22370
22355
  @pulumi.getter(name="setParameters")
22371
22356
  def set_parameters(self) -> Optional[Sequence['outputs.CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter']]:
22372
22357
  """
22373
- List of set parameters
22358
+ List of set parameters, Attribute conditional on `type` being equal to `set`
22374
22359
  """
22375
22360
  return pulumi.get(self, "set_parameters")
22376
22361
 
@@ -22444,29 +22429,29 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22444
22429
  """
22445
22430
  :param str type: Type of set parameter
22446
22431
  - Choices: `tlocList`, `tloc`, `tlocAction`, `preference`, `ompTag`, `community`, `communityAdditive`, `service`
22447
- :param str community: Community value, e.g. `1000:10000` or `internet` or `local-AS`
22448
- :param bool community_additive: Community additive
22449
- :param int omp_tag: OMP tag
22432
+ :param str community: Community value, e.g. `1000:10000` or `internet` or `local-AS`, Attribute conditional on `type` being equal to `community`
22433
+ :param bool community_additive: Community additive, Attribute conditional on `type` being equal to `communityAdditive`
22434
+ :param int omp_tag: OMP tag, Attribute conditional on `type` being equal to `ompTag`
22450
22435
  - Range: `0`-`4294967295`
22451
- :param int preference: Preference
22436
+ :param int preference: Preference, Attribute conditional on `type` being equal to `preference`
22452
22437
  - Range: `0`-`4294967295`
22453
- :param str service_tloc_color: Service TLOC color
22454
- :param str service_tloc_encapsulation: Service TLOC encapsulation
22438
+ :param str service_tloc_color: Service TLOC color, Attribute conditional on `type` being equal to `service`
22439
+ :param str service_tloc_encapsulation: Service TLOC encapsulation, Attribute conditional on `type` being equal to `service`
22455
22440
  - Choices: `ipsec`, `gre`
22456
- :param str service_tloc_ip: Service TLOC IP address
22457
- :param str service_tloc_list_id: Service TLOC list ID
22441
+ :param str service_tloc_ip: Service TLOC IP address, Attribute conditional on `type` being equal to `service`
22442
+ :param str service_tloc_list_id: Service TLOC list ID, Attribute conditional on `type` being equal to `service`
22458
22443
  :param int service_tloc_list_version: Service TLOC list version
22459
- :param str service_type: Service type
22444
+ :param str service_type: Service type, Attribute conditional on `type` being equal to `service`
22460
22445
  - Choices: `FW`, `IDP`, `IDS`, `netsvc1`, `netsvc2`, `netsvc3`, `netsvc4`, `netsvc5`
22461
- :param int service_vpn_id: Service VPN ID
22446
+ :param int service_vpn_id: Service VPN ID, Attribute conditional on `type` being equal to `service`
22462
22447
  - Range: `0`-`65536`
22463
- :param str tloc_action: TLOC action
22448
+ :param str tloc_action: TLOC action, Attribute conditional on `type` being equal to `tlocAction`
22464
22449
  - Choices: `strict`, `primary`, `backup`, `ecmp`
22465
- :param str tloc_color: TLOC color
22466
- :param str tloc_encapsulation: TLOC encapsulation
22450
+ :param str tloc_color: TLOC color, Attribute conditional on `type` being equal to `tloc`
22451
+ :param str tloc_encapsulation: TLOC encapsulation, Attribute conditional on `type` being equal to `tloc`
22467
22452
  - Choices: `ipsec`, `gre`
22468
- :param str tloc_ip: TLOC IP address
22469
- :param str tloc_list_id: TLOC list ID
22453
+ :param str tloc_ip: TLOC IP address, Attribute conditional on `type` being equal to `tloc`
22454
+ :param str tloc_list_id: TLOC list ID, Attribute conditional on `type` being equal to `tlocList`
22470
22455
  :param int tloc_list_version: TLOC list version
22471
22456
  """
22472
22457
  pulumi.set(__self__, "type", type)
@@ -22518,7 +22503,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22518
22503
  @pulumi.getter
22519
22504
  def community(self) -> Optional[str]:
22520
22505
  """
22521
- Community value, e.g. `1000:10000` or `internet` or `local-AS`
22506
+ Community value, e.g. `1000:10000` or `internet` or `local-AS`, Attribute conditional on `type` being equal to `community`
22522
22507
  """
22523
22508
  return pulumi.get(self, "community")
22524
22509
 
@@ -22526,7 +22511,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22526
22511
  @pulumi.getter(name="communityAdditive")
22527
22512
  def community_additive(self) -> Optional[bool]:
22528
22513
  """
22529
- Community additive
22514
+ Community additive, Attribute conditional on `type` being equal to `communityAdditive`
22530
22515
  """
22531
22516
  return pulumi.get(self, "community_additive")
22532
22517
 
@@ -22534,7 +22519,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22534
22519
  @pulumi.getter(name="ompTag")
22535
22520
  def omp_tag(self) -> Optional[int]:
22536
22521
  """
22537
- OMP tag
22522
+ OMP tag, Attribute conditional on `type` being equal to `ompTag`
22538
22523
  - Range: `0`-`4294967295`
22539
22524
  """
22540
22525
  return pulumi.get(self, "omp_tag")
@@ -22543,7 +22528,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22543
22528
  @pulumi.getter
22544
22529
  def preference(self) -> Optional[int]:
22545
22530
  """
22546
- Preference
22531
+ Preference, Attribute conditional on `type` being equal to `preference`
22547
22532
  - Range: `0`-`4294967295`
22548
22533
  """
22549
22534
  return pulumi.get(self, "preference")
@@ -22552,7 +22537,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22552
22537
  @pulumi.getter(name="serviceTlocColor")
22553
22538
  def service_tloc_color(self) -> Optional[str]:
22554
22539
  """
22555
- Service TLOC color
22540
+ Service TLOC color, Attribute conditional on `type` being equal to `service`
22556
22541
  """
22557
22542
  return pulumi.get(self, "service_tloc_color")
22558
22543
 
@@ -22560,7 +22545,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22560
22545
  @pulumi.getter(name="serviceTlocEncapsulation")
22561
22546
  def service_tloc_encapsulation(self) -> Optional[str]:
22562
22547
  """
22563
- Service TLOC encapsulation
22548
+ Service TLOC encapsulation, Attribute conditional on `type` being equal to `service`
22564
22549
  - Choices: `ipsec`, `gre`
22565
22550
  """
22566
22551
  return pulumi.get(self, "service_tloc_encapsulation")
@@ -22569,7 +22554,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22569
22554
  @pulumi.getter(name="serviceTlocIp")
22570
22555
  def service_tloc_ip(self) -> Optional[str]:
22571
22556
  """
22572
- Service TLOC IP address
22557
+ Service TLOC IP address, Attribute conditional on `type` being equal to `service`
22573
22558
  """
22574
22559
  return pulumi.get(self, "service_tloc_ip")
22575
22560
 
@@ -22577,7 +22562,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22577
22562
  @pulumi.getter(name="serviceTlocListId")
22578
22563
  def service_tloc_list_id(self) -> Optional[str]:
22579
22564
  """
22580
- Service TLOC list ID
22565
+ Service TLOC list ID, Attribute conditional on `type` being equal to `service`
22581
22566
  """
22582
22567
  return pulumi.get(self, "service_tloc_list_id")
22583
22568
 
@@ -22593,7 +22578,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22593
22578
  @pulumi.getter(name="serviceType")
22594
22579
  def service_type(self) -> Optional[str]:
22595
22580
  """
22596
- Service type
22581
+ Service type, Attribute conditional on `type` being equal to `service`
22597
22582
  - Choices: `FW`, `IDP`, `IDS`, `netsvc1`, `netsvc2`, `netsvc3`, `netsvc4`, `netsvc5`
22598
22583
  """
22599
22584
  return pulumi.get(self, "service_type")
@@ -22602,7 +22587,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22602
22587
  @pulumi.getter(name="serviceVpnId")
22603
22588
  def service_vpn_id(self) -> Optional[int]:
22604
22589
  """
22605
- Service VPN ID
22590
+ Service VPN ID, Attribute conditional on `type` being equal to `service`
22606
22591
  - Range: `0`-`65536`
22607
22592
  """
22608
22593
  return pulumi.get(self, "service_vpn_id")
@@ -22611,7 +22596,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22611
22596
  @pulumi.getter(name="tlocAction")
22612
22597
  def tloc_action(self) -> Optional[str]:
22613
22598
  """
22614
- TLOC action
22599
+ TLOC action, Attribute conditional on `type` being equal to `tlocAction`
22615
22600
  - Choices: `strict`, `primary`, `backup`, `ecmp`
22616
22601
  """
22617
22602
  return pulumi.get(self, "tloc_action")
@@ -22620,7 +22605,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22620
22605
  @pulumi.getter(name="tlocColor")
22621
22606
  def tloc_color(self) -> Optional[str]:
22622
22607
  """
22623
- TLOC color
22608
+ TLOC color, Attribute conditional on `type` being equal to `tloc`
22624
22609
  """
22625
22610
  return pulumi.get(self, "tloc_color")
22626
22611
 
@@ -22628,7 +22613,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22628
22613
  @pulumi.getter(name="tlocEncapsulation")
22629
22614
  def tloc_encapsulation(self) -> Optional[str]:
22630
22615
  """
22631
- TLOC encapsulation
22616
+ TLOC encapsulation, Attribute conditional on `type` being equal to `tloc`
22632
22617
  - Choices: `ipsec`, `gre`
22633
22618
  """
22634
22619
  return pulumi.get(self, "tloc_encapsulation")
@@ -22637,7 +22622,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22637
22622
  @pulumi.getter(name="tlocIp")
22638
22623
  def tloc_ip(self) -> Optional[str]:
22639
22624
  """
22640
- TLOC IP address
22625
+ TLOC IP address, Attribute conditional on `type` being equal to `tloc`
22641
22626
  """
22642
22627
  return pulumi.get(self, "tloc_ip")
22643
22628
 
@@ -22645,7 +22630,7 @@ class CustomControlTopologyPolicyDefinitionSequenceActionEntrySetParameter(dict)
22645
22630
  @pulumi.getter(name="tlocListId")
22646
22631
  def tloc_list_id(self) -> Optional[str]:
22647
22632
  """
22648
- TLOC list ID
22633
+ TLOC list ID, Attribute conditional on `type` being equal to `tlocList`
22649
22634
  """
22650
22635
  return pulumi.get(self, "tloc_list_id")
22651
22636
 
@@ -22753,42 +22738,42 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22753
22738
  """
22754
22739
  :param str type: Type of match entry
22755
22740
  - Choices: `colorList`, `community`, `expandedCommunity`, `ompTag`, `origin`, `originator`, `preference`, `siteList`, `pathType`, `tlocList`, `vpnList`, `prefixList`, `vpn`, `tloc`, `siteId`, `carrier`, `domainId`, `groupId`
22756
- :param str carrier: Carrier
22741
+ :param str carrier: Carrier, Attribute conditional on `type` being equal to `carrier`
22757
22742
  - Choices: `default`, `carrier1`, `carrier2`, `carrier3`, `carrier4`, `carrier5`, `carrier6`, `carrier7`, `carrier8`
22758
- :param str color_list_id: Color list ID
22743
+ :param str color_list_id: Color list ID, Attribute conditional on `type` being equal to `colorList`
22759
22744
  :param int color_list_version: Color list version
22760
- :param str community_list_id: Community list ID
22745
+ :param str community_list_id: Community list ID, Attribute conditional on `type` being equal to `community`
22761
22746
  :param int community_list_version: Community list version
22762
- :param int domain_id: Domain ID
22747
+ :param int domain_id: Domain ID, Attribute conditional on `type` being equal to `domainId`
22763
22748
  - Range: `0`-`4294967295`
22764
- :param str expanded_community_list_id: Expanded community list ID
22749
+ :param str expanded_community_list_id: Expanded community list ID, Attribute conditional on `type` being equal to `expandedCommunity`
22765
22750
  :param int expanded_community_list_version: Expanded community list version
22766
- :param int group_id: Group ID
22751
+ :param int group_id: Group ID, Attribute conditional on `type` being equal to `groupId`
22767
22752
  - Range: `0`-`4294967295`
22768
- :param int omp_tag: OMP tag
22753
+ :param int omp_tag: OMP tag, Attribute conditional on `type` being equal to `ompTag`
22769
22754
  - Range: `0`-`4294967295`
22770
- :param str origin: Origin
22755
+ :param str origin: Origin, Attribute conditional on `type` being equal to `origin`
22771
22756
  - Choices: `igp`, `egp`, `incomplete`, `aggregrate`, `bgp`, `bgp-external`, `bgp-internal`, `connected`, `eigrp`, `ospf`, `ospf-inter-area`, `ospf-intra-area`, `ospf-external1`, `ospf-external2`, `rip`, `static`, `eigrp-summary`, `eigrp-internal`, `eigrp-external`, `lisp`, `nat-dia`, `natpool`, `isis`, `isis-level1`, `isis-level2`
22772
- :param str originator: Originator IP
22773
- :param str path_type: Path type
22757
+ :param str originator: Originator IP, Attribute conditional on `type` being equal to `originator`
22758
+ :param str path_type: Path type, Attribute conditional on `type` being equal to `pathType`
22774
22759
  - Choices: `hierarchical-path`, `direct-path`, `transport-gateway-path`
22775
- :param int preference: Preference
22760
+ :param int preference: Preference, Attribute conditional on `type` being equal to `preference`
22776
22761
  - Range: `0`-`4294967295`
22777
- :param str prefix_list_id: Prefix list ID
22762
+ :param str prefix_list_id: Prefix list ID, Attribute conditional on `type` being equal to `prefixList`
22778
22763
  :param int prefix_list_version: Prefix list version
22779
- :param int site_id: Site ID
22764
+ :param int site_id: Site ID, Attribute conditional on `type` being equal to `siteId`
22780
22765
  - Range: `0`-`4294967295`
22781
- :param str site_list_id: Site list ID
22766
+ :param str site_list_id: Site list ID, Attribute conditional on `type` being equal to `siteList`
22782
22767
  :param int site_list_version: Site list version
22783
- :param str tloc_color: TLOC color
22784
- :param str tloc_encapsulation: TLOC encapsulation
22768
+ :param str tloc_color: TLOC color, Attribute conditional on `type` being equal to `tloc`
22769
+ :param str tloc_encapsulation: TLOC encapsulation, Attribute conditional on `type` being equal to `tloc`
22785
22770
  - Choices: `ipsec`, `gre`
22786
- :param str tloc_ip: TLOC IP address
22787
- :param str tloc_list_id: TLOC list ID
22771
+ :param str tloc_ip: TLOC IP address, Attribute conditional on `type` being equal to `tloc`
22772
+ :param str tloc_list_id: TLOC list ID, Attribute conditional on `type` being equal to `tlocList`
22788
22773
  :param int tloc_list_version: TLOC list version
22789
- :param int vpn_id: VPN ID
22774
+ :param int vpn_id: VPN ID, Attribute conditional on `type` being equal to `vpn`
22790
22775
  - Range: `0`-`65536`
22791
- :param str vpn_list_id: VPN list ID
22776
+ :param str vpn_list_id: VPN list ID, Attribute conditional on `type` being equal to `vpnList`
22792
22777
  :param int vpn_list_version: VPN list version
22793
22778
  """
22794
22779
  pulumi.set(__self__, "type", type)
@@ -22860,7 +22845,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22860
22845
  @pulumi.getter
22861
22846
  def carrier(self) -> Optional[str]:
22862
22847
  """
22863
- Carrier
22848
+ Carrier, Attribute conditional on `type` being equal to `carrier`
22864
22849
  - Choices: `default`, `carrier1`, `carrier2`, `carrier3`, `carrier4`, `carrier5`, `carrier6`, `carrier7`, `carrier8`
22865
22850
  """
22866
22851
  return pulumi.get(self, "carrier")
@@ -22869,7 +22854,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22869
22854
  @pulumi.getter(name="colorListId")
22870
22855
  def color_list_id(self) -> Optional[str]:
22871
22856
  """
22872
- Color list ID
22857
+ Color list ID, Attribute conditional on `type` being equal to `colorList`
22873
22858
  """
22874
22859
  return pulumi.get(self, "color_list_id")
22875
22860
 
@@ -22885,7 +22870,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22885
22870
  @pulumi.getter(name="communityListId")
22886
22871
  def community_list_id(self) -> Optional[str]:
22887
22872
  """
22888
- Community list ID
22873
+ Community list ID, Attribute conditional on `type` being equal to `community`
22889
22874
  """
22890
22875
  return pulumi.get(self, "community_list_id")
22891
22876
 
@@ -22901,7 +22886,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22901
22886
  @pulumi.getter(name="domainId")
22902
22887
  def domain_id(self) -> Optional[int]:
22903
22888
  """
22904
- Domain ID
22889
+ Domain ID, Attribute conditional on `type` being equal to `domainId`
22905
22890
  - Range: `0`-`4294967295`
22906
22891
  """
22907
22892
  return pulumi.get(self, "domain_id")
@@ -22910,7 +22895,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22910
22895
  @pulumi.getter(name="expandedCommunityListId")
22911
22896
  def expanded_community_list_id(self) -> Optional[str]:
22912
22897
  """
22913
- Expanded community list ID
22898
+ Expanded community list ID, Attribute conditional on `type` being equal to `expandedCommunity`
22914
22899
  """
22915
22900
  return pulumi.get(self, "expanded_community_list_id")
22916
22901
 
@@ -22926,7 +22911,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22926
22911
  @pulumi.getter(name="groupId")
22927
22912
  def group_id(self) -> Optional[int]:
22928
22913
  """
22929
- Group ID
22914
+ Group ID, Attribute conditional on `type` being equal to `groupId`
22930
22915
  - Range: `0`-`4294967295`
22931
22916
  """
22932
22917
  return pulumi.get(self, "group_id")
@@ -22935,7 +22920,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22935
22920
  @pulumi.getter(name="ompTag")
22936
22921
  def omp_tag(self) -> Optional[int]:
22937
22922
  """
22938
- OMP tag
22923
+ OMP tag, Attribute conditional on `type` being equal to `ompTag`
22939
22924
  - Range: `0`-`4294967295`
22940
22925
  """
22941
22926
  return pulumi.get(self, "omp_tag")
@@ -22944,7 +22929,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22944
22929
  @pulumi.getter
22945
22930
  def origin(self) -> Optional[str]:
22946
22931
  """
22947
- Origin
22932
+ Origin, Attribute conditional on `type` being equal to `origin`
22948
22933
  - Choices: `igp`, `egp`, `incomplete`, `aggregrate`, `bgp`, `bgp-external`, `bgp-internal`, `connected`, `eigrp`, `ospf`, `ospf-inter-area`, `ospf-intra-area`, `ospf-external1`, `ospf-external2`, `rip`, `static`, `eigrp-summary`, `eigrp-internal`, `eigrp-external`, `lisp`, `nat-dia`, `natpool`, `isis`, `isis-level1`, `isis-level2`
22949
22934
  """
22950
22935
  return pulumi.get(self, "origin")
@@ -22953,7 +22938,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22953
22938
  @pulumi.getter
22954
22939
  def originator(self) -> Optional[str]:
22955
22940
  """
22956
- Originator IP
22941
+ Originator IP, Attribute conditional on `type` being equal to `originator`
22957
22942
  """
22958
22943
  return pulumi.get(self, "originator")
22959
22944
 
@@ -22961,7 +22946,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22961
22946
  @pulumi.getter(name="pathType")
22962
22947
  def path_type(self) -> Optional[str]:
22963
22948
  """
22964
- Path type
22949
+ Path type, Attribute conditional on `type` being equal to `pathType`
22965
22950
  - Choices: `hierarchical-path`, `direct-path`, `transport-gateway-path`
22966
22951
  """
22967
22952
  return pulumi.get(self, "path_type")
@@ -22970,7 +22955,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22970
22955
  @pulumi.getter
22971
22956
  def preference(self) -> Optional[int]:
22972
22957
  """
22973
- Preference
22958
+ Preference, Attribute conditional on `type` being equal to `preference`
22974
22959
  - Range: `0`-`4294967295`
22975
22960
  """
22976
22961
  return pulumi.get(self, "preference")
@@ -22979,7 +22964,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22979
22964
  @pulumi.getter(name="prefixListId")
22980
22965
  def prefix_list_id(self) -> Optional[str]:
22981
22966
  """
22982
- Prefix list ID
22967
+ Prefix list ID, Attribute conditional on `type` being equal to `prefixList`
22983
22968
  """
22984
22969
  return pulumi.get(self, "prefix_list_id")
22985
22970
 
@@ -22995,7 +22980,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
22995
22980
  @pulumi.getter(name="siteId")
22996
22981
  def site_id(self) -> Optional[int]:
22997
22982
  """
22998
- Site ID
22983
+ Site ID, Attribute conditional on `type` being equal to `siteId`
22999
22984
  - Range: `0`-`4294967295`
23000
22985
  """
23001
22986
  return pulumi.get(self, "site_id")
@@ -23004,7 +22989,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
23004
22989
  @pulumi.getter(name="siteListId")
23005
22990
  def site_list_id(self) -> Optional[str]:
23006
22991
  """
23007
- Site list ID
22992
+ Site list ID, Attribute conditional on `type` being equal to `siteList`
23008
22993
  """
23009
22994
  return pulumi.get(self, "site_list_id")
23010
22995
 
@@ -23020,7 +23005,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
23020
23005
  @pulumi.getter(name="tlocColor")
23021
23006
  def tloc_color(self) -> Optional[str]:
23022
23007
  """
23023
- TLOC color
23008
+ TLOC color, Attribute conditional on `type` being equal to `tloc`
23024
23009
  """
23025
23010
  return pulumi.get(self, "tloc_color")
23026
23011
 
@@ -23028,7 +23013,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
23028
23013
  @pulumi.getter(name="tlocEncapsulation")
23029
23014
  def tloc_encapsulation(self) -> Optional[str]:
23030
23015
  """
23031
- TLOC encapsulation
23016
+ TLOC encapsulation, Attribute conditional on `type` being equal to `tloc`
23032
23017
  - Choices: `ipsec`, `gre`
23033
23018
  """
23034
23019
  return pulumi.get(self, "tloc_encapsulation")
@@ -23037,7 +23022,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
23037
23022
  @pulumi.getter(name="tlocIp")
23038
23023
  def tloc_ip(self) -> Optional[str]:
23039
23024
  """
23040
- TLOC IP address
23025
+ TLOC IP address, Attribute conditional on `type` being equal to `tloc`
23041
23026
  """
23042
23027
  return pulumi.get(self, "tloc_ip")
23043
23028
 
@@ -23045,7 +23030,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
23045
23030
  @pulumi.getter(name="tlocListId")
23046
23031
  def tloc_list_id(self) -> Optional[str]:
23047
23032
  """
23048
- TLOC list ID
23033
+ TLOC list ID, Attribute conditional on `type` being equal to `tlocList`
23049
23034
  """
23050
23035
  return pulumi.get(self, "tloc_list_id")
23051
23036
 
@@ -23061,7 +23046,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
23061
23046
  @pulumi.getter(name="vpnId")
23062
23047
  def vpn_id(self) -> Optional[int]:
23063
23048
  """
23064
- VPN ID
23049
+ VPN ID, Attribute conditional on `type` being equal to `vpn`
23065
23050
  - Range: `0`-`65536`
23066
23051
  """
23067
23052
  return pulumi.get(self, "vpn_id")
@@ -23070,7 +23055,7 @@ class CustomControlTopologyPolicyDefinitionSequenceMatchEntry(dict):
23070
23055
  @pulumi.getter(name="vpnListId")
23071
23056
  def vpn_list_id(self) -> Optional[str]:
23072
23057
  """
23073
- VPN list ID
23058
+ VPN list ID, Attribute conditional on `type` being equal to `vpnList`
23074
23059
  """
23075
23060
  return pulumi.get(self, "vpn_list_id")
23076
23061
 
@@ -23215,6 +23200,90 @@ class DnsSecurityPolicyDefinitionTargetVpn(dict):
23215
23200
  return pulumi.get(self, "vpn_ids")
23216
23201
 
23217
23202
 
23203
+ @pulumi.output_type
23204
+ class DnsSecurityPolicyTargetVpn(dict):
23205
+ @staticmethod
23206
+ def __key_warning(key: str):
23207
+ suggest = None
23208
+ if key == "dnsServerIp":
23209
+ suggest = "dns_server_ip"
23210
+ elif key == "localDomainBypassEnabled":
23211
+ suggest = "local_domain_bypass_enabled"
23212
+ elif key == "umbrellaDefault":
23213
+ suggest = "umbrella_default"
23214
+
23215
+ if suggest:
23216
+ pulumi.log.warn(f"Key '{key}' not found in DnsSecurityPolicyTargetVpn. Access the value via the '{suggest}' property getter instead.")
23217
+
23218
+ def __getitem__(self, key: str) -> Any:
23219
+ DnsSecurityPolicyTargetVpn.__key_warning(key)
23220
+ return super().__getitem__(key)
23221
+
23222
+ def get(self, key: str, default = None) -> Any:
23223
+ DnsSecurityPolicyTargetVpn.__key_warning(key)
23224
+ return super().get(key, default)
23225
+
23226
+ def __init__(__self__, *,
23227
+ dns_server_ip: Optional[str] = None,
23228
+ local_domain_bypass_enabled: Optional[bool] = None,
23229
+ uid: Optional[str] = None,
23230
+ umbrella_default: Optional[bool] = None,
23231
+ vpns: Optional[Sequence[str]] = None):
23232
+ """
23233
+ :param str dns_server_ip: Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
23234
+ :param bool local_domain_bypass_enabled: Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
23235
+ :param str uid: non empty interger string
23236
+ :param bool umbrella_default: Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
23237
+ """
23238
+ if dns_server_ip is not None:
23239
+ pulumi.set(__self__, "dns_server_ip", dns_server_ip)
23240
+ if local_domain_bypass_enabled is not None:
23241
+ pulumi.set(__self__, "local_domain_bypass_enabled", local_domain_bypass_enabled)
23242
+ if uid is not None:
23243
+ pulumi.set(__self__, "uid", uid)
23244
+ if umbrella_default is not None:
23245
+ pulumi.set(__self__, "umbrella_default", umbrella_default)
23246
+ if vpns is not None:
23247
+ pulumi.set(__self__, "vpns", vpns)
23248
+
23249
+ @property
23250
+ @pulumi.getter(name="dnsServerIp")
23251
+ def dns_server_ip(self) -> Optional[str]:
23252
+ """
23253
+ Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
23254
+ """
23255
+ return pulumi.get(self, "dns_server_ip")
23256
+
23257
+ @property
23258
+ @pulumi.getter(name="localDomainBypassEnabled")
23259
+ def local_domain_bypass_enabled(self) -> Optional[bool]:
23260
+ """
23261
+ Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
23262
+ """
23263
+ return pulumi.get(self, "local_domain_bypass_enabled")
23264
+
23265
+ @property
23266
+ @pulumi.getter
23267
+ def uid(self) -> Optional[str]:
23268
+ """
23269
+ non empty interger string
23270
+ """
23271
+ return pulumi.get(self, "uid")
23272
+
23273
+ @property
23274
+ @pulumi.getter(name="umbrellaDefault")
23275
+ def umbrella_default(self) -> Optional[bool]:
23276
+ """
23277
+ Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
23278
+ """
23279
+ return pulumi.get(self, "umbrella_default")
23280
+
23281
+ @property
23282
+ @pulumi.getter
23283
+ def vpns(self) -> Optional[Sequence[str]]:
23284
+ return pulumi.get(self, "vpns")
23285
+
23286
+
23218
23287
  @pulumi.output_type
23219
23288
  class DomainListPolicyObjectEntry(dict):
23220
23289
  def __init__(__self__, *,
@@ -24195,6 +24264,56 @@ class HubAndSpokeTopologyPolicyDefinitionTopologySpokeHub(dict):
24195
24264
  return pulumi.get(self, "site_list_version")
24196
24265
 
24197
24266
 
24267
+ @pulumi.output_type
24268
+ class IntrusionPreventionPolicyDefinitionLogging(dict):
24269
+ @staticmethod
24270
+ def __key_warning(key: str):
24271
+ suggest = None
24272
+ if key == "externalSyslogServerIp":
24273
+ suggest = "external_syslog_server_ip"
24274
+ elif key == "externalSyslogServerVpn":
24275
+ suggest = "external_syslog_server_vpn"
24276
+
24277
+ if suggest:
24278
+ pulumi.log.warn(f"Key '{key}' not found in IntrusionPreventionPolicyDefinitionLogging. Access the value via the '{suggest}' property getter instead.")
24279
+
24280
+ def __getitem__(self, key: str) -> Any:
24281
+ IntrusionPreventionPolicyDefinitionLogging.__key_warning(key)
24282
+ return super().__getitem__(key)
24283
+
24284
+ def get(self, key: str, default = None) -> Any:
24285
+ IntrusionPreventionPolicyDefinitionLogging.__key_warning(key)
24286
+ return super().get(key, default)
24287
+
24288
+ def __init__(__self__, *,
24289
+ external_syslog_server_ip: Optional[str] = None,
24290
+ external_syslog_server_vpn: Optional[str] = None):
24291
+ """
24292
+ :param str external_syslog_server_ip: External Syslog Server IP
24293
+ :param str external_syslog_server_vpn: External Syslog Server VPN
24294
+ """
24295
+ if external_syslog_server_ip is not None:
24296
+ pulumi.set(__self__, "external_syslog_server_ip", external_syslog_server_ip)
24297
+ if external_syslog_server_vpn is not None:
24298
+ pulumi.set(__self__, "external_syslog_server_vpn", external_syslog_server_vpn)
24299
+
24300
+ @property
24301
+ @pulumi.getter(name="externalSyslogServerIp")
24302
+ def external_syslog_server_ip(self) -> Optional[str]:
24303
+ """
24304
+ External Syslog Server IP
24305
+ """
24306
+ return pulumi.get(self, "external_syslog_server_ip")
24307
+
24308
+ @property
24309
+ @pulumi.getter(name="externalSyslogServerVpn")
24310
+ def external_syslog_server_vpn(self) -> Optional[str]:
24311
+ """
24312
+ External Syslog Server VPN
24313
+ """
24314
+ return pulumi.get(self, "external_syslog_server_vpn")
24315
+
24316
+
24198
24317
  @pulumi.output_type
24199
24318
  class IpsSignatureListPolicyObjectEntry(dict):
24200
24319
  @staticmethod
@@ -24386,15 +24505,15 @@ class Ipv4AclPolicyDefinitionSequenceActionEntry(dict):
24386
24505
  """
24387
24506
  :param str type: Type of action entry
24388
24507
  - Choices: `class`, `count`, `set`, `log`, `mirror`, `policer`
24389
- :param str class_map_id: Class map ID
24508
+ :param str class_map_id: Class map ID, Attribute conditional on `type` being equal to `class`
24390
24509
  :param int class_map_version: Class map version
24391
- :param str counter_name: Counter name
24392
- :param bool log: Enable logging
24393
- :param str mirror_id: Mirror ID
24510
+ :param str counter_name: Counter name, Attribute conditional on `type` being equal to `count`
24511
+ :param bool log: Enable logging, Attribute conditional on `type` being equal to `log`
24512
+ :param str mirror_id: Mirror ID, Attribute conditional on `type` being equal to `mirror`
24394
24513
  :param int mirror_version: Mirror version
24395
- :param str policer_id: Policer ID
24514
+ :param str policer_id: Policer ID, Attribute conditional on `type` being equal to `policer`
24396
24515
  :param int policer_version: Policer version
24397
- :param Sequence['Ipv4AclPolicyDefinitionSequenceActionEntrySetParameterArgs'] set_parameters: List of set parameters
24516
+ :param Sequence['Ipv4AclPolicyDefinitionSequenceActionEntrySetParameterArgs'] set_parameters: List of set parameters, Attribute conditional on `type` being equal to `set`
24398
24517
  """
24399
24518
  pulumi.set(__self__, "type", type)
24400
24519
  if class_map_id is not None:
@@ -24429,7 +24548,7 @@ class Ipv4AclPolicyDefinitionSequenceActionEntry(dict):
24429
24548
  @pulumi.getter(name="classMapId")
24430
24549
  def class_map_id(self) -> Optional[str]:
24431
24550
  """
24432
- Class map ID
24551
+ Class map ID, Attribute conditional on `type` being equal to `class`
24433
24552
  """
24434
24553
  return pulumi.get(self, "class_map_id")
24435
24554
 
@@ -24445,7 +24564,7 @@ class Ipv4AclPolicyDefinitionSequenceActionEntry(dict):
24445
24564
  @pulumi.getter(name="counterName")
24446
24565
  def counter_name(self) -> Optional[str]:
24447
24566
  """
24448
- Counter name
24567
+ Counter name, Attribute conditional on `type` being equal to `count`
24449
24568
  """
24450
24569
  return pulumi.get(self, "counter_name")
24451
24570
 
@@ -24453,7 +24572,7 @@ class Ipv4AclPolicyDefinitionSequenceActionEntry(dict):
24453
24572
  @pulumi.getter
24454
24573
  def log(self) -> Optional[bool]:
24455
24574
  """
24456
- Enable logging
24575
+ Enable logging, Attribute conditional on `type` being equal to `log`
24457
24576
  """
24458
24577
  return pulumi.get(self, "log")
24459
24578
 
@@ -24461,7 +24580,7 @@ class Ipv4AclPolicyDefinitionSequenceActionEntry(dict):
24461
24580
  @pulumi.getter(name="mirrorId")
24462
24581
  def mirror_id(self) -> Optional[str]:
24463
24582
  """
24464
- Mirror ID
24583
+ Mirror ID, Attribute conditional on `type` being equal to `mirror`
24465
24584
  """
24466
24585
  return pulumi.get(self, "mirror_id")
24467
24586
 
@@ -24477,7 +24596,7 @@ class Ipv4AclPolicyDefinitionSequenceActionEntry(dict):
24477
24596
  @pulumi.getter(name="policerId")
24478
24597
  def policer_id(self) -> Optional[str]:
24479
24598
  """
24480
- Policer ID
24599
+ Policer ID, Attribute conditional on `type` being equal to `policer`
24481
24600
  """
24482
24601
  return pulumi.get(self, "policer_id")
24483
24602
 
@@ -24493,7 +24612,7 @@ class Ipv4AclPolicyDefinitionSequenceActionEntry(dict):
24493
24612
  @pulumi.getter(name="setParameters")
24494
24613
  def set_parameters(self) -> Optional[Sequence['outputs.Ipv4AclPolicyDefinitionSequenceActionEntrySetParameter']]:
24495
24614
  """
24496
- List of set parameters
24615
+ List of set parameters, Attribute conditional on `type` being equal to `set`
24497
24616
  """
24498
24617
  return pulumi.get(self, "set_parameters")
24499
24618
 
@@ -24524,9 +24643,9 @@ class Ipv4AclPolicyDefinitionSequenceActionEntrySetParameter(dict):
24524
24643
  """
24525
24644
  :param str type: Type of set parameter
24526
24645
  - Choices: `dscp`, `nextHop`
24527
- :param int dscp: DSCP value
24646
+ :param int dscp: DSCP value, Attribute conditional on `type` being equal to `dscp`
24528
24647
  - Range: `0`-`63`
24529
- :param str next_hop: Next hop IP
24648
+ :param str next_hop: Next hop IP, Attribute conditional on `type` being equal to `nextHop`
24530
24649
  """
24531
24650
  pulumi.set(__self__, "type", type)
24532
24651
  if dscp is not None:
@@ -24547,7 +24666,7 @@ class Ipv4AclPolicyDefinitionSequenceActionEntrySetParameter(dict):
24547
24666
  @pulumi.getter
24548
24667
  def dscp(self) -> Optional[int]:
24549
24668
  """
24550
- DSCP value
24669
+ DSCP value, Attribute conditional on `type` being equal to `dscp`
24551
24670
  - Range: `0`-`63`
24552
24671
  """
24553
24672
  return pulumi.get(self, "dscp")
@@ -24556,7 +24675,7 @@ class Ipv4AclPolicyDefinitionSequenceActionEntrySetParameter(dict):
24556
24675
  @pulumi.getter(name="nextHop")
24557
24676
  def next_hop(self) -> Optional[str]:
24558
24677
  """
24559
- Next hop IP
24678
+ Next hop IP, Attribute conditional on `type` being equal to `nextHop`
24560
24679
  """
24561
24680
  return pulumi.get(self, "next_hop")
24562
24681
 
@@ -24623,25 +24742,25 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24623
24742
  """
24624
24743
  :param str type: Type of match entry
24625
24744
  - Choices: `dscp`, `sourceIp`, `destinationIp`, `class`, `packetLength`, `plp`, `sourcePort`, `destinationPort`, `sourceDataPrefixList`, `destinationDataPrefixList`, `protocol`, `tcp`, `icmpMessage`
24626
- :param str class_map_id: Class map ID
24745
+ :param str class_map_id: Class map ID, Attribute conditional on `type` being equal to `class`
24627
24746
  :param int class_map_version: Class map version
24628
- :param str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID
24747
+ :param str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
24629
24748
  :param int destination_data_ipv4_prefix_list_version: Destination data IPv4 prefix list version
24630
- :param str destination_ip: Destination IP prefix
24631
- :param str destination_ports: Destination ports. Single value (0-65535) or ranges separated by spaces.
24632
- :param int dscp: DSCP value
24749
+ :param str destination_ip: Destination IP prefix, Attribute conditional on `type` being equal to `destinationIp`
24750
+ :param str destination_ports: Destination ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `destinationPort`
24751
+ :param int dscp: DSCP value, Attribute conditional on `type` being equal to `dscp`
24633
24752
  - Range: `0`-`63`
24634
- :param str icmp_message: ICMP Message
24635
- :param int packet_length: Packet length
24753
+ :param str icmp_message: ICMP Message, Attribute conditional on `type` being equal to `icmpMessage`
24754
+ :param int packet_length: Packet length, Attribute conditional on `type` being equal to `packetLength`
24636
24755
  - Range: `0`-`65535`
24637
- :param str priority: PLP - priority
24756
+ :param str priority: PLP - priority, Attribute conditional on `type` being equal to `plp`
24638
24757
  - Choices: `high`, `low`
24639
- :param str protocol: Single value (0-255) or multiple values separated by spaces
24640
- :param str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID
24758
+ :param str protocol: Single value (0-255) or multiple values separated by spaces, Attribute conditional on `type` being equal to `protocol`
24759
+ :param str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
24641
24760
  :param int source_data_ipv4_prefix_list_version: Source data IPv4 prefix list version
24642
- :param str source_ip: Source IP prefix
24643
- :param str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces.
24644
- :param str tcp: TCP parameters
24761
+ :param str source_ip: Source IP prefix, Attribute conditional on `type` being equal to `sourceIp`
24762
+ :param str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
24763
+ :param str tcp: TCP parameters, Attribute conditional on `type` being equal to `tcp`
24645
24764
  - Choices: `syn`
24646
24765
  """
24647
24766
  pulumi.set(__self__, "type", type)
@@ -24691,7 +24810,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24691
24810
  @pulumi.getter(name="classMapId")
24692
24811
  def class_map_id(self) -> Optional[str]:
24693
24812
  """
24694
- Class map ID
24813
+ Class map ID, Attribute conditional on `type` being equal to `class`
24695
24814
  """
24696
24815
  return pulumi.get(self, "class_map_id")
24697
24816
 
@@ -24707,7 +24826,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24707
24826
  @pulumi.getter(name="destinationDataIpv4PrefixListId")
24708
24827
  def destination_data_ipv4_prefix_list_id(self) -> Optional[str]:
24709
24828
  """
24710
- Destination data IPv4 prefix list ID
24829
+ Destination data IPv4 prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
24711
24830
  """
24712
24831
  return pulumi.get(self, "destination_data_ipv4_prefix_list_id")
24713
24832
 
@@ -24723,7 +24842,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24723
24842
  @pulumi.getter(name="destinationIp")
24724
24843
  def destination_ip(self) -> Optional[str]:
24725
24844
  """
24726
- Destination IP prefix
24845
+ Destination IP prefix, Attribute conditional on `type` being equal to `destinationIp`
24727
24846
  """
24728
24847
  return pulumi.get(self, "destination_ip")
24729
24848
 
@@ -24731,7 +24850,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24731
24850
  @pulumi.getter(name="destinationPorts")
24732
24851
  def destination_ports(self) -> Optional[str]:
24733
24852
  """
24734
- Destination ports. Single value (0-65535) or ranges separated by spaces.
24853
+ Destination ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `destinationPort`
24735
24854
  """
24736
24855
  return pulumi.get(self, "destination_ports")
24737
24856
 
@@ -24739,7 +24858,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24739
24858
  @pulumi.getter
24740
24859
  def dscp(self) -> Optional[int]:
24741
24860
  """
24742
- DSCP value
24861
+ DSCP value, Attribute conditional on `type` being equal to `dscp`
24743
24862
  - Range: `0`-`63`
24744
24863
  """
24745
24864
  return pulumi.get(self, "dscp")
@@ -24748,7 +24867,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24748
24867
  @pulumi.getter(name="icmpMessage")
24749
24868
  def icmp_message(self) -> Optional[str]:
24750
24869
  """
24751
- ICMP Message
24870
+ ICMP Message, Attribute conditional on `type` being equal to `icmpMessage`
24752
24871
  """
24753
24872
  return pulumi.get(self, "icmp_message")
24754
24873
 
@@ -24756,7 +24875,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24756
24875
  @pulumi.getter(name="packetLength")
24757
24876
  def packet_length(self) -> Optional[int]:
24758
24877
  """
24759
- Packet length
24878
+ Packet length, Attribute conditional on `type` being equal to `packetLength`
24760
24879
  - Range: `0`-`65535`
24761
24880
  """
24762
24881
  return pulumi.get(self, "packet_length")
@@ -24765,7 +24884,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24765
24884
  @pulumi.getter
24766
24885
  def priority(self) -> Optional[str]:
24767
24886
  """
24768
- PLP - priority
24887
+ PLP - priority, Attribute conditional on `type` being equal to `plp`
24769
24888
  - Choices: `high`, `low`
24770
24889
  """
24771
24890
  return pulumi.get(self, "priority")
@@ -24774,7 +24893,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24774
24893
  @pulumi.getter
24775
24894
  def protocol(self) -> Optional[str]:
24776
24895
  """
24777
- Single value (0-255) or multiple values separated by spaces
24896
+ Single value (0-255) or multiple values separated by spaces, Attribute conditional on `type` being equal to `protocol`
24778
24897
  """
24779
24898
  return pulumi.get(self, "protocol")
24780
24899
 
@@ -24782,7 +24901,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24782
24901
  @pulumi.getter(name="sourceDataIpv4PrefixListId")
24783
24902
  def source_data_ipv4_prefix_list_id(self) -> Optional[str]:
24784
24903
  """
24785
- Source data IPv4 prefix list ID
24904
+ Source data IPv4 prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
24786
24905
  """
24787
24906
  return pulumi.get(self, "source_data_ipv4_prefix_list_id")
24788
24907
 
@@ -24798,7 +24917,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24798
24917
  @pulumi.getter(name="sourceIp")
24799
24918
  def source_ip(self) -> Optional[str]:
24800
24919
  """
24801
- Source IP prefix
24920
+ Source IP prefix, Attribute conditional on `type` being equal to `sourceIp`
24802
24921
  """
24803
24922
  return pulumi.get(self, "source_ip")
24804
24923
 
@@ -24806,7 +24925,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24806
24925
  @pulumi.getter(name="sourcePorts")
24807
24926
  def source_ports(self) -> Optional[str]:
24808
24927
  """
24809
- Source ports. Single value (0-65535) or ranges separated by spaces.
24928
+ Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
24810
24929
  """
24811
24930
  return pulumi.get(self, "source_ports")
24812
24931
 
@@ -24814,7 +24933,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
24814
24933
  @pulumi.getter
24815
24934
  def tcp(self) -> Optional[str]:
24816
24935
  """
24817
- TCP parameters
24936
+ TCP parameters, Attribute conditional on `type` being equal to `tcp`
24818
24937
  - Choices: `syn`
24819
24938
  """
24820
24939
  return pulumi.get(self, "tcp")
@@ -24935,7 +25054,7 @@ class Ipv4DeviceAclPolicyDefinitionSequenceActionEntry(dict):
24935
25054
  """
24936
25055
  :param str type: Type of action entry
24937
25056
  - Choices: `count`
24938
- :param str counter_name: Counter name
25057
+ :param str counter_name: Counter name, Attribute conditional on `type` being equal to `count`
24939
25058
  """
24940
25059
  pulumi.set(__self__, "type", type)
24941
25060
  if counter_name is not None:
@@ -24954,7 +25073,7 @@ class Ipv4DeviceAclPolicyDefinitionSequenceActionEntry(dict):
24954
25073
  @pulumi.getter(name="counterName")
24955
25074
  def counter_name(self) -> Optional[str]:
24956
25075
  """
24957
- Counter name
25076
+ Counter name, Attribute conditional on `type` being equal to `count`
24958
25077
  """
24959
25078
  return pulumi.get(self, "counter_name")
24960
25079
 
@@ -25005,15 +25124,15 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25005
25124
  """
25006
25125
  :param str type: Type of match entry
25007
25126
  - Choices: `sourceIp`, `destinationIp`, `sourcePort`, `destinationPort`, `sourceDataPrefixList`, `destinationDataPrefixList`
25008
- :param str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID
25127
+ :param str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
25009
25128
  :param int destination_data_ipv4_prefix_list_version: Destination data IPv4 prefix list version
25010
- :param str destination_ip: Destination IP prefix
25011
- :param int destination_port: Destination port, only `22` and `161` supported
25129
+ :param str destination_ip: Destination IP prefix, Attribute conditional on `type` being equal to `destinationIp`
25130
+ :param int destination_port: Destination port, only `22` and `161` supported, Attribute conditional on `type` being equal to `destinationPort`
25012
25131
  - Range: `0`-`65535`
25013
- :param str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID
25132
+ :param str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
25014
25133
  :param int source_data_ipv4_prefix_list_version: Source data IPv4 prefix list version
25015
- :param str source_ip: Source IP prefix
25016
- :param str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces.
25134
+ :param str source_ip: Source IP prefix, Attribute conditional on `type` being equal to `sourceIp`
25135
+ :param str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
25017
25136
  """
25018
25137
  pulumi.set(__self__, "type", type)
25019
25138
  if destination_data_ipv4_prefix_list_id is not None:
@@ -25046,7 +25165,7 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25046
25165
  @pulumi.getter(name="destinationDataIpv4PrefixListId")
25047
25166
  def destination_data_ipv4_prefix_list_id(self) -> Optional[str]:
25048
25167
  """
25049
- Destination data IPv4 prefix list ID
25168
+ Destination data IPv4 prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
25050
25169
  """
25051
25170
  return pulumi.get(self, "destination_data_ipv4_prefix_list_id")
25052
25171
 
@@ -25062,7 +25181,7 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25062
25181
  @pulumi.getter(name="destinationIp")
25063
25182
  def destination_ip(self) -> Optional[str]:
25064
25183
  """
25065
- Destination IP prefix
25184
+ Destination IP prefix, Attribute conditional on `type` being equal to `destinationIp`
25066
25185
  """
25067
25186
  return pulumi.get(self, "destination_ip")
25068
25187
 
@@ -25070,7 +25189,7 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25070
25189
  @pulumi.getter(name="destinationPort")
25071
25190
  def destination_port(self) -> Optional[int]:
25072
25191
  """
25073
- Destination port, only `22` and `161` supported
25192
+ Destination port, only `22` and `161` supported, Attribute conditional on `type` being equal to `destinationPort`
25074
25193
  - Range: `0`-`65535`
25075
25194
  """
25076
25195
  return pulumi.get(self, "destination_port")
@@ -25079,7 +25198,7 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25079
25198
  @pulumi.getter(name="sourceDataIpv4PrefixListId")
25080
25199
  def source_data_ipv4_prefix_list_id(self) -> Optional[str]:
25081
25200
  """
25082
- Source data IPv4 prefix list ID
25201
+ Source data IPv4 prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
25083
25202
  """
25084
25203
  return pulumi.get(self, "source_data_ipv4_prefix_list_id")
25085
25204
 
@@ -25095,7 +25214,7 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25095
25214
  @pulumi.getter(name="sourceIp")
25096
25215
  def source_ip(self) -> Optional[str]:
25097
25216
  """
25098
- Source IP prefix
25217
+ Source IP prefix, Attribute conditional on `type` being equal to `sourceIp`
25099
25218
  """
25100
25219
  return pulumi.get(self, "source_ip")
25101
25220
 
@@ -25103,7 +25222,7 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25103
25222
  @pulumi.getter(name="sourcePorts")
25104
25223
  def source_ports(self) -> Optional[str]:
25105
25224
  """
25106
- Source ports. Single value (0-65535) or ranges separated by spaces.
25225
+ Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
25107
25226
  """
25108
25227
  return pulumi.get(self, "source_ports")
25109
25228
 
@@ -25287,15 +25406,15 @@ class Ipv6AclPolicyDefinitionSequenceActionEntry(dict):
25287
25406
  """
25288
25407
  :param str type: Type of action entry
25289
25408
  - Choices: `class`, `count`, `set`, `log`, `mirror`, `policer`
25290
- :param str class_map_id: Class map ID
25409
+ :param str class_map_id: Class map ID, Attribute conditional on `type` being equal to `class`
25291
25410
  :param int class_map_version: Class map version
25292
- :param str counter_name: Counter name
25293
- :param bool log: Enable logging
25294
- :param str mirror_id: Mirror ID
25411
+ :param str counter_name: Counter name, Attribute conditional on `type` being equal to `count`
25412
+ :param bool log: Enable logging, Attribute conditional on `type` being equal to `log`
25413
+ :param str mirror_id: Mirror ID, Attribute conditional on `type` being equal to `mirror`
25295
25414
  :param int mirror_version: Mirror version
25296
- :param str policer_id: Policer ID
25415
+ :param str policer_id: Policer ID, Attribute conditional on `type` being equal to `policer`
25297
25416
  :param int policer_version: Policer version
25298
- :param Sequence['Ipv6AclPolicyDefinitionSequenceActionEntrySetParameterArgs'] set_parameters: List of set parameters
25417
+ :param Sequence['Ipv6AclPolicyDefinitionSequenceActionEntrySetParameterArgs'] set_parameters: List of set parameters, Attribute conditional on `type` being equal to `set`
25299
25418
  """
25300
25419
  pulumi.set(__self__, "type", type)
25301
25420
  if class_map_id is not None:
@@ -25330,7 +25449,7 @@ class Ipv6AclPolicyDefinitionSequenceActionEntry(dict):
25330
25449
  @pulumi.getter(name="classMapId")
25331
25450
  def class_map_id(self) -> Optional[str]:
25332
25451
  """
25333
- Class map ID
25452
+ Class map ID, Attribute conditional on `type` being equal to `class`
25334
25453
  """
25335
25454
  return pulumi.get(self, "class_map_id")
25336
25455
 
@@ -25346,7 +25465,7 @@ class Ipv6AclPolicyDefinitionSequenceActionEntry(dict):
25346
25465
  @pulumi.getter(name="counterName")
25347
25466
  def counter_name(self) -> Optional[str]:
25348
25467
  """
25349
- Counter name
25468
+ Counter name, Attribute conditional on `type` being equal to `count`
25350
25469
  """
25351
25470
  return pulumi.get(self, "counter_name")
25352
25471
 
@@ -25354,7 +25473,7 @@ class Ipv6AclPolicyDefinitionSequenceActionEntry(dict):
25354
25473
  @pulumi.getter
25355
25474
  def log(self) -> Optional[bool]:
25356
25475
  """
25357
- Enable logging
25476
+ Enable logging, Attribute conditional on `type` being equal to `log`
25358
25477
  """
25359
25478
  return pulumi.get(self, "log")
25360
25479
 
@@ -25362,7 +25481,7 @@ class Ipv6AclPolicyDefinitionSequenceActionEntry(dict):
25362
25481
  @pulumi.getter(name="mirrorId")
25363
25482
  def mirror_id(self) -> Optional[str]:
25364
25483
  """
25365
- Mirror ID
25484
+ Mirror ID, Attribute conditional on `type` being equal to `mirror`
25366
25485
  """
25367
25486
  return pulumi.get(self, "mirror_id")
25368
25487
 
@@ -25378,7 +25497,7 @@ class Ipv6AclPolicyDefinitionSequenceActionEntry(dict):
25378
25497
  @pulumi.getter(name="policerId")
25379
25498
  def policer_id(self) -> Optional[str]:
25380
25499
  """
25381
- Policer ID
25500
+ Policer ID, Attribute conditional on `type` being equal to `policer`
25382
25501
  """
25383
25502
  return pulumi.get(self, "policer_id")
25384
25503
 
@@ -25394,7 +25513,7 @@ class Ipv6AclPolicyDefinitionSequenceActionEntry(dict):
25394
25513
  @pulumi.getter(name="setParameters")
25395
25514
  def set_parameters(self) -> Optional[Sequence['outputs.Ipv6AclPolicyDefinitionSequenceActionEntrySetParameter']]:
25396
25515
  """
25397
- List of set parameters
25516
+ List of set parameters, Attribute conditional on `type` being equal to `set`
25398
25517
  """
25399
25518
  return pulumi.get(self, "set_parameters")
25400
25519
 
@@ -25427,8 +25546,8 @@ class Ipv6AclPolicyDefinitionSequenceActionEntrySetParameter(dict):
25427
25546
  """
25428
25547
  :param str type: Type of set parameter
25429
25548
  - Choices: `trafficClass`, `nextHop`
25430
- :param str next_hop: Next hop IP
25431
- :param int traffic_class: Traffic class
25549
+ :param str next_hop: Next hop IP, Attribute conditional on `type` being equal to `nextHop`
25550
+ :param int traffic_class: Traffic class, Attribute conditional on `type` being equal to `trafficClass`
25432
25551
  - Range: `0`-`63`
25433
25552
  """
25434
25553
  pulumi.set(__self__, "type", type)
@@ -25450,7 +25569,7 @@ class Ipv6AclPolicyDefinitionSequenceActionEntrySetParameter(dict):
25450
25569
  @pulumi.getter(name="nextHop")
25451
25570
  def next_hop(self) -> Optional[str]:
25452
25571
  """
25453
- Next hop IP
25572
+ Next hop IP, Attribute conditional on `type` being equal to `nextHop`
25454
25573
  """
25455
25574
  return pulumi.get(self, "next_hop")
25456
25575
 
@@ -25458,7 +25577,7 @@ class Ipv6AclPolicyDefinitionSequenceActionEntrySetParameter(dict):
25458
25577
  @pulumi.getter(name="trafficClass")
25459
25578
  def traffic_class(self) -> Optional[int]:
25460
25579
  """
25461
- Traffic class
25580
+ Traffic class, Attribute conditional on `type` being equal to `trafficClass`
25462
25581
  - Range: `0`-`63`
25463
25582
  """
25464
25583
  return pulumi.get(self, "traffic_class")
@@ -25527,25 +25646,25 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25527
25646
  """
25528
25647
  :param str type: Type of match entry
25529
25648
  - Choices: `nextHeader`, `sourceIpv6`, `destinationIpv6`, `class`, `packetLength`, `plp`, `sourcePort`, `destinationPort`, `sourceDataIpv6PrefixList`, `destinationDataIpv6PrefixList`, `tcp`, `trafficClass`
25530
- :param str class_map_id: Class map ID
25649
+ :param str class_map_id: Class map ID, Attribute conditional on `type` being equal to `class`
25531
25650
  :param int class_map_version: Class map version
25532
- :param str destination_data_ipv6_prefix_list_id: Destination dataIPv6 prefix list ID
25651
+ :param str destination_data_ipv6_prefix_list_id: Destination dataIPv6 prefix list ID, Attribute conditional on `type` being equal to `destinationDataIpv6PrefixList`
25533
25652
  :param int destination_data_ipv6_prefix_list_version: Destination data prefix list version
25534
- :param str destination_ip: Destination IPv6 prefix
25535
- :param str destination_ports: Destination ports. Single value (0-65535) or ranges separated by spaces.
25536
- :param int next_header: Next header
25653
+ :param str destination_ip: Destination IPv6 prefix, Attribute conditional on `type` being equal to `destinationIpv6`
25654
+ :param str destination_ports: Destination ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `destinationPort`
25655
+ :param int next_header: Next header, Attribute conditional on `type` being equal to `nextHeader`
25537
25656
  - Range: `0`-`255`
25538
- :param int packet_length: Packet length
25657
+ :param int packet_length: Packet length, Attribute conditional on `type` being equal to `packetLength`
25539
25658
  - Range: `0`-`65535`
25540
- :param str priority: PLP - priority
25659
+ :param str priority: PLP - priority, Attribute conditional on `type` being equal to `plp`
25541
25660
  - Choices: `high`, `low`
25542
- :param str source_data_ipv6_prefix_list_id: Source data IPv6 prefix list ID
25661
+ :param str source_data_ipv6_prefix_list_id: Source data IPv6 prefix list ID, Attribute conditional on `type` being equal to `sourceDataIpv6PrefixList`
25543
25662
  :param int source_data_ipv6_prefix_list_version: Source data IPv6 prefix list version
25544
- :param str source_ip: Source IPv6 prefix
25545
- :param str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces.
25546
- :param str tcp: TCP parameters
25663
+ :param str source_ip: Source IPv6 prefix, Attribute conditional on `type` being equal to `sourceIpv6`
25664
+ :param str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
25665
+ :param str tcp: TCP parameters, Attribute conditional on `type` being equal to `tcp`
25547
25666
  - Choices: `syn`
25548
- :param int traffic_class: Traffic class
25667
+ :param int traffic_class: Traffic class, Attribute conditional on `type` being equal to `trafficClass`
25549
25668
  - Range: `0`-`63`
25550
25669
  """
25551
25670
  pulumi.set(__self__, "type", type)
@@ -25593,7 +25712,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25593
25712
  @pulumi.getter(name="classMapId")
25594
25713
  def class_map_id(self) -> Optional[str]:
25595
25714
  """
25596
- Class map ID
25715
+ Class map ID, Attribute conditional on `type` being equal to `class`
25597
25716
  """
25598
25717
  return pulumi.get(self, "class_map_id")
25599
25718
 
@@ -25609,7 +25728,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25609
25728
  @pulumi.getter(name="destinationDataIpv6PrefixListId")
25610
25729
  def destination_data_ipv6_prefix_list_id(self) -> Optional[str]:
25611
25730
  """
25612
- Destination dataIPv6 prefix list ID
25731
+ Destination dataIPv6 prefix list ID, Attribute conditional on `type` being equal to `destinationDataIpv6PrefixList`
25613
25732
  """
25614
25733
  return pulumi.get(self, "destination_data_ipv6_prefix_list_id")
25615
25734
 
@@ -25625,7 +25744,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25625
25744
  @pulumi.getter(name="destinationIp")
25626
25745
  def destination_ip(self) -> Optional[str]:
25627
25746
  """
25628
- Destination IPv6 prefix
25747
+ Destination IPv6 prefix, Attribute conditional on `type` being equal to `destinationIpv6`
25629
25748
  """
25630
25749
  return pulumi.get(self, "destination_ip")
25631
25750
 
@@ -25633,7 +25752,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25633
25752
  @pulumi.getter(name="destinationPorts")
25634
25753
  def destination_ports(self) -> Optional[str]:
25635
25754
  """
25636
- Destination ports. Single value (0-65535) or ranges separated by spaces.
25755
+ Destination ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `destinationPort`
25637
25756
  """
25638
25757
  return pulumi.get(self, "destination_ports")
25639
25758
 
@@ -25641,7 +25760,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25641
25760
  @pulumi.getter(name="nextHeader")
25642
25761
  def next_header(self) -> Optional[int]:
25643
25762
  """
25644
- Next header
25763
+ Next header, Attribute conditional on `type` being equal to `nextHeader`
25645
25764
  - Range: `0`-`255`
25646
25765
  """
25647
25766
  return pulumi.get(self, "next_header")
@@ -25650,7 +25769,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25650
25769
  @pulumi.getter(name="packetLength")
25651
25770
  def packet_length(self) -> Optional[int]:
25652
25771
  """
25653
- Packet length
25772
+ Packet length, Attribute conditional on `type` being equal to `packetLength`
25654
25773
  - Range: `0`-`65535`
25655
25774
  """
25656
25775
  return pulumi.get(self, "packet_length")
@@ -25659,7 +25778,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25659
25778
  @pulumi.getter
25660
25779
  def priority(self) -> Optional[str]:
25661
25780
  """
25662
- PLP - priority
25781
+ PLP - priority, Attribute conditional on `type` being equal to `plp`
25663
25782
  - Choices: `high`, `low`
25664
25783
  """
25665
25784
  return pulumi.get(self, "priority")
@@ -25668,7 +25787,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25668
25787
  @pulumi.getter(name="sourceDataIpv6PrefixListId")
25669
25788
  def source_data_ipv6_prefix_list_id(self) -> Optional[str]:
25670
25789
  """
25671
- Source data IPv6 prefix list ID
25790
+ Source data IPv6 prefix list ID, Attribute conditional on `type` being equal to `sourceDataIpv6PrefixList`
25672
25791
  """
25673
25792
  return pulumi.get(self, "source_data_ipv6_prefix_list_id")
25674
25793
 
@@ -25684,7 +25803,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25684
25803
  @pulumi.getter(name="sourceIp")
25685
25804
  def source_ip(self) -> Optional[str]:
25686
25805
  """
25687
- Source IPv6 prefix
25806
+ Source IPv6 prefix, Attribute conditional on `type` being equal to `sourceIpv6`
25688
25807
  """
25689
25808
  return pulumi.get(self, "source_ip")
25690
25809
 
@@ -25692,7 +25811,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25692
25811
  @pulumi.getter(name="sourcePorts")
25693
25812
  def source_ports(self) -> Optional[str]:
25694
25813
  """
25695
- Source ports. Single value (0-65535) or ranges separated by spaces.
25814
+ Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
25696
25815
  """
25697
25816
  return pulumi.get(self, "source_ports")
25698
25817
 
@@ -25700,7 +25819,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25700
25819
  @pulumi.getter
25701
25820
  def tcp(self) -> Optional[str]:
25702
25821
  """
25703
- TCP parameters
25822
+ TCP parameters, Attribute conditional on `type` being equal to `tcp`
25704
25823
  - Choices: `syn`
25705
25824
  """
25706
25825
  return pulumi.get(self, "tcp")
@@ -25709,7 +25828,7 @@ class Ipv6AclPolicyDefinitionSequenceMatchEntry(dict):
25709
25828
  @pulumi.getter(name="trafficClass")
25710
25829
  def traffic_class(self) -> Optional[int]:
25711
25830
  """
25712
- Traffic class
25831
+ Traffic class, Attribute conditional on `type` being equal to `trafficClass`
25713
25832
  - Range: `0`-`63`
25714
25833
  """
25715
25834
  return pulumi.get(self, "traffic_class")
@@ -25830,7 +25949,7 @@ class Ipv6DeviceAclPolicyDefinitionSequenceActionEntry(dict):
25830
25949
  """
25831
25950
  :param str type: Type of action entry
25832
25951
  - Choices: `count`
25833
- :param str counter_name: Counter name
25952
+ :param str counter_name: Counter name, Attribute conditional on `type` being equal to `count`
25834
25953
  """
25835
25954
  pulumi.set(__self__, "type", type)
25836
25955
  if counter_name is not None:
@@ -25849,7 +25968,7 @@ class Ipv6DeviceAclPolicyDefinitionSequenceActionEntry(dict):
25849
25968
  @pulumi.getter(name="counterName")
25850
25969
  def counter_name(self) -> Optional[str]:
25851
25970
  """
25852
- Counter name
25971
+ Counter name, Attribute conditional on `type` being equal to `count`
25853
25972
  """
25854
25973
  return pulumi.get(self, "counter_name")
25855
25974
 
@@ -25900,15 +26019,15 @@ class Ipv6DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25900
26019
  """
25901
26020
  :param str type: Type of match entry
25902
26021
  - Choices: `sourceIpv6`, `destinationIpv6`, `sourcePort`, `destinationPort`, `sourceDataIpv6PrefixList`, `destinationDataIpv6PrefixList`
25903
- :param str destination_data_ipv6_prefix_list_id: Destination data IPv6 prefix list ID
26022
+ :param str destination_data_ipv6_prefix_list_id: Destination data IPv6 prefix list ID, Attribute conditional on `type` being equal to `destinationDataIpv6PrefixList`
25904
26023
  :param int destination_data_ipv6_prefix_list_version: Destination data IPv6 prefix list version
25905
- :param str destination_ip: Destination IP prefix
25906
- :param int destination_port: Destination port, only `22` and `161` supported
26024
+ :param str destination_ip: Destination IP prefix, Attribute conditional on `type` being equal to `destinationIpv6`
26025
+ :param int destination_port: Destination port, only `22` and `161` supported, Attribute conditional on `type` being equal to `destinationPort`
25907
26026
  - Range: `0`-`65535`
25908
- :param str source_data_ipv6_prefix_list_id: Source data IPv6 prefix list ID
26027
+ :param str source_data_ipv6_prefix_list_id: Source data IPv6 prefix list ID, Attribute conditional on `type` being equal to `sourceDataIpv6PrefixList`
25909
26028
  :param int source_data_ipv6_prefix_list_version: Source data IPv6 prefix list version
25910
- :param str source_ip: Source IP prefix
25911
- :param str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces.
26029
+ :param str source_ip: Source IP prefix, Attribute conditional on `type` being equal to `sourceIpv6`
26030
+ :param str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
25912
26031
  """
25913
26032
  pulumi.set(__self__, "type", type)
25914
26033
  if destination_data_ipv6_prefix_list_id is not None:
@@ -25941,7 +26060,7 @@ class Ipv6DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25941
26060
  @pulumi.getter(name="destinationDataIpv6PrefixListId")
25942
26061
  def destination_data_ipv6_prefix_list_id(self) -> Optional[str]:
25943
26062
  """
25944
- Destination data IPv6 prefix list ID
26063
+ Destination data IPv6 prefix list ID, Attribute conditional on `type` being equal to `destinationDataIpv6PrefixList`
25945
26064
  """
25946
26065
  return pulumi.get(self, "destination_data_ipv6_prefix_list_id")
25947
26066
 
@@ -25957,7 +26076,7 @@ class Ipv6DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25957
26076
  @pulumi.getter(name="destinationIp")
25958
26077
  def destination_ip(self) -> Optional[str]:
25959
26078
  """
25960
- Destination IP prefix
26079
+ Destination IP prefix, Attribute conditional on `type` being equal to `destinationIpv6`
25961
26080
  """
25962
26081
  return pulumi.get(self, "destination_ip")
25963
26082
 
@@ -25965,7 +26084,7 @@ class Ipv6DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25965
26084
  @pulumi.getter(name="destinationPort")
25966
26085
  def destination_port(self) -> Optional[int]:
25967
26086
  """
25968
- Destination port, only `22` and `161` supported
26087
+ Destination port, only `22` and `161` supported, Attribute conditional on `type` being equal to `destinationPort`
25969
26088
  - Range: `0`-`65535`
25970
26089
  """
25971
26090
  return pulumi.get(self, "destination_port")
@@ -25974,7 +26093,7 @@ class Ipv6DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25974
26093
  @pulumi.getter(name="sourceDataIpv6PrefixListId")
25975
26094
  def source_data_ipv6_prefix_list_id(self) -> Optional[str]:
25976
26095
  """
25977
- Source data IPv6 prefix list ID
26096
+ Source data IPv6 prefix list ID, Attribute conditional on `type` being equal to `sourceDataIpv6PrefixList`
25978
26097
  """
25979
26098
  return pulumi.get(self, "source_data_ipv6_prefix_list_id")
25980
26099
 
@@ -25990,7 +26109,7 @@ class Ipv6DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25990
26109
  @pulumi.getter(name="sourceIp")
25991
26110
  def source_ip(self) -> Optional[str]:
25992
26111
  """
25993
- Source IP prefix
26112
+ Source IP prefix, Attribute conditional on `type` being equal to `sourceIpv6`
25994
26113
  """
25995
26114
  return pulumi.get(self, "source_ip")
25996
26115
 
@@ -25998,7 +26117,7 @@ class Ipv6DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
25998
26117
  @pulumi.getter(name="sourcePorts")
25999
26118
  def source_ports(self) -> Optional[str]:
26000
26119
  """
26001
- Source ports. Single value (0-65535) or ranges separated by spaces.
26120
+ Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
26002
26121
  """
26003
26122
  return pulumi.get(self, "source_ports")
26004
26123
 
@@ -28384,29 +28503,29 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28384
28503
  """
28385
28504
  :param str type: Type of action entry
28386
28505
  - Choices: `aggregator`, `asPath`, `atomicAggregate`, `community`, `communityAdditive`, `localPreference`, `metric`, `weight`, `metricType`, `nextHop`, `ompTag`, `ospfTag`, `origin`, `originator`
28387
- :param int aggregator: Aggregator
28506
+ :param int aggregator: Aggregator, Attribute conditional on `type` being equal to `aggregator`
28388
28507
  - Range: `0`-`4294967295`
28389
- :param str aggregator_ip_address: IP address
28390
- :param str as_path_exclude: Space separated list of ASN to exclude
28391
- :param str as_path_prepend: Space separated list of ASN to prepend
28392
- :param bool atomic_aggregate: Atomic aggregate
28393
- :param str community: Community value, e.g. `1000:10000` or `internet` or `local-AS`
28394
- :param bool community_additive: Community additive
28395
- :param int local_preference: Local preference
28508
+ :param str aggregator_ip_address: IP address, Attribute conditional on `type` being equal to `aggregator`
28509
+ :param str as_path_exclude: Space separated list of ASN to exclude, Attribute conditional on `type` being equal to `asPath`
28510
+ :param str as_path_prepend: Space separated list of ASN to prepend, Attribute conditional on `type` being equal to `asPath`
28511
+ :param bool atomic_aggregate: Atomic aggregate, Attribute conditional on `type` being equal to `atomicAggregate`
28512
+ :param str community: Community value, e.g. `1000:10000` or `internet` or `local-AS`, Attribute conditional on `type` being equal to `community`
28513
+ :param bool community_additive: Community additive, Attribute conditional on `type` being equal to `communityAdditive`
28514
+ :param int local_preference: Local preference, Attribute conditional on `type` being equal to `localPreference`
28396
28515
  - Range: `0`-`4294967295`
28397
- :param int metric: Metric
28516
+ :param int metric: Metric, Attribute conditional on `type` being equal to `metric`
28398
28517
  - Range: `0`-`4294967295`
28399
- :param str metric_type: Metric type
28518
+ :param str metric_type: Metric type, Attribute conditional on `type` being equal to `metricType`
28400
28519
  - Choices: `type1`, `type2`
28401
- :param str next_hop: Next hop IP
28402
- :param int omp_tag: OMP tag
28520
+ :param str next_hop: Next hop IP, Attribute conditional on `type` being equal to `nextHop`
28521
+ :param int omp_tag: OMP tag, Attribute conditional on `type` being equal to `ompTag`
28403
28522
  - Range: `0`-`4294967295`
28404
- :param str origin: Origin
28523
+ :param str origin: Origin, Attribute conditional on `type` being equal to `origin`
28405
28524
  - Choices: `igp`, `egp`, `incomplete`
28406
- :param str originator: Originator IP
28407
- :param int ospf_tag: OSPF tag
28525
+ :param str originator: Originator IP, Attribute conditional on `type` being equal to `originator`
28526
+ :param int ospf_tag: OSPF tag, Attribute conditional on `type` being equal to `ospfTag`
28408
28527
  - Range: `0`-`4294967295`
28409
- :param int weight: Weight
28528
+ :param int weight: Weight, Attribute conditional on `type` being equal to `weight`
28410
28529
  - Range: `0`-`4294967295`
28411
28530
  """
28412
28531
  pulumi.set(__self__, "type", type)
@@ -28456,7 +28575,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28456
28575
  @pulumi.getter
28457
28576
  def aggregator(self) -> Optional[int]:
28458
28577
  """
28459
- Aggregator
28578
+ Aggregator, Attribute conditional on `type` being equal to `aggregator`
28460
28579
  - Range: `0`-`4294967295`
28461
28580
  """
28462
28581
  return pulumi.get(self, "aggregator")
@@ -28465,7 +28584,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28465
28584
  @pulumi.getter(name="aggregatorIpAddress")
28466
28585
  def aggregator_ip_address(self) -> Optional[str]:
28467
28586
  """
28468
- IP address
28587
+ IP address, Attribute conditional on `type` being equal to `aggregator`
28469
28588
  """
28470
28589
  return pulumi.get(self, "aggregator_ip_address")
28471
28590
 
@@ -28473,7 +28592,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28473
28592
  @pulumi.getter(name="asPathExclude")
28474
28593
  def as_path_exclude(self) -> Optional[str]:
28475
28594
  """
28476
- Space separated list of ASN to exclude
28595
+ Space separated list of ASN to exclude, Attribute conditional on `type` being equal to `asPath`
28477
28596
  """
28478
28597
  return pulumi.get(self, "as_path_exclude")
28479
28598
 
@@ -28481,7 +28600,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28481
28600
  @pulumi.getter(name="asPathPrepend")
28482
28601
  def as_path_prepend(self) -> Optional[str]:
28483
28602
  """
28484
- Space separated list of ASN to prepend
28603
+ Space separated list of ASN to prepend, Attribute conditional on `type` being equal to `asPath`
28485
28604
  """
28486
28605
  return pulumi.get(self, "as_path_prepend")
28487
28606
 
@@ -28489,7 +28608,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28489
28608
  @pulumi.getter(name="atomicAggregate")
28490
28609
  def atomic_aggregate(self) -> Optional[bool]:
28491
28610
  """
28492
- Atomic aggregate
28611
+ Atomic aggregate, Attribute conditional on `type` being equal to `atomicAggregate`
28493
28612
  """
28494
28613
  return pulumi.get(self, "atomic_aggregate")
28495
28614
 
@@ -28497,7 +28616,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28497
28616
  @pulumi.getter
28498
28617
  def community(self) -> Optional[str]:
28499
28618
  """
28500
- Community value, e.g. `1000:10000` or `internet` or `local-AS`
28619
+ Community value, e.g. `1000:10000` or `internet` or `local-AS`, Attribute conditional on `type` being equal to `community`
28501
28620
  """
28502
28621
  return pulumi.get(self, "community")
28503
28622
 
@@ -28505,7 +28624,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28505
28624
  @pulumi.getter(name="communityAdditive")
28506
28625
  def community_additive(self) -> Optional[bool]:
28507
28626
  """
28508
- Community additive
28627
+ Community additive, Attribute conditional on `type` being equal to `communityAdditive`
28509
28628
  """
28510
28629
  return pulumi.get(self, "community_additive")
28511
28630
 
@@ -28513,7 +28632,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28513
28632
  @pulumi.getter(name="localPreference")
28514
28633
  def local_preference(self) -> Optional[int]:
28515
28634
  """
28516
- Local preference
28635
+ Local preference, Attribute conditional on `type` being equal to `localPreference`
28517
28636
  - Range: `0`-`4294967295`
28518
28637
  """
28519
28638
  return pulumi.get(self, "local_preference")
@@ -28522,7 +28641,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28522
28641
  @pulumi.getter
28523
28642
  def metric(self) -> Optional[int]:
28524
28643
  """
28525
- Metric
28644
+ Metric, Attribute conditional on `type` being equal to `metric`
28526
28645
  - Range: `0`-`4294967295`
28527
28646
  """
28528
28647
  return pulumi.get(self, "metric")
@@ -28531,7 +28650,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28531
28650
  @pulumi.getter(name="metricType")
28532
28651
  def metric_type(self) -> Optional[str]:
28533
28652
  """
28534
- Metric type
28653
+ Metric type, Attribute conditional on `type` being equal to `metricType`
28535
28654
  - Choices: `type1`, `type2`
28536
28655
  """
28537
28656
  return pulumi.get(self, "metric_type")
@@ -28540,7 +28659,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28540
28659
  @pulumi.getter(name="nextHop")
28541
28660
  def next_hop(self) -> Optional[str]:
28542
28661
  """
28543
- Next hop IP
28662
+ Next hop IP, Attribute conditional on `type` being equal to `nextHop`
28544
28663
  """
28545
28664
  return pulumi.get(self, "next_hop")
28546
28665
 
@@ -28548,7 +28667,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28548
28667
  @pulumi.getter(name="ompTag")
28549
28668
  def omp_tag(self) -> Optional[int]:
28550
28669
  """
28551
- OMP tag
28670
+ OMP tag, Attribute conditional on `type` being equal to `ompTag`
28552
28671
  - Range: `0`-`4294967295`
28553
28672
  """
28554
28673
  return pulumi.get(self, "omp_tag")
@@ -28557,7 +28676,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28557
28676
  @pulumi.getter
28558
28677
  def origin(self) -> Optional[str]:
28559
28678
  """
28560
- Origin
28679
+ Origin, Attribute conditional on `type` being equal to `origin`
28561
28680
  - Choices: `igp`, `egp`, `incomplete`
28562
28681
  """
28563
28682
  return pulumi.get(self, "origin")
@@ -28566,7 +28685,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28566
28685
  @pulumi.getter
28567
28686
  def originator(self) -> Optional[str]:
28568
28687
  """
28569
- Originator IP
28688
+ Originator IP, Attribute conditional on `type` being equal to `originator`
28570
28689
  """
28571
28690
  return pulumi.get(self, "originator")
28572
28691
 
@@ -28574,7 +28693,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28574
28693
  @pulumi.getter(name="ospfTag")
28575
28694
  def ospf_tag(self) -> Optional[int]:
28576
28695
  """
28577
- OSPF tag
28696
+ OSPF tag, Attribute conditional on `type` being equal to `ospfTag`
28578
28697
  - Range: `0`-`4294967295`
28579
28698
  """
28580
28699
  return pulumi.get(self, "ospf_tag")
@@ -28583,7 +28702,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
28583
28702
  @pulumi.getter
28584
28703
  def weight(self) -> Optional[int]:
28585
28704
  """
28586
- Weight
28705
+ Weight, Attribute conditional on `type` being equal to `weight`
28587
28706
  - Range: `0`-`4294967295`
28588
28707
  """
28589
28708
  return pulumi.get(self, "weight")
@@ -28662,30 +28781,30 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28662
28781
  """
28663
28782
  :param str type: Type of match entry
28664
28783
  - Choices: `address`, `asPath`, `advancedCommunity`, `expandedCommunity`, `extCommunity`, `localPreference`, `metric`, `nextHop`, `origin`, `peer`, `ompTag`, `ospfTag`
28665
- :param str as_path_list_id: AS path list ID
28784
+ :param str as_path_list_id: AS path list ID, Attribute conditional on `type` being equal to `asPath`
28666
28785
  :param int as_path_list_version: AS path list version
28667
- :param Sequence[str] community_list_ids: Community list IDs
28668
- :param str community_list_match_flag: Community list match flag
28786
+ :param Sequence[str] community_list_ids: Community list IDs, Attribute conditional on `type` being equal to `advancedCommunity`
28787
+ :param str community_list_match_flag: Community list match flag, Attribute conditional on `type` being equal to `advancedCommunity`
28669
28788
  - Choices: `and`, `or`, `exact`
28670
28789
  :param Sequence[str] community_list_versions: Community list versions
28671
- :param str expanded_community_list_id: Expanded community list ID
28790
+ :param str expanded_community_list_id: Expanded community list ID, Attribute conditional on `type` being equal to `expandedCommunity`
28672
28791
  :param int expanded_community_list_version: Expanded community list version
28673
- :param str extended_community_list_id: Extended community list ID
28792
+ :param str extended_community_list_id: Extended community list ID, Attribute conditional on `type` being equal to `extCommunity`
28674
28793
  :param int extended_community_list_version: Extended community list version
28675
- :param int local_preference: Local preference
28794
+ :param int local_preference: Local preference, Attribute conditional on `type` being equal to `localPreference`
28676
28795
  - Range: `0`-`4294967295`
28677
- :param int metric: Metric
28796
+ :param int metric: Metric, Attribute conditional on `type` being equal to `metric`
28678
28797
  - Range: `0`-`4294967295`
28679
- :param str next_hop_prefix_list_id: Next hop prefix list ID
28798
+ :param str next_hop_prefix_list_id: Next hop prefix list ID, Attribute conditional on `type` being equal to `nextHop`
28680
28799
  :param int next_hop_prefix_list_version: Next hop prefix list version
28681
- :param int omp_tag: OMP tag
28800
+ :param int omp_tag: OMP tag, Attribute conditional on `type` being equal to `ompTag`
28682
28801
  - Range: `0`-`4294967295`
28683
- :param str origin: Origin
28802
+ :param str origin: Origin, Attribute conditional on `type` being equal to `origin`
28684
28803
  - Choices: `igp`, `egp`, `incomplete`
28685
- :param int ospf_tag: OSPF tag
28804
+ :param int ospf_tag: OSPF tag, Attribute conditional on `type` being equal to `ospfTag`
28686
28805
  - Range: `0`-`4294967295`
28687
- :param str peer: Peer IP
28688
- :param str prefix_list_id: Prefix list ID
28806
+ :param str peer: Peer IP, Attribute conditional on `type` being equal to `peer`
28807
+ :param str prefix_list_id: Prefix list ID, Attribute conditional on `type` being equal to `address`
28689
28808
  :param int prefix_list_version: Prefix list version
28690
28809
  """
28691
28810
  pulumi.set(__self__, "type", type)
@@ -28741,7 +28860,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28741
28860
  @pulumi.getter(name="asPathListId")
28742
28861
  def as_path_list_id(self) -> Optional[str]:
28743
28862
  """
28744
- AS path list ID
28863
+ AS path list ID, Attribute conditional on `type` being equal to `asPath`
28745
28864
  """
28746
28865
  return pulumi.get(self, "as_path_list_id")
28747
28866
 
@@ -28757,7 +28876,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28757
28876
  @pulumi.getter(name="communityListIds")
28758
28877
  def community_list_ids(self) -> Optional[Sequence[str]]:
28759
28878
  """
28760
- Community list IDs
28879
+ Community list IDs, Attribute conditional on `type` being equal to `advancedCommunity`
28761
28880
  """
28762
28881
  return pulumi.get(self, "community_list_ids")
28763
28882
 
@@ -28765,7 +28884,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28765
28884
  @pulumi.getter(name="communityListMatchFlag")
28766
28885
  def community_list_match_flag(self) -> Optional[str]:
28767
28886
  """
28768
- Community list match flag
28887
+ Community list match flag, Attribute conditional on `type` being equal to `advancedCommunity`
28769
28888
  - Choices: `and`, `or`, `exact`
28770
28889
  """
28771
28890
  return pulumi.get(self, "community_list_match_flag")
@@ -28782,7 +28901,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28782
28901
  @pulumi.getter(name="expandedCommunityListId")
28783
28902
  def expanded_community_list_id(self) -> Optional[str]:
28784
28903
  """
28785
- Expanded community list ID
28904
+ Expanded community list ID, Attribute conditional on `type` being equal to `expandedCommunity`
28786
28905
  """
28787
28906
  return pulumi.get(self, "expanded_community_list_id")
28788
28907
 
@@ -28798,7 +28917,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28798
28917
  @pulumi.getter(name="extendedCommunityListId")
28799
28918
  def extended_community_list_id(self) -> Optional[str]:
28800
28919
  """
28801
- Extended community list ID
28920
+ Extended community list ID, Attribute conditional on `type` being equal to `extCommunity`
28802
28921
  """
28803
28922
  return pulumi.get(self, "extended_community_list_id")
28804
28923
 
@@ -28814,7 +28933,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28814
28933
  @pulumi.getter(name="localPreference")
28815
28934
  def local_preference(self) -> Optional[int]:
28816
28935
  """
28817
- Local preference
28936
+ Local preference, Attribute conditional on `type` being equal to `localPreference`
28818
28937
  - Range: `0`-`4294967295`
28819
28938
  """
28820
28939
  return pulumi.get(self, "local_preference")
@@ -28823,7 +28942,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28823
28942
  @pulumi.getter
28824
28943
  def metric(self) -> Optional[int]:
28825
28944
  """
28826
- Metric
28945
+ Metric, Attribute conditional on `type` being equal to `metric`
28827
28946
  - Range: `0`-`4294967295`
28828
28947
  """
28829
28948
  return pulumi.get(self, "metric")
@@ -28832,7 +28951,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28832
28951
  @pulumi.getter(name="nextHopPrefixListId")
28833
28952
  def next_hop_prefix_list_id(self) -> Optional[str]:
28834
28953
  """
28835
- Next hop prefix list ID
28954
+ Next hop prefix list ID, Attribute conditional on `type` being equal to `nextHop`
28836
28955
  """
28837
28956
  return pulumi.get(self, "next_hop_prefix_list_id")
28838
28957
 
@@ -28848,7 +28967,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28848
28967
  @pulumi.getter(name="ompTag")
28849
28968
  def omp_tag(self) -> Optional[int]:
28850
28969
  """
28851
- OMP tag
28970
+ OMP tag, Attribute conditional on `type` being equal to `ompTag`
28852
28971
  - Range: `0`-`4294967295`
28853
28972
  """
28854
28973
  return pulumi.get(self, "omp_tag")
@@ -28857,7 +28976,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28857
28976
  @pulumi.getter
28858
28977
  def origin(self) -> Optional[str]:
28859
28978
  """
28860
- Origin
28979
+ Origin, Attribute conditional on `type` being equal to `origin`
28861
28980
  - Choices: `igp`, `egp`, `incomplete`
28862
28981
  """
28863
28982
  return pulumi.get(self, "origin")
@@ -28866,7 +28985,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28866
28985
  @pulumi.getter(name="ospfTag")
28867
28986
  def ospf_tag(self) -> Optional[int]:
28868
28987
  """
28869
- OSPF tag
28988
+ OSPF tag, Attribute conditional on `type` being equal to `ospfTag`
28870
28989
  - Range: `0`-`4294967295`
28871
28990
  """
28872
28991
  return pulumi.get(self, "ospf_tag")
@@ -28875,7 +28994,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28875
28994
  @pulumi.getter
28876
28995
  def peer(self) -> Optional[str]:
28877
28996
  """
28878
- Peer IP
28997
+ Peer IP, Attribute conditional on `type` being equal to `peer`
28879
28998
  """
28880
28999
  return pulumi.get(self, "peer")
28881
29000
 
@@ -28883,7 +29002,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
28883
29002
  @pulumi.getter(name="prefixListId")
28884
29003
  def prefix_list_id(self) -> Optional[str]:
28885
29004
  """
28886
- Prefix list ID
29005
+ Prefix list ID, Attribute conditional on `type` being equal to `address`
28887
29006
  """
28888
29007
  return pulumi.get(self, "prefix_list_id")
28889
29008
 
@@ -29692,18 +29811,45 @@ class SecurityAppHostingFeatureTemplateVirtualApplication(dict):
29692
29811
 
29693
29812
  @pulumi.output_type
29694
29813
  class SecurityPolicyDefinition(dict):
29814
+ @staticmethod
29815
+ def __key_warning(key: str):
29816
+ suggest = None
29817
+ if key == "destinationZone":
29818
+ suggest = "destination_zone"
29819
+ elif key == "sourceZone":
29820
+ suggest = "source_zone"
29821
+
29822
+ if suggest:
29823
+ pulumi.log.warn(f"Key '{key}' not found in SecurityPolicyDefinition. Access the value via the '{suggest}' property getter instead.")
29824
+
29825
+ def __getitem__(self, key: str) -> Any:
29826
+ SecurityPolicyDefinition.__key_warning(key)
29827
+ return super().__getitem__(key)
29828
+
29829
+ def get(self, key: str, default = None) -> Any:
29830
+ SecurityPolicyDefinition.__key_warning(key)
29831
+ return super().get(key, default)
29832
+
29695
29833
  def __init__(__self__, *,
29696
29834
  id: str,
29697
29835
  type: str,
29836
+ destination_zone: Optional[str] = None,
29837
+ source_zone: Optional[str] = None,
29698
29838
  version: Optional[int] = None):
29699
29839
  """
29700
29840
  :param str id: Policy definition ID
29701
29841
  :param str type: Policy definition type
29702
29842
  - Choices: `urlFiltering`, `zoneBasedFW`, `intrusionPrevention`, `sslDecryption`, `advancedMalwareProtection`, `dnsSecurity`
29843
+ :param str destination_zone: Destination Zone, Attribute conditional on `type` being equal to `zoneBasedFW`
29844
+ :param str source_zone: Source Zone, Attribute conditional on `type` being equal to `zoneBasedFW`
29703
29845
  :param int version: Policy definition version
29704
29846
  """
29705
29847
  pulumi.set(__self__, "id", id)
29706
29848
  pulumi.set(__self__, "type", type)
29849
+ if destination_zone is not None:
29850
+ pulumi.set(__self__, "destination_zone", destination_zone)
29851
+ if source_zone is not None:
29852
+ pulumi.set(__self__, "source_zone", source_zone)
29707
29853
  if version is not None:
29708
29854
  pulumi.set(__self__, "version", version)
29709
29855
 
@@ -29724,6 +29870,22 @@ class SecurityPolicyDefinition(dict):
29724
29870
  """
29725
29871
  return pulumi.get(self, "type")
29726
29872
 
29873
+ @property
29874
+ @pulumi.getter(name="destinationZone")
29875
+ def destination_zone(self) -> Optional[str]:
29876
+ """
29877
+ Destination Zone, Attribute conditional on `type` being equal to `zoneBasedFW`
29878
+ """
29879
+ return pulumi.get(self, "destination_zone")
29880
+
29881
+ @property
29882
+ @pulumi.getter(name="sourceZone")
29883
+ def source_zone(self) -> Optional[str]:
29884
+ """
29885
+ Source Zone, Attribute conditional on `type` being equal to `zoneBasedFW`
29886
+ """
29887
+ return pulumi.get(self, "source_zone")
29888
+
29727
29889
  @property
29728
29890
  @pulumi.getter
29729
29891
  def version(self) -> Optional[int]:
@@ -29740,6 +29902,8 @@ class SecurityPolicyLogging(dict):
29740
29902
  suggest = None
29741
29903
  if key == "externalSyslogServerIp":
29742
29904
  suggest = "external_syslog_server_ip"
29905
+ elif key == "externalSyslogServerSourceInterface":
29906
+ suggest = "external_syslog_server_source_interface"
29743
29907
  elif key == "externalSyslogServerVpn":
29744
29908
  suggest = "external_syslog_server_vpn"
29745
29909
 
@@ -29756,13 +29920,17 @@ class SecurityPolicyLogging(dict):
29756
29920
 
29757
29921
  def __init__(__self__, *,
29758
29922
  external_syslog_server_ip: Optional[str] = None,
29923
+ external_syslog_server_source_interface: Optional[str] = None,
29759
29924
  external_syslog_server_vpn: Optional[str] = None):
29760
29925
  """
29761
29926
  :param str external_syslog_server_ip: External Syslog Server IP
29927
+ :param str external_syslog_server_source_interface: External Syslog Server Source Interface
29762
29928
  :param str external_syslog_server_vpn: External Syslog Server VPN
29763
29929
  """
29764
29930
  if external_syslog_server_ip is not None:
29765
29931
  pulumi.set(__self__, "external_syslog_server_ip", external_syslog_server_ip)
29932
+ if external_syslog_server_source_interface is not None:
29933
+ pulumi.set(__self__, "external_syslog_server_source_interface", external_syslog_server_source_interface)
29766
29934
  if external_syslog_server_vpn is not None:
29767
29935
  pulumi.set(__self__, "external_syslog_server_vpn", external_syslog_server_vpn)
29768
29936
 
@@ -29774,6 +29942,14 @@ class SecurityPolicyLogging(dict):
29774
29942
  """
29775
29943
  return pulumi.get(self, "external_syslog_server_ip")
29776
29944
 
29945
+ @property
29946
+ @pulumi.getter(name="externalSyslogServerSourceInterface")
29947
+ def external_syslog_server_source_interface(self) -> Optional[str]:
29948
+ """
29949
+ External Syslog Server Source Interface
29950
+ """
29951
+ return pulumi.get(self, "external_syslog_server_source_interface")
29952
+
29777
29953
  @property
29778
29954
  @pulumi.getter(name="externalSyslogServerVpn")
29779
29955
  def external_syslog_server_vpn(self) -> Optional[str]:
@@ -47508,32 +47684,32 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47508
47684
  """
47509
47685
  :param str type: Type of action entry
47510
47686
  - Choices: `cflowd`, `count`, `dreOptimization`, `fallbackToRouting`, `log`, `lossProtect`, `lossProtectPktDup`, `lossProtectFec`, `nat`, `redirectDns`, `serviceNodeGroup`, `set`, `sig`, `tcpOptimization`
47511
- :param bool cflowd: Enable cflowd
47512
- :param str counter: Counter name
47513
- :param bool dre_optimization: Enable DRE optimization
47514
- :param bool fallback_to_routing: Enable fallback to routing
47515
- :param bool log: Enable logging
47516
- :param str loss_correction: Loss correction
47687
+ :param bool cflowd: Enable cflowd, Attribute conditional on `type` being equal to `cflowd`
47688
+ :param str counter: Counter name, Attribute conditional on `type` being equal to `count`
47689
+ :param bool dre_optimization: Enable DRE optimization, Attribute conditional on `type` being equal to `dreOptimization`
47690
+ :param bool fallback_to_routing: Enable fallback to routing, Attribute conditional on `type` being equal to `fallbackToRouting`
47691
+ :param bool log: Enable logging, Attribute conditional on `type` being equal to `log`
47692
+ :param str loss_correction: Loss correction, Attribute conditional on `type` being equal to `lossProtect`
47517
47693
  - Choices: `fecAdaptive`, `fecAlways`, `packetDuplication`
47518
- :param str loss_correction_fec: Loss correction FEC
47694
+ :param str loss_correction_fec: Loss correction FEC, Attribute conditional on `type` being equal to `lossProtectFec`
47519
47695
  - Choices: `fecAdaptive`, `fecAlways`, `packetDuplication`
47520
- :param str loss_correction_fec_threshold: Loss correction FEC threshold
47521
- :param str loss_correction_packet_duplication: Loss correction packet duplication
47696
+ :param str loss_correction_fec_threshold: Loss correction FEC threshold, Attribute conditional on `type` being equal to `lossProtectFec`
47697
+ :param str loss_correction_packet_duplication: Loss correction packet duplication, Attribute conditional on `type` being equal to `lossProtectPktDup`
47522
47698
  - Choices: `fecAdaptive`, `fecAlways`, `packetDuplication`
47523
- :param Sequence['TrafficDataPolicyDefinitionSequenceActionEntryNatParameterArgs'] nat_parameters: List of NAT parameters
47524
- :param str nat_pool: NAT pool
47699
+ :param Sequence['TrafficDataPolicyDefinitionSequenceActionEntryNatParameterArgs'] nat_parameters: List of NAT parameters, Attribute conditional on `type` being equal to `nat`
47700
+ :param str nat_pool: NAT pool, Attribute conditional on `type` being equal to `nat`
47525
47701
  - Choices: `pool`
47526
- :param int nat_pool_id: NAT pool ID
47702
+ :param int nat_pool_id: NAT pool ID, Attribute conditional on `type` being equal to `nat`
47527
47703
  - Range: `1`-`31`
47528
- :param str redirect_dns: Redirect DNS
47704
+ :param str redirect_dns: Redirect DNS, Attribute conditional on `type` being equal to `redirectDns`
47529
47705
  - Choices: `dnsType`, `ipAddress`
47530
- :param str redirect_dns_address: Redirect DNS IP address
47531
- :param str redirect_dns_type: Redirect DNS type
47706
+ :param str redirect_dns_address: Redirect DNS IP address, Attribute conditional on `redirect_dns` being equal to `ipAddress`
47707
+ :param str redirect_dns_type: Redirect DNS type, Attribute conditional on `redirect_dns` being equal to `dnsType`
47532
47708
  - Choices: `host`, `umbrella`
47533
- :param bool secure_internet_gateway: Enable secure internet gateway
47534
- :param str service_node_group: Service node group
47535
- :param Sequence['TrafficDataPolicyDefinitionSequenceActionEntrySetParameterArgs'] set_parameters: List of set parameters
47536
- :param bool tcp_optimization: Enable TCP optimization
47709
+ :param bool secure_internet_gateway: Enable secure internet gateway, Attribute conditional on `type` being equal to `sig`
47710
+ :param str service_node_group: Service node group, Attribute conditional on `type` being equal to `serviceNodeGroup`
47711
+ :param Sequence['TrafficDataPolicyDefinitionSequenceActionEntrySetParameterArgs'] set_parameters: List of set parameters, Attribute conditional on `type` being equal to `set`
47712
+ :param bool tcp_optimization: Enable TCP optimization, Attribute conditional on `type` being equal to `tcpOptimization`
47537
47713
  """
47538
47714
  pulumi.set(__self__, "type", type)
47539
47715
  if cflowd is not None:
@@ -47588,7 +47764,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47588
47764
  @pulumi.getter
47589
47765
  def cflowd(self) -> Optional[bool]:
47590
47766
  """
47591
- Enable cflowd
47767
+ Enable cflowd, Attribute conditional on `type` being equal to `cflowd`
47592
47768
  """
47593
47769
  return pulumi.get(self, "cflowd")
47594
47770
 
@@ -47596,7 +47772,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47596
47772
  @pulumi.getter
47597
47773
  def counter(self) -> Optional[str]:
47598
47774
  """
47599
- Counter name
47775
+ Counter name, Attribute conditional on `type` being equal to `count`
47600
47776
  """
47601
47777
  return pulumi.get(self, "counter")
47602
47778
 
@@ -47604,7 +47780,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47604
47780
  @pulumi.getter(name="dreOptimization")
47605
47781
  def dre_optimization(self) -> Optional[bool]:
47606
47782
  """
47607
- Enable DRE optimization
47783
+ Enable DRE optimization, Attribute conditional on `type` being equal to `dreOptimization`
47608
47784
  """
47609
47785
  return pulumi.get(self, "dre_optimization")
47610
47786
 
@@ -47612,7 +47788,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47612
47788
  @pulumi.getter(name="fallbackToRouting")
47613
47789
  def fallback_to_routing(self) -> Optional[bool]:
47614
47790
  """
47615
- Enable fallback to routing
47791
+ Enable fallback to routing, Attribute conditional on `type` being equal to `fallbackToRouting`
47616
47792
  """
47617
47793
  return pulumi.get(self, "fallback_to_routing")
47618
47794
 
@@ -47620,7 +47796,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47620
47796
  @pulumi.getter
47621
47797
  def log(self) -> Optional[bool]:
47622
47798
  """
47623
- Enable logging
47799
+ Enable logging, Attribute conditional on `type` being equal to `log`
47624
47800
  """
47625
47801
  return pulumi.get(self, "log")
47626
47802
 
@@ -47628,7 +47804,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47628
47804
  @pulumi.getter(name="lossCorrection")
47629
47805
  def loss_correction(self) -> Optional[str]:
47630
47806
  """
47631
- Loss correction
47807
+ Loss correction, Attribute conditional on `type` being equal to `lossProtect`
47632
47808
  - Choices: `fecAdaptive`, `fecAlways`, `packetDuplication`
47633
47809
  """
47634
47810
  return pulumi.get(self, "loss_correction")
@@ -47637,7 +47813,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47637
47813
  @pulumi.getter(name="lossCorrectionFec")
47638
47814
  def loss_correction_fec(self) -> Optional[str]:
47639
47815
  """
47640
- Loss correction FEC
47816
+ Loss correction FEC, Attribute conditional on `type` being equal to `lossProtectFec`
47641
47817
  - Choices: `fecAdaptive`, `fecAlways`, `packetDuplication`
47642
47818
  """
47643
47819
  return pulumi.get(self, "loss_correction_fec")
@@ -47646,7 +47822,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47646
47822
  @pulumi.getter(name="lossCorrectionFecThreshold")
47647
47823
  def loss_correction_fec_threshold(self) -> Optional[str]:
47648
47824
  """
47649
- Loss correction FEC threshold
47825
+ Loss correction FEC threshold, Attribute conditional on `type` being equal to `lossProtectFec`
47650
47826
  """
47651
47827
  return pulumi.get(self, "loss_correction_fec_threshold")
47652
47828
 
@@ -47654,7 +47830,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47654
47830
  @pulumi.getter(name="lossCorrectionPacketDuplication")
47655
47831
  def loss_correction_packet_duplication(self) -> Optional[str]:
47656
47832
  """
47657
- Loss correction packet duplication
47833
+ Loss correction packet duplication, Attribute conditional on `type` being equal to `lossProtectPktDup`
47658
47834
  - Choices: `fecAdaptive`, `fecAlways`, `packetDuplication`
47659
47835
  """
47660
47836
  return pulumi.get(self, "loss_correction_packet_duplication")
@@ -47663,7 +47839,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47663
47839
  @pulumi.getter(name="natParameters")
47664
47840
  def nat_parameters(self) -> Optional[Sequence['outputs.TrafficDataPolicyDefinitionSequenceActionEntryNatParameter']]:
47665
47841
  """
47666
- List of NAT parameters
47842
+ List of NAT parameters, Attribute conditional on `type` being equal to `nat`
47667
47843
  """
47668
47844
  return pulumi.get(self, "nat_parameters")
47669
47845
 
@@ -47671,7 +47847,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47671
47847
  @pulumi.getter(name="natPool")
47672
47848
  def nat_pool(self) -> Optional[str]:
47673
47849
  """
47674
- NAT pool
47850
+ NAT pool, Attribute conditional on `type` being equal to `nat`
47675
47851
  - Choices: `pool`
47676
47852
  """
47677
47853
  return pulumi.get(self, "nat_pool")
@@ -47680,7 +47856,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47680
47856
  @pulumi.getter(name="natPoolId")
47681
47857
  def nat_pool_id(self) -> Optional[int]:
47682
47858
  """
47683
- NAT pool ID
47859
+ NAT pool ID, Attribute conditional on `type` being equal to `nat`
47684
47860
  - Range: `1`-`31`
47685
47861
  """
47686
47862
  return pulumi.get(self, "nat_pool_id")
@@ -47689,7 +47865,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47689
47865
  @pulumi.getter(name="redirectDns")
47690
47866
  def redirect_dns(self) -> Optional[str]:
47691
47867
  """
47692
- Redirect DNS
47868
+ Redirect DNS, Attribute conditional on `type` being equal to `redirectDns`
47693
47869
  - Choices: `dnsType`, `ipAddress`
47694
47870
  """
47695
47871
  return pulumi.get(self, "redirect_dns")
@@ -47698,7 +47874,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47698
47874
  @pulumi.getter(name="redirectDnsAddress")
47699
47875
  def redirect_dns_address(self) -> Optional[str]:
47700
47876
  """
47701
- Redirect DNS IP address
47877
+ Redirect DNS IP address, Attribute conditional on `redirect_dns` being equal to `ipAddress`
47702
47878
  """
47703
47879
  return pulumi.get(self, "redirect_dns_address")
47704
47880
 
@@ -47706,7 +47882,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47706
47882
  @pulumi.getter(name="redirectDnsType")
47707
47883
  def redirect_dns_type(self) -> Optional[str]:
47708
47884
  """
47709
- Redirect DNS type
47885
+ Redirect DNS type, Attribute conditional on `redirect_dns` being equal to `dnsType`
47710
47886
  - Choices: `host`, `umbrella`
47711
47887
  """
47712
47888
  return pulumi.get(self, "redirect_dns_type")
@@ -47715,7 +47891,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47715
47891
  @pulumi.getter(name="secureInternetGateway")
47716
47892
  def secure_internet_gateway(self) -> Optional[bool]:
47717
47893
  """
47718
- Enable secure internet gateway
47894
+ Enable secure internet gateway, Attribute conditional on `type` being equal to `sig`
47719
47895
  """
47720
47896
  return pulumi.get(self, "secure_internet_gateway")
47721
47897
 
@@ -47723,7 +47899,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47723
47899
  @pulumi.getter(name="serviceNodeGroup")
47724
47900
  def service_node_group(self) -> Optional[str]:
47725
47901
  """
47726
- Service node group
47902
+ Service node group, Attribute conditional on `type` being equal to `serviceNodeGroup`
47727
47903
  """
47728
47904
  return pulumi.get(self, "service_node_group")
47729
47905
 
@@ -47731,7 +47907,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47731
47907
  @pulumi.getter(name="setParameters")
47732
47908
  def set_parameters(self) -> Optional[Sequence['outputs.TrafficDataPolicyDefinitionSequenceActionEntrySetParameter']]:
47733
47909
  """
47734
- List of set parameters
47910
+ List of set parameters, Attribute conditional on `type` being equal to `set`
47735
47911
  """
47736
47912
  return pulumi.get(self, "set_parameters")
47737
47913
 
@@ -47739,7 +47915,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntry(dict):
47739
47915
  @pulumi.getter(name="tcpOptimization")
47740
47916
  def tcp_optimization(self) -> Optional[bool]:
47741
47917
  """
47742
- Enable TCP optimization
47918
+ Enable TCP optimization, Attribute conditional on `type` being equal to `tcpOptimization`
47743
47919
  """
47744
47920
  return pulumi.get(self, "tcp_optimization")
47745
47921
 
@@ -47770,8 +47946,8 @@ class TrafficDataPolicyDefinitionSequenceActionEntryNatParameter(dict):
47770
47946
  """
47771
47947
  :param str type: Type of NAT parameter
47772
47948
  - Choices: `useVpn`, `fallback`
47773
- :param bool fallback: Fallback
47774
- :param int vpn_id: DSCP
47949
+ :param bool fallback: Fallback, Attribute conditional on `type` being equal to `fallback`
47950
+ :param int vpn_id: DSCP, Attribute conditional on `type` being equal to `useVpn`
47775
47951
  """
47776
47952
  pulumi.set(__self__, "type", type)
47777
47953
  if fallback is not None:
@@ -47792,7 +47968,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntryNatParameter(dict):
47792
47968
  @pulumi.getter
47793
47969
  def fallback(self) -> Optional[bool]:
47794
47970
  """
47795
- Fallback
47971
+ Fallback, Attribute conditional on `type` being equal to `fallback`
47796
47972
  """
47797
47973
  return pulumi.get(self, "fallback")
47798
47974
 
@@ -47800,7 +47976,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntryNatParameter(dict):
47800
47976
  @pulumi.getter(name="vpnId")
47801
47977
  def vpn_id(self) -> Optional[int]:
47802
47978
  """
47803
- DSCP
47979
+ DSCP, Attribute conditional on `type` being equal to `useVpn`
47804
47980
  """
47805
47981
  return pulumi.get(self, "vpn_id")
47806
47982
 
@@ -47903,38 +48079,38 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
47903
48079
  """
47904
48080
  :param str type: Type of set parameter
47905
48081
  - Choices: `dscp`, `forwardingClass`, `localTlocList`, `nextHop`, `nextHopLoose`, `policer`, `preferredColorGroup`, `tlocList`, `tloc`, `service`, `vpn`
47906
- :param int dscp: DSCP
48082
+ :param int dscp: DSCP, Attribute conditional on `type` being equal to `dscp`
47907
48083
  - Range: `0`-`63`
47908
- :param str forwarding_class: Forwarding class
47909
- :param str local_tloc_list_color: Local TLOC list color. Space separated list of colors.
47910
- :param str local_tloc_list_encap: Local TLOC list encapsulation.
48084
+ :param str forwarding_class: Forwarding class, Attribute conditional on `type` being equal to `forwardingClass`
48085
+ :param str local_tloc_list_color: Local TLOC list color. Space separated list of colors., Attribute conditional on `type` being equal to `localTlocList`
48086
+ :param str local_tloc_list_encap: Local TLOC list encapsulation., Attribute conditional on `type` being equal to `localTlocList`
47911
48087
  - Choices: `ipsec`, `gre`, `ipsec gre`
47912
- :param bool local_tloc_list_restrict: Local TLOC list restrict
47913
- :param str next_hop: Next hop IP
47914
- :param bool next_hop_loose: Use routing table entry to forward the packet in case Next-hop is not available
47915
- :param str policer_list_id: Policer list ID
48088
+ :param bool local_tloc_list_restrict: Local TLOC list restrict, Attribute conditional on `type` being equal to `localTlocList`
48089
+ :param str next_hop: Next hop IP, Attribute conditional on `type` being equal to `nextHop`
48090
+ :param bool next_hop_loose: Use routing table entry to forward the packet in case Next-hop is not available, Attribute conditional on `type` being equal to `nextHopLoose`
48091
+ :param str policer_list_id: Policer list ID, Attribute conditional on `type` being equal to `policer`
47916
48092
  :param int policer_list_version: Policer list version
47917
- :param str preferred_color_group_list: Preferred color group list ID
48093
+ :param str preferred_color_group_list: Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
47918
48094
  :param int preferred_color_group_list_version: Preferred color group list version
47919
- :param str service_tloc_color: Service TLOC color
47920
- :param str service_tloc_encapsulation: Service TLOC encapsulation
48095
+ :param str service_tloc_color: Service TLOC color, Attribute conditional on `type` being equal to `service`
48096
+ :param str service_tloc_encapsulation: Service TLOC encapsulation, Attribute conditional on `type` being equal to `service`
47921
48097
  - Choices: `ipsec`, `gre`, `ipsec gre`
47922
- :param str service_tloc_ip: Service TLOC IP address
47923
- :param str service_tloc_list_id: Service TLOC list ID
48098
+ :param str service_tloc_ip: Service TLOC IP address, Attribute conditional on `type` being equal to `service`
48099
+ :param str service_tloc_list_id: Service TLOC list ID, Attribute conditional on `type` being equal to `service`
47924
48100
  :param int service_tloc_list_version: Service TLOC list version
47925
- :param bool service_tloc_local: Service TLOC Local
47926
- :param bool service_tloc_restrict: Service TLOC Restrict
47927
- :param str service_type: Service type
48101
+ :param bool service_tloc_local: Service TLOC Local, Attribute conditional on `type` being equal to `service`
48102
+ :param bool service_tloc_restrict: Service TLOC Restrict, Attribute conditional on `type` being equal to `service`
48103
+ :param str service_type: Service type, Attribute conditional on `type` being equal to `service`
47928
48104
  - Choices: `FW`, `IDP`, `IDS`, `netsvc1`, `netsvc2`, `netsvc3`, `netsvc4`, `netsvc5`
47929
- :param int service_vpn_id: Service VPN ID
48105
+ :param int service_vpn_id: Service VPN ID, Attribute conditional on `type` being equal to `service`
47930
48106
  - Range: `0`-`65536`
47931
- :param str tloc_color: TLOC color
47932
- :param str tloc_encapsulation: TLOC encapsulation
48107
+ :param str tloc_color: TLOC color, Attribute conditional on `type` being equal to `tloc`
48108
+ :param str tloc_encapsulation: TLOC encapsulation, Attribute conditional on `type` being equal to `tloc`
47933
48109
  - Choices: `ipsec`, `gre`, `ipsec gre`
47934
- :param str tloc_ip: TLOC IP address
47935
- :param str tloc_list_id: TLOC list ID
48110
+ :param str tloc_ip: TLOC IP address, Attribute conditional on `type` being equal to `tloc`
48111
+ :param str tloc_list_id: TLOC list ID, Attribute conditional on `type` being equal to `tlocList`
47936
48112
  :param int tloc_list_version: TLOC list version
47937
- :param int vpn_id: DSCP
48113
+ :param int vpn_id: DSCP, Attribute conditional on `type` being equal to `vpn`
47938
48114
  - Range: `0`-`65530`
47939
48115
  """
47940
48116
  pulumi.set(__self__, "type", type)
@@ -48004,7 +48180,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48004
48180
  @pulumi.getter
48005
48181
  def dscp(self) -> Optional[int]:
48006
48182
  """
48007
- DSCP
48183
+ DSCP, Attribute conditional on `type` being equal to `dscp`
48008
48184
  - Range: `0`-`63`
48009
48185
  """
48010
48186
  return pulumi.get(self, "dscp")
@@ -48013,7 +48189,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48013
48189
  @pulumi.getter(name="forwardingClass")
48014
48190
  def forwarding_class(self) -> Optional[str]:
48015
48191
  """
48016
- Forwarding class
48192
+ Forwarding class, Attribute conditional on `type` being equal to `forwardingClass`
48017
48193
  """
48018
48194
  return pulumi.get(self, "forwarding_class")
48019
48195
 
@@ -48021,7 +48197,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48021
48197
  @pulumi.getter(name="localTlocListColor")
48022
48198
  def local_tloc_list_color(self) -> Optional[str]:
48023
48199
  """
48024
- Local TLOC list color. Space separated list of colors.
48200
+ Local TLOC list color. Space separated list of colors., Attribute conditional on `type` being equal to `localTlocList`
48025
48201
  """
48026
48202
  return pulumi.get(self, "local_tloc_list_color")
48027
48203
 
@@ -48029,7 +48205,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48029
48205
  @pulumi.getter(name="localTlocListEncap")
48030
48206
  def local_tloc_list_encap(self) -> Optional[str]:
48031
48207
  """
48032
- Local TLOC list encapsulation.
48208
+ Local TLOC list encapsulation., Attribute conditional on `type` being equal to `localTlocList`
48033
48209
  - Choices: `ipsec`, `gre`, `ipsec gre`
48034
48210
  """
48035
48211
  return pulumi.get(self, "local_tloc_list_encap")
@@ -48038,7 +48214,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48038
48214
  @pulumi.getter(name="localTlocListRestrict")
48039
48215
  def local_tloc_list_restrict(self) -> Optional[bool]:
48040
48216
  """
48041
- Local TLOC list restrict
48217
+ Local TLOC list restrict, Attribute conditional on `type` being equal to `localTlocList`
48042
48218
  """
48043
48219
  return pulumi.get(self, "local_tloc_list_restrict")
48044
48220
 
@@ -48046,7 +48222,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48046
48222
  @pulumi.getter(name="nextHop")
48047
48223
  def next_hop(self) -> Optional[str]:
48048
48224
  """
48049
- Next hop IP
48225
+ Next hop IP, Attribute conditional on `type` being equal to `nextHop`
48050
48226
  """
48051
48227
  return pulumi.get(self, "next_hop")
48052
48228
 
@@ -48054,7 +48230,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48054
48230
  @pulumi.getter(name="nextHopLoose")
48055
48231
  def next_hop_loose(self) -> Optional[bool]:
48056
48232
  """
48057
- Use routing table entry to forward the packet in case Next-hop is not available
48233
+ Use routing table entry to forward the packet in case Next-hop is not available, Attribute conditional on `type` being equal to `nextHopLoose`
48058
48234
  """
48059
48235
  return pulumi.get(self, "next_hop_loose")
48060
48236
 
@@ -48062,7 +48238,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48062
48238
  @pulumi.getter(name="policerListId")
48063
48239
  def policer_list_id(self) -> Optional[str]:
48064
48240
  """
48065
- Policer list ID
48241
+ Policer list ID, Attribute conditional on `type` being equal to `policer`
48066
48242
  """
48067
48243
  return pulumi.get(self, "policer_list_id")
48068
48244
 
@@ -48078,7 +48254,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48078
48254
  @pulumi.getter(name="preferredColorGroupList")
48079
48255
  def preferred_color_group_list(self) -> Optional[str]:
48080
48256
  """
48081
- Preferred color group list ID
48257
+ Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
48082
48258
  """
48083
48259
  return pulumi.get(self, "preferred_color_group_list")
48084
48260
 
@@ -48094,7 +48270,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48094
48270
  @pulumi.getter(name="serviceTlocColor")
48095
48271
  def service_tloc_color(self) -> Optional[str]:
48096
48272
  """
48097
- Service TLOC color
48273
+ Service TLOC color, Attribute conditional on `type` being equal to `service`
48098
48274
  """
48099
48275
  return pulumi.get(self, "service_tloc_color")
48100
48276
 
@@ -48102,7 +48278,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48102
48278
  @pulumi.getter(name="serviceTlocEncapsulation")
48103
48279
  def service_tloc_encapsulation(self) -> Optional[str]:
48104
48280
  """
48105
- Service TLOC encapsulation
48281
+ Service TLOC encapsulation, Attribute conditional on `type` being equal to `service`
48106
48282
  - Choices: `ipsec`, `gre`, `ipsec gre`
48107
48283
  """
48108
48284
  return pulumi.get(self, "service_tloc_encapsulation")
@@ -48111,7 +48287,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48111
48287
  @pulumi.getter(name="serviceTlocIp")
48112
48288
  def service_tloc_ip(self) -> Optional[str]:
48113
48289
  """
48114
- Service TLOC IP address
48290
+ Service TLOC IP address, Attribute conditional on `type` being equal to `service`
48115
48291
  """
48116
48292
  return pulumi.get(self, "service_tloc_ip")
48117
48293
 
@@ -48119,7 +48295,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48119
48295
  @pulumi.getter(name="serviceTlocListId")
48120
48296
  def service_tloc_list_id(self) -> Optional[str]:
48121
48297
  """
48122
- Service TLOC list ID
48298
+ Service TLOC list ID, Attribute conditional on `type` being equal to `service`
48123
48299
  """
48124
48300
  return pulumi.get(self, "service_tloc_list_id")
48125
48301
 
@@ -48135,7 +48311,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48135
48311
  @pulumi.getter(name="serviceTlocLocal")
48136
48312
  def service_tloc_local(self) -> Optional[bool]:
48137
48313
  """
48138
- Service TLOC Local
48314
+ Service TLOC Local, Attribute conditional on `type` being equal to `service`
48139
48315
  """
48140
48316
  return pulumi.get(self, "service_tloc_local")
48141
48317
 
@@ -48143,7 +48319,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48143
48319
  @pulumi.getter(name="serviceTlocRestrict")
48144
48320
  def service_tloc_restrict(self) -> Optional[bool]:
48145
48321
  """
48146
- Service TLOC Restrict
48322
+ Service TLOC Restrict, Attribute conditional on `type` being equal to `service`
48147
48323
  """
48148
48324
  return pulumi.get(self, "service_tloc_restrict")
48149
48325
 
@@ -48151,7 +48327,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48151
48327
  @pulumi.getter(name="serviceType")
48152
48328
  def service_type(self) -> Optional[str]:
48153
48329
  """
48154
- Service type
48330
+ Service type, Attribute conditional on `type` being equal to `service`
48155
48331
  - Choices: `FW`, `IDP`, `IDS`, `netsvc1`, `netsvc2`, `netsvc3`, `netsvc4`, `netsvc5`
48156
48332
  """
48157
48333
  return pulumi.get(self, "service_type")
@@ -48160,7 +48336,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48160
48336
  @pulumi.getter(name="serviceVpnId")
48161
48337
  def service_vpn_id(self) -> Optional[int]:
48162
48338
  """
48163
- Service VPN ID
48339
+ Service VPN ID, Attribute conditional on `type` being equal to `service`
48164
48340
  - Range: `0`-`65536`
48165
48341
  """
48166
48342
  return pulumi.get(self, "service_vpn_id")
@@ -48169,7 +48345,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48169
48345
  @pulumi.getter(name="tlocColor")
48170
48346
  def tloc_color(self) -> Optional[str]:
48171
48347
  """
48172
- TLOC color
48348
+ TLOC color, Attribute conditional on `type` being equal to `tloc`
48173
48349
  """
48174
48350
  return pulumi.get(self, "tloc_color")
48175
48351
 
@@ -48177,7 +48353,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48177
48353
  @pulumi.getter(name="tlocEncapsulation")
48178
48354
  def tloc_encapsulation(self) -> Optional[str]:
48179
48355
  """
48180
- TLOC encapsulation
48356
+ TLOC encapsulation, Attribute conditional on `type` being equal to `tloc`
48181
48357
  - Choices: `ipsec`, `gre`, `ipsec gre`
48182
48358
  """
48183
48359
  return pulumi.get(self, "tloc_encapsulation")
@@ -48186,7 +48362,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48186
48362
  @pulumi.getter(name="tlocIp")
48187
48363
  def tloc_ip(self) -> Optional[str]:
48188
48364
  """
48189
- TLOC IP address
48365
+ TLOC IP address, Attribute conditional on `type` being equal to `tloc`
48190
48366
  """
48191
48367
  return pulumi.get(self, "tloc_ip")
48192
48368
 
@@ -48194,7 +48370,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48194
48370
  @pulumi.getter(name="tlocListId")
48195
48371
  def tloc_list_id(self) -> Optional[str]:
48196
48372
  """
48197
- TLOC list ID
48373
+ TLOC list ID, Attribute conditional on `type` being equal to `tlocList`
48198
48374
  """
48199
48375
  return pulumi.get(self, "tloc_list_id")
48200
48376
 
@@ -48210,7 +48386,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
48210
48386
  @pulumi.getter(name="vpnId")
48211
48387
  def vpn_id(self) -> Optional[int]:
48212
48388
  """
48213
- DSCP
48389
+ DSCP, Attribute conditional on `type` being equal to `vpn`
48214
48390
  - Range: `0`-`65530`
48215
48391
  """
48216
48392
  return pulumi.get(self, "vpn_id")
@@ -48291,33 +48467,33 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48291
48467
  """
48292
48468
  :param str type: Type of match entry
48293
48469
  - Choices: `appList`, `dnsAppList`, `dns`, `dscp`, `packetLength`, `plp`, `protocol`, `sourceDataPrefixList`, `sourceIp`, `sourcePort`, `destinationDataPrefixList`, `destinationIp`, `destinationRegion`, `destinationPort`, `tcp`, `trafficTo`, `icmpMessage`
48294
- :param str application_list_id: Application list ID
48470
+ :param str application_list_id: Application list ID, Attribute conditional on `type` being equal to `appList`
48295
48471
  :param int application_list_version: Application list version
48296
- :param str destination_data_prefix_list_id: Destination Data Prefix list ID
48472
+ :param str destination_data_prefix_list_id: Destination Data Prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
48297
48473
  :param int destination_data_prefix_list_version: Destination Data Prefix list version
48298
- :param str destination_ip: Destination IP
48299
- :param str destination_port: Destination port, 0-65535 (Single value, range or multiple values separated by spaces)
48300
- :param str destination_region: Destination region
48474
+ :param str destination_ip: Destination IP, Attribute conditional on `type` being equal to `destinationIp`
48475
+ :param str destination_port: Destination port, 0-65535 (Single value, range or multiple values separated by spaces), Attribute conditional on `type` being equal to `destinationPort`
48476
+ :param str destination_region: Destination region, Attribute conditional on `type` being equal to `destinationRegion`
48301
48477
  - Choices: `primary-region`, `secondary-region`, `other-region`
48302
- :param str dns: DNS request or response
48478
+ :param str dns: DNS request or response, Attribute conditional on `type` being equal to `dns`
48303
48479
  - Choices: `request`, `response`
48304
- :param str dns_application_list_id: DNS Application list ID
48480
+ :param str dns_application_list_id: DNS Application list ID, Attribute conditional on `type` being equal to `dnsAppList`
48305
48481
  :param int dns_application_list_version: DNS Application list version
48306
- :param int dscp: DSCP value
48482
+ :param int dscp: DSCP value, Attribute conditional on `type` being equal to `dscp`
48307
48483
  - Range: `0`-`63`
48308
- :param str icmp_message: ICMP Message
48309
- :param int packet_length: Packet length
48484
+ :param str icmp_message: ICMP Message, Attribute conditional on `type` being equal to `icmpMessage`
48485
+ :param int packet_length: Packet length, Attribute conditional on `type` being equal to `packetLength`
48310
48486
  - Range: `0`-`65535`
48311
- :param str plp: PLP
48487
+ :param str plp: PLP, Attribute conditional on `type` being equal to `plp`
48312
48488
  - Choices: `low`, `high`
48313
- :param str protocol: IP Protocol, 0-255 (Single value or multiple values separated by spaces)
48314
- :param str source_data_prefix_list_id: Source Data Prefix list ID
48489
+ :param str protocol: IP Protocol, 0-255 (Single value or multiple values separated by spaces), Attribute conditional on `type` being equal to `protocol`
48490
+ :param str source_data_prefix_list_id: Source Data Prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
48315
48491
  :param int source_data_prefix_list_version: Source Data Prefix list version
48316
- :param str source_ip: Source IP
48317
- :param str source_port: Source port, 0-65535 (Single value, range or multiple values separated by spaces)
48318
- :param str tcp: TCP flags
48492
+ :param str source_ip: Source IP, Attribute conditional on `type` being equal to `sourceIp`
48493
+ :param str source_port: Source port, 0-65535 (Single value, range or multiple values separated by spaces), Attribute conditional on `type` being equal to `sourcePort`
48494
+ :param str tcp: TCP flags, Attribute conditional on `type` being equal to `tcp`
48319
48495
  - Choices: `syn`
48320
- :param str traffic_to: Traffic to
48496
+ :param str traffic_to: Traffic to, Attribute conditional on `type` being equal to `trafficTo`
48321
48497
  - Choices: `access`, `core`, `service`
48322
48498
  """
48323
48499
  pulumi.set(__self__, "type", type)
@@ -48377,7 +48553,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48377
48553
  @pulumi.getter(name="applicationListId")
48378
48554
  def application_list_id(self) -> Optional[str]:
48379
48555
  """
48380
- Application list ID
48556
+ Application list ID, Attribute conditional on `type` being equal to `appList`
48381
48557
  """
48382
48558
  return pulumi.get(self, "application_list_id")
48383
48559
 
@@ -48393,7 +48569,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48393
48569
  @pulumi.getter(name="destinationDataPrefixListId")
48394
48570
  def destination_data_prefix_list_id(self) -> Optional[str]:
48395
48571
  """
48396
- Destination Data Prefix list ID
48572
+ Destination Data Prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
48397
48573
  """
48398
48574
  return pulumi.get(self, "destination_data_prefix_list_id")
48399
48575
 
@@ -48409,7 +48585,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48409
48585
  @pulumi.getter(name="destinationIp")
48410
48586
  def destination_ip(self) -> Optional[str]:
48411
48587
  """
48412
- Destination IP
48588
+ Destination IP, Attribute conditional on `type` being equal to `destinationIp`
48413
48589
  """
48414
48590
  return pulumi.get(self, "destination_ip")
48415
48591
 
@@ -48417,7 +48593,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48417
48593
  @pulumi.getter(name="destinationPort")
48418
48594
  def destination_port(self) -> Optional[str]:
48419
48595
  """
48420
- Destination port, 0-65535 (Single value, range or multiple values separated by spaces)
48596
+ Destination port, 0-65535 (Single value, range or multiple values separated by spaces), Attribute conditional on `type` being equal to `destinationPort`
48421
48597
  """
48422
48598
  return pulumi.get(self, "destination_port")
48423
48599
 
@@ -48425,7 +48601,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48425
48601
  @pulumi.getter(name="destinationRegion")
48426
48602
  def destination_region(self) -> Optional[str]:
48427
48603
  """
48428
- Destination region
48604
+ Destination region, Attribute conditional on `type` being equal to `destinationRegion`
48429
48605
  - Choices: `primary-region`, `secondary-region`, `other-region`
48430
48606
  """
48431
48607
  return pulumi.get(self, "destination_region")
@@ -48434,7 +48610,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48434
48610
  @pulumi.getter
48435
48611
  def dns(self) -> Optional[str]:
48436
48612
  """
48437
- DNS request or response
48613
+ DNS request or response, Attribute conditional on `type` being equal to `dns`
48438
48614
  - Choices: `request`, `response`
48439
48615
  """
48440
48616
  return pulumi.get(self, "dns")
@@ -48443,7 +48619,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48443
48619
  @pulumi.getter(name="dnsApplicationListId")
48444
48620
  def dns_application_list_id(self) -> Optional[str]:
48445
48621
  """
48446
- DNS Application list ID
48622
+ DNS Application list ID, Attribute conditional on `type` being equal to `dnsAppList`
48447
48623
  """
48448
48624
  return pulumi.get(self, "dns_application_list_id")
48449
48625
 
@@ -48459,7 +48635,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48459
48635
  @pulumi.getter
48460
48636
  def dscp(self) -> Optional[int]:
48461
48637
  """
48462
- DSCP value
48638
+ DSCP value, Attribute conditional on `type` being equal to `dscp`
48463
48639
  - Range: `0`-`63`
48464
48640
  """
48465
48641
  return pulumi.get(self, "dscp")
@@ -48468,7 +48644,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48468
48644
  @pulumi.getter(name="icmpMessage")
48469
48645
  def icmp_message(self) -> Optional[str]:
48470
48646
  """
48471
- ICMP Message
48647
+ ICMP Message, Attribute conditional on `type` being equal to `icmpMessage`
48472
48648
  """
48473
48649
  return pulumi.get(self, "icmp_message")
48474
48650
 
@@ -48476,7 +48652,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48476
48652
  @pulumi.getter(name="packetLength")
48477
48653
  def packet_length(self) -> Optional[int]:
48478
48654
  """
48479
- Packet length
48655
+ Packet length, Attribute conditional on `type` being equal to `packetLength`
48480
48656
  - Range: `0`-`65535`
48481
48657
  """
48482
48658
  return pulumi.get(self, "packet_length")
@@ -48485,7 +48661,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48485
48661
  @pulumi.getter
48486
48662
  def plp(self) -> Optional[str]:
48487
48663
  """
48488
- PLP
48664
+ PLP, Attribute conditional on `type` being equal to `plp`
48489
48665
  - Choices: `low`, `high`
48490
48666
  """
48491
48667
  return pulumi.get(self, "plp")
@@ -48494,7 +48670,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48494
48670
  @pulumi.getter
48495
48671
  def protocol(self) -> Optional[str]:
48496
48672
  """
48497
- IP Protocol, 0-255 (Single value or multiple values separated by spaces)
48673
+ IP Protocol, 0-255 (Single value or multiple values separated by spaces), Attribute conditional on `type` being equal to `protocol`
48498
48674
  """
48499
48675
  return pulumi.get(self, "protocol")
48500
48676
 
@@ -48502,7 +48678,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48502
48678
  @pulumi.getter(name="sourceDataPrefixListId")
48503
48679
  def source_data_prefix_list_id(self) -> Optional[str]:
48504
48680
  """
48505
- Source Data Prefix list ID
48681
+ Source Data Prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
48506
48682
  """
48507
48683
  return pulumi.get(self, "source_data_prefix_list_id")
48508
48684
 
@@ -48518,7 +48694,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48518
48694
  @pulumi.getter(name="sourceIp")
48519
48695
  def source_ip(self) -> Optional[str]:
48520
48696
  """
48521
- Source IP
48697
+ Source IP, Attribute conditional on `type` being equal to `sourceIp`
48522
48698
  """
48523
48699
  return pulumi.get(self, "source_ip")
48524
48700
 
@@ -48526,7 +48702,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48526
48702
  @pulumi.getter(name="sourcePort")
48527
48703
  def source_port(self) -> Optional[str]:
48528
48704
  """
48529
- Source port, 0-65535 (Single value, range or multiple values separated by spaces)
48705
+ Source port, 0-65535 (Single value, range or multiple values separated by spaces), Attribute conditional on `type` being equal to `sourcePort`
48530
48706
  """
48531
48707
  return pulumi.get(self, "source_port")
48532
48708
 
@@ -48534,7 +48710,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48534
48710
  @pulumi.getter
48535
48711
  def tcp(self) -> Optional[str]:
48536
48712
  """
48537
- TCP flags
48713
+ TCP flags, Attribute conditional on `type` being equal to `tcp`
48538
48714
  - Choices: `syn`
48539
48715
  """
48540
48716
  return pulumi.get(self, "tcp")
@@ -48543,7 +48719,7 @@ class TrafficDataPolicyDefinitionSequenceMatchEntry(dict):
48543
48719
  @pulumi.getter(name="trafficTo")
48544
48720
  def traffic_to(self) -> Optional[str]:
48545
48721
  """
48546
- Traffic to
48722
+ Traffic to, Attribute conditional on `type` being equal to `trafficTo`
48547
48723
  - Choices: `access`, `core`, `service`
48548
48724
  """
48549
48725
  return pulumi.get(self, "traffic_to")
@@ -56512,6 +56688,56 @@ class TransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulation(dict
56512
56688
  return pulumi.get(self, "weight_variable")
56513
56689
 
56514
56690
 
56691
+ @pulumi.output_type
56692
+ class UrlFilteringPolicyDefinitionLogging(dict):
56693
+ @staticmethod
56694
+ def __key_warning(key: str):
56695
+ suggest = None
56696
+ if key == "externalSyslogServerIp":
56697
+ suggest = "external_syslog_server_ip"
56698
+ elif key == "externalSyslogServerVpn":
56699
+ suggest = "external_syslog_server_vpn"
56700
+
56701
+ if suggest:
56702
+ pulumi.log.warn(f"Key '{key}' not found in UrlFilteringPolicyDefinitionLogging. Access the value via the '{suggest}' property getter instead.")
56703
+
56704
+ def __getitem__(self, key: str) -> Any:
56705
+ UrlFilteringPolicyDefinitionLogging.__key_warning(key)
56706
+ return super().__getitem__(key)
56707
+
56708
+ def get(self, key: str, default = None) -> Any:
56709
+ UrlFilteringPolicyDefinitionLogging.__key_warning(key)
56710
+ return super().get(key, default)
56711
+
56712
+ def __init__(__self__, *,
56713
+ external_syslog_server_ip: Optional[str] = None,
56714
+ external_syslog_server_vpn: Optional[str] = None):
56715
+ """
56716
+ :param str external_syslog_server_ip: External Syslog Server IP
56717
+ :param str external_syslog_server_vpn: External Syslog Server VPN
56718
+ """
56719
+ if external_syslog_server_ip is not None:
56720
+ pulumi.set(__self__, "external_syslog_server_ip", external_syslog_server_ip)
56721
+ if external_syslog_server_vpn is not None:
56722
+ pulumi.set(__self__, "external_syslog_server_vpn", external_syslog_server_vpn)
56723
+
56724
+ @property
56725
+ @pulumi.getter(name="externalSyslogServerIp")
56726
+ def external_syslog_server_ip(self) -> Optional[str]:
56727
+ """
56728
+ External Syslog Server IP
56729
+ """
56730
+ return pulumi.get(self, "external_syslog_server_ip")
56731
+
56732
+ @property
56733
+ @pulumi.getter(name="externalSyslogServerVpn")
56734
+ def external_syslog_server_vpn(self) -> Optional[str]:
56735
+ """
56736
+ External Syslog Server VPN
56737
+ """
56738
+ return pulumi.get(self, "external_syslog_server_vpn")
56739
+
56740
+
56515
56741
  @pulumi.output_type
56516
56742
  class VpnInterfaceCellularFeatureTemplateIpv4AccessList(dict):
56517
56743
  @staticmethod
@@ -62098,7 +62324,7 @@ class ZoneBasedFirewallPolicyDefinitionRuleActionEntry(dict):
62098
62324
  type: Optional[str] = None):
62099
62325
  """
62100
62326
  :param str type: Type of action entry
62101
- - Choices: `log`, `connectionEvents`
62327
+ - Choices: `log`, `connectionEvents`, `advancedInspectionProfile`
62102
62328
  """
62103
62329
  if type is not None:
62104
62330
  pulumi.set(__self__, "type", type)
@@ -62108,7 +62334,7 @@ class ZoneBasedFirewallPolicyDefinitionRuleActionEntry(dict):
62108
62334
  def type(self) -> Optional[str]:
62109
62335
  """
62110
62336
  Type of action entry
62111
- - Choices: `log`, `connectionEvents`
62337
+ - Choices: `log`, `connectionEvents`, `advancedInspectionProfile`
62112
62338
  """
62113
62339
  return pulumi.get(self, "type")
62114
62340
 
@@ -77083,24 +77309,6 @@ class GetConfigurationGroupDeviceVariableResult(dict):
77083
77309
  return pulumi.get(self, "value")
77084
77310
 
77085
77311
 
77086
- @pulumi.output_type
77087
- class GetConfigurationGroupFeatureProfileResult(dict):
77088
- def __init__(__self__, *,
77089
- id: str):
77090
- """
77091
- :param str id: Feature profile ID
77092
- """
77093
- pulumi.set(__self__, "id", id)
77094
-
77095
- @property
77096
- @pulumi.getter
77097
- def id(self) -> str:
77098
- """
77099
- Feature profile ID
77100
- """
77101
- return pulumi.get(self, "id")
77102
-
77103
-
77104
77312
  @pulumi.output_type
77105
77313
  class GetConfigurationGroupTopologyDeviceResult(dict):
77106
77314
  def __init__(__self__, *,
@@ -78025,6 +78233,64 @@ class GetDnsSecurityPolicyDefinitionTargetVpnResult(dict):
78025
78233
  return pulumi.get(self, "vpn_ids")
78026
78234
 
78027
78235
 
78236
+ @pulumi.output_type
78237
+ class GetDnsSecurityPolicyTargetVpnResult(dict):
78238
+ def __init__(__self__, *,
78239
+ dns_server_ip: str,
78240
+ local_domain_bypass_enabled: bool,
78241
+ uid: str,
78242
+ umbrella_default: bool,
78243
+ vpns: Sequence[str]):
78244
+ """
78245
+ :param str dns_server_ip: Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
78246
+ :param bool local_domain_bypass_enabled: Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
78247
+ :param str uid: non empty interger string
78248
+ :param bool umbrella_default: Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
78249
+ """
78250
+ pulumi.set(__self__, "dns_server_ip", dns_server_ip)
78251
+ pulumi.set(__self__, "local_domain_bypass_enabled", local_domain_bypass_enabled)
78252
+ pulumi.set(__self__, "uid", uid)
78253
+ pulumi.set(__self__, "umbrella_default", umbrella_default)
78254
+ pulumi.set(__self__, "vpns", vpns)
78255
+
78256
+ @property
78257
+ @pulumi.getter(name="dnsServerIp")
78258
+ def dns_server_ip(self) -> str:
78259
+ """
78260
+ Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
78261
+ """
78262
+ return pulumi.get(self, "dns_server_ip")
78263
+
78264
+ @property
78265
+ @pulumi.getter(name="localDomainBypassEnabled")
78266
+ def local_domain_bypass_enabled(self) -> bool:
78267
+ """
78268
+ Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
78269
+ """
78270
+ return pulumi.get(self, "local_domain_bypass_enabled")
78271
+
78272
+ @property
78273
+ @pulumi.getter
78274
+ def uid(self) -> str:
78275
+ """
78276
+ non empty interger string
78277
+ """
78278
+ return pulumi.get(self, "uid")
78279
+
78280
+ @property
78281
+ @pulumi.getter(name="umbrellaDefault")
78282
+ def umbrella_default(self) -> bool:
78283
+ """
78284
+ Field will only be under data field if matchAllVpn is true, otherwise field will be under targetVpns and set per entry
78285
+ """
78286
+ return pulumi.get(self, "umbrella_default")
78287
+
78288
+ @property
78289
+ @pulumi.getter
78290
+ def vpns(self) -> Sequence[str]:
78291
+ return pulumi.get(self, "vpns")
78292
+
78293
+
78028
78294
  @pulumi.output_type
78029
78295
  class GetDomainListPolicyObjectEntryResult(dict):
78030
78296
  def __init__(__self__, *,
@@ -78742,6 +79008,35 @@ class GetHubAndSpokeTopologyPolicyDefinitionTopologySpokeHubResult(dict):
78742
79008
  return pulumi.get(self, "site_list_version")
78743
79009
 
78744
79010
 
79011
+ @pulumi.output_type
79012
+ class GetIntrusionPreventionPolicyDefinitionLoggingResult(dict):
79013
+ def __init__(__self__, *,
79014
+ external_syslog_server_ip: str,
79015
+ external_syslog_server_vpn: str):
79016
+ """
79017
+ :param str external_syslog_server_ip: External Syslog Server IP
79018
+ :param str external_syslog_server_vpn: External Syslog Server VPN
79019
+ """
79020
+ pulumi.set(__self__, "external_syslog_server_ip", external_syslog_server_ip)
79021
+ pulumi.set(__self__, "external_syslog_server_vpn", external_syslog_server_vpn)
79022
+
79023
+ @property
79024
+ @pulumi.getter(name="externalSyslogServerIp")
79025
+ def external_syslog_server_ip(self) -> str:
79026
+ """
79027
+ External Syslog Server IP
79028
+ """
79029
+ return pulumi.get(self, "external_syslog_server_ip")
79030
+
79031
+ @property
79032
+ @pulumi.getter(name="externalSyslogServerVpn")
79033
+ def external_syslog_server_vpn(self) -> str:
79034
+ """
79035
+ External Syslog Server VPN
79036
+ """
79037
+ return pulumi.get(self, "external_syslog_server_vpn")
79038
+
79039
+
78745
79040
  @pulumi.output_type
78746
79041
  class GetIpsSignatureListPolicyObjectEntryResult(dict):
78747
79042
  def __init__(__self__, *,
@@ -82554,18 +82849,32 @@ class GetSecurityAppHostingFeatureTemplateVirtualApplicationResult(dict):
82554
82849
  @pulumi.output_type
82555
82850
  class GetSecurityPolicyDefinitionResult(dict):
82556
82851
  def __init__(__self__, *,
82852
+ destination_zone: str,
82557
82853
  id: str,
82854
+ source_zone: str,
82558
82855
  type: str,
82559
82856
  version: int):
82560
82857
  """
82858
+ :param str destination_zone: Destination Zone
82561
82859
  :param str id: Policy definition ID
82860
+ :param str source_zone: Source Zone
82562
82861
  :param str type: Policy definition type
82563
82862
  :param int version: Policy definition version
82564
82863
  """
82864
+ pulumi.set(__self__, "destination_zone", destination_zone)
82565
82865
  pulumi.set(__self__, "id", id)
82866
+ pulumi.set(__self__, "source_zone", source_zone)
82566
82867
  pulumi.set(__self__, "type", type)
82567
82868
  pulumi.set(__self__, "version", version)
82568
82869
 
82870
+ @property
82871
+ @pulumi.getter(name="destinationZone")
82872
+ def destination_zone(self) -> str:
82873
+ """
82874
+ Destination Zone
82875
+ """
82876
+ return pulumi.get(self, "destination_zone")
82877
+
82569
82878
  @property
82570
82879
  @pulumi.getter
82571
82880
  def id(self) -> str:
@@ -82574,6 +82883,14 @@ class GetSecurityPolicyDefinitionResult(dict):
82574
82883
  """
82575
82884
  return pulumi.get(self, "id")
82576
82885
 
82886
+ @property
82887
+ @pulumi.getter(name="sourceZone")
82888
+ def source_zone(self) -> str:
82889
+ """
82890
+ Source Zone
82891
+ """
82892
+ return pulumi.get(self, "source_zone")
82893
+
82577
82894
  @property
82578
82895
  @pulumi.getter
82579
82896
  def type(self) -> str:
@@ -82595,12 +82912,15 @@ class GetSecurityPolicyDefinitionResult(dict):
82595
82912
  class GetSecurityPolicyLoggingResult(dict):
82596
82913
  def __init__(__self__, *,
82597
82914
  external_syslog_server_ip: str,
82915
+ external_syslog_server_source_interface: str,
82598
82916
  external_syslog_server_vpn: str):
82599
82917
  """
82600
82918
  :param str external_syslog_server_ip: External Syslog Server IP
82919
+ :param str external_syslog_server_source_interface: External Syslog Server Source Interface
82601
82920
  :param str external_syslog_server_vpn: External Syslog Server VPN
82602
82921
  """
82603
82922
  pulumi.set(__self__, "external_syslog_server_ip", external_syslog_server_ip)
82923
+ pulumi.set(__self__, "external_syslog_server_source_interface", external_syslog_server_source_interface)
82604
82924
  pulumi.set(__self__, "external_syslog_server_vpn", external_syslog_server_vpn)
82605
82925
 
82606
82926
  @property
@@ -82611,6 +82931,14 @@ class GetSecurityPolicyLoggingResult(dict):
82611
82931
  """
82612
82932
  return pulumi.get(self, "external_syslog_server_ip")
82613
82933
 
82934
+ @property
82935
+ @pulumi.getter(name="externalSyslogServerSourceInterface")
82936
+ def external_syslog_server_source_interface(self) -> str:
82937
+ """
82938
+ External Syslog Server Source Interface
82939
+ """
82940
+ return pulumi.get(self, "external_syslog_server_source_interface")
82941
+
82614
82942
  @property
82615
82943
  @pulumi.getter(name="externalSyslogServerVpn")
82616
82944
  def external_syslog_server_vpn(self) -> str:
@@ -101025,6 +101353,35 @@ class GetTransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulationRe
101025
101353
  return pulumi.get(self, "weight_variable")
101026
101354
 
101027
101355
 
101356
+ @pulumi.output_type
101357
+ class GetUrlFilteringPolicyDefinitionLoggingResult(dict):
101358
+ def __init__(__self__, *,
101359
+ external_syslog_server_ip: str,
101360
+ external_syslog_server_vpn: str):
101361
+ """
101362
+ :param str external_syslog_server_ip: External Syslog Server IP
101363
+ :param str external_syslog_server_vpn: External Syslog Server VPN
101364
+ """
101365
+ pulumi.set(__self__, "external_syslog_server_ip", external_syslog_server_ip)
101366
+ pulumi.set(__self__, "external_syslog_server_vpn", external_syslog_server_vpn)
101367
+
101368
+ @property
101369
+ @pulumi.getter(name="externalSyslogServerIp")
101370
+ def external_syslog_server_ip(self) -> str:
101371
+ """
101372
+ External Syslog Server IP
101373
+ """
101374
+ return pulumi.get(self, "external_syslog_server_ip")
101375
+
101376
+ @property
101377
+ @pulumi.getter(name="externalSyslogServerVpn")
101378
+ def external_syslog_server_vpn(self) -> str:
101379
+ """
101380
+ External Syslog Server VPN
101381
+ """
101382
+ return pulumi.get(self, "external_syslog_server_vpn")
101383
+
101384
+
101028
101385
  @pulumi.output_type
101029
101386
  class GetVedgeInventoryDeviceResult(dict):
101030
101387
  def __init__(__self__, *,