pulumi-sdwan 0.4.0a1754721445__py3-none-any.whl → 0.4.0a1755056572__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_sdwan/__init__.py +10 -0
- pulumi_sdwan/_inputs.py +703 -209
- pulumi_sdwan/cisco_system_feature_template.py +47 -0
- pulumi_sdwan/get_cisco_system_feature_template.py +15 -1
- pulumi_sdwan/get_policy_group.py +183 -0
- pulumi_sdwan/localized_policy.py +56 -56
- pulumi_sdwan/outputs.py +839 -239
- pulumi_sdwan/policy_group.py +440 -0
- pulumi_sdwan/pulumi-plugin.json +1 -1
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py +630 -497
- {pulumi_sdwan-0.4.0a1754721445.dist-info → pulumi_sdwan-0.4.0a1755056572.dist-info}/METADATA +1 -1
- {pulumi_sdwan-0.4.0a1754721445.dist-info → pulumi_sdwan-0.4.0a1755056572.dist-info}/RECORD +14 -12
- {pulumi_sdwan-0.4.0a1754721445.dist-info → pulumi_sdwan-0.4.0a1755056572.dist-info}/WHEEL +0 -0
- {pulumi_sdwan-0.4.0a1754721445.dist-info → pulumi_sdwan-0.4.0a1755056572.dist-info}/top_level.txt +0 -0
pulumi_sdwan/outputs.py
CHANGED
|
@@ -212,6 +212,8 @@ __all__ = [
|
|
|
212
212
|
'MeshTopologyPolicyDefinitionRegion',
|
|
213
213
|
'OtherThousandeyesFeatureVirtualApplication',
|
|
214
214
|
'OtherUcseFeatureInterface',
|
|
215
|
+
'PolicyGroupDevice',
|
|
216
|
+
'PolicyGroupDeviceVariable',
|
|
215
217
|
'PolicyObjectAppProbeClassEntry',
|
|
216
218
|
'PolicyObjectAppProbeClassEntryMap',
|
|
217
219
|
'PolicyObjectApplicationListEntry',
|
|
@@ -718,6 +720,8 @@ __all__ = [
|
|
|
718
720
|
'GetMeshTopologyPolicyDefinitionRegionResult',
|
|
719
721
|
'GetOtherThousandeyesFeatureVirtualApplicationResult',
|
|
720
722
|
'GetOtherUcseFeatureInterfaceResult',
|
|
723
|
+
'GetPolicyGroupDeviceResult',
|
|
724
|
+
'GetPolicyGroupDeviceVariableResult',
|
|
721
725
|
'GetPolicyObjectAppProbeClassEntryResult',
|
|
722
726
|
'GetPolicyObjectAppProbeClassEntryMapResult',
|
|
723
727
|
'GetPolicyObjectApplicationListEntryResult',
|
|
@@ -1280,12 +1284,12 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParamete
|
|
|
1280
1284
|
suggest = None
|
|
1281
1285
|
if key == "preferredColor":
|
|
1282
1286
|
suggest = "preferred_color"
|
|
1283
|
-
elif key == "
|
|
1284
|
-
suggest = "
|
|
1287
|
+
elif key == "preferredColorGroupListId":
|
|
1288
|
+
suggest = "preferred_color_group_list_id"
|
|
1285
1289
|
elif key == "preferredColorGroupListVersion":
|
|
1286
1290
|
suggest = "preferred_color_group_list_version"
|
|
1287
|
-
elif key == "
|
|
1288
|
-
suggest = "
|
|
1291
|
+
elif key == "slaClassListId":
|
|
1292
|
+
suggest = "sla_class_list_id"
|
|
1289
1293
|
elif key == "slaClassListVersion":
|
|
1290
1294
|
suggest = "sla_class_list_version"
|
|
1291
1295
|
|
|
@@ -1303,28 +1307,28 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParamete
|
|
|
1303
1307
|
def __init__(__self__, *,
|
|
1304
1308
|
type: _builtins.str,
|
|
1305
1309
|
preferred_color: Optional[_builtins.str] = None,
|
|
1306
|
-
|
|
1310
|
+
preferred_color_group_list_id: Optional[_builtins.str] = None,
|
|
1307
1311
|
preferred_color_group_list_version: Optional[_builtins.int] = None,
|
|
1308
|
-
|
|
1312
|
+
sla_class_list_id: Optional[_builtins.str] = None,
|
|
1309
1313
|
sla_class_list_version: Optional[_builtins.int] = None):
|
|
1310
1314
|
"""
|
|
1311
1315
|
:param _builtins.str type: Type of SLA class parameter
|
|
1312
1316
|
- Choices: `name`, `preferredColor`, `preferredColorGroup`, `strict`, `fallbackToBestPath`
|
|
1313
1317
|
:param _builtins.str preferred_color: preferred color (Single value or multiple values separated by spaces), Attribute conditional on `type` being equal to `preferredColor`
|
|
1314
|
-
:param _builtins.str
|
|
1318
|
+
:param _builtins.str preferred_color_group_list_id: Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
|
|
1315
1319
|
:param _builtins.int preferred_color_group_list_version: Preferred color group list version
|
|
1316
|
-
:param _builtins.str
|
|
1320
|
+
:param _builtins.str sla_class_list_id: SLA class list ID, Attribute conditional on `type` being equal to `name`
|
|
1317
1321
|
:param _builtins.int sla_class_list_version: SLA class list version
|
|
1318
1322
|
"""
|
|
1319
1323
|
pulumi.set(__self__, "type", type)
|
|
1320
1324
|
if preferred_color is not None:
|
|
1321
1325
|
pulumi.set(__self__, "preferred_color", preferred_color)
|
|
1322
|
-
if
|
|
1323
|
-
pulumi.set(__self__, "
|
|
1326
|
+
if preferred_color_group_list_id is not None:
|
|
1327
|
+
pulumi.set(__self__, "preferred_color_group_list_id", preferred_color_group_list_id)
|
|
1324
1328
|
if preferred_color_group_list_version is not None:
|
|
1325
1329
|
pulumi.set(__self__, "preferred_color_group_list_version", preferred_color_group_list_version)
|
|
1326
|
-
if
|
|
1327
|
-
pulumi.set(__self__, "
|
|
1330
|
+
if sla_class_list_id is not None:
|
|
1331
|
+
pulumi.set(__self__, "sla_class_list_id", sla_class_list_id)
|
|
1328
1332
|
if sla_class_list_version is not None:
|
|
1329
1333
|
pulumi.set(__self__, "sla_class_list_version", sla_class_list_version)
|
|
1330
1334
|
|
|
@@ -1346,12 +1350,12 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParamete
|
|
|
1346
1350
|
return pulumi.get(self, "preferred_color")
|
|
1347
1351
|
|
|
1348
1352
|
@_builtins.property
|
|
1349
|
-
@pulumi.getter(name="
|
|
1350
|
-
def
|
|
1353
|
+
@pulumi.getter(name="preferredColorGroupListId")
|
|
1354
|
+
def preferred_color_group_list_id(self) -> Optional[_builtins.str]:
|
|
1351
1355
|
"""
|
|
1352
1356
|
Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
|
|
1353
1357
|
"""
|
|
1354
|
-
return pulumi.get(self, "
|
|
1358
|
+
return pulumi.get(self, "preferred_color_group_list_id")
|
|
1355
1359
|
|
|
1356
1360
|
@_builtins.property
|
|
1357
1361
|
@pulumi.getter(name="preferredColorGroupListVersion")
|
|
@@ -1362,12 +1366,12 @@ class ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParamete
|
|
|
1362
1366
|
return pulumi.get(self, "preferred_color_group_list_version")
|
|
1363
1367
|
|
|
1364
1368
|
@_builtins.property
|
|
1365
|
-
@pulumi.getter(name="
|
|
1366
|
-
def
|
|
1369
|
+
@pulumi.getter(name="slaClassListId")
|
|
1370
|
+
def sla_class_list_id(self) -> Optional[_builtins.str]:
|
|
1367
1371
|
"""
|
|
1368
1372
|
SLA class list ID, Attribute conditional on `type` being equal to `name`
|
|
1369
1373
|
"""
|
|
1370
|
-
return pulumi.get(self, "
|
|
1374
|
+
return pulumi.get(self, "sla_class_list_id")
|
|
1371
1375
|
|
|
1372
1376
|
@_builtins.property
|
|
1373
1377
|
@pulumi.getter(name="slaClassListVersion")
|
|
@@ -16571,8 +16575,8 @@ class CiscoVpnFeatureTemplateIpv4StaticGreRoute(dict):
|
|
|
16571
16575
|
@staticmethod
|
|
16572
16576
|
def __key_warning(key: str):
|
|
16573
16577
|
suggest = None
|
|
16574
|
-
if key == "
|
|
16575
|
-
suggest = "
|
|
16578
|
+
if key == "interfacesVariable":
|
|
16579
|
+
suggest = "interfaces_variable"
|
|
16576
16580
|
elif key == "prefixVariable":
|
|
16577
16581
|
suggest = "prefix_variable"
|
|
16578
16582
|
elif key == "vpnId":
|
|
@@ -16590,25 +16594,25 @@ class CiscoVpnFeatureTemplateIpv4StaticGreRoute(dict):
|
|
|
16590
16594
|
return super().get(key, default)
|
|
16591
16595
|
|
|
16592
16596
|
def __init__(__self__, *,
|
|
16593
|
-
interface_variable: Optional[_builtins.str] = None,
|
|
16594
16597
|
interfaces: Optional[Sequence[_builtins.str]] = None,
|
|
16598
|
+
interfaces_variable: Optional[_builtins.str] = None,
|
|
16595
16599
|
optional: Optional[_builtins.bool] = None,
|
|
16596
16600
|
prefix: Optional[_builtins.str] = None,
|
|
16597
16601
|
prefix_variable: Optional[_builtins.str] = None,
|
|
16598
16602
|
vpn_id: Optional[_builtins.int] = None):
|
|
16599
16603
|
"""
|
|
16600
|
-
:param _builtins.str interface_variable: Variable name
|
|
16601
16604
|
:param Sequence[_builtins.str] interfaces: List of GRE Interfaces
|
|
16605
|
+
:param _builtins.str interfaces_variable: Variable name
|
|
16602
16606
|
:param _builtins.bool optional: Indicates if list item is considered optional.
|
|
16603
16607
|
:param _builtins.str prefix: Prefix
|
|
16604
16608
|
:param _builtins.str prefix_variable: Variable name
|
|
16605
16609
|
:param _builtins.int vpn_id: Destination VPN to resolve the prefix
|
|
16606
16610
|
- Default value: `0`
|
|
16607
16611
|
"""
|
|
16608
|
-
if interface_variable is not None:
|
|
16609
|
-
pulumi.set(__self__, "interface_variable", interface_variable)
|
|
16610
16612
|
if interfaces is not None:
|
|
16611
16613
|
pulumi.set(__self__, "interfaces", interfaces)
|
|
16614
|
+
if interfaces_variable is not None:
|
|
16615
|
+
pulumi.set(__self__, "interfaces_variable", interfaces_variable)
|
|
16612
16616
|
if optional is not None:
|
|
16613
16617
|
pulumi.set(__self__, "optional", optional)
|
|
16614
16618
|
if prefix is not None:
|
|
@@ -16618,14 +16622,6 @@ class CiscoVpnFeatureTemplateIpv4StaticGreRoute(dict):
|
|
|
16618
16622
|
if vpn_id is not None:
|
|
16619
16623
|
pulumi.set(__self__, "vpn_id", vpn_id)
|
|
16620
16624
|
|
|
16621
|
-
@_builtins.property
|
|
16622
|
-
@pulumi.getter(name="interfaceVariable")
|
|
16623
|
-
def interface_variable(self) -> Optional[_builtins.str]:
|
|
16624
|
-
"""
|
|
16625
|
-
Variable name
|
|
16626
|
-
"""
|
|
16627
|
-
return pulumi.get(self, "interface_variable")
|
|
16628
|
-
|
|
16629
16625
|
@_builtins.property
|
|
16630
16626
|
@pulumi.getter
|
|
16631
16627
|
def interfaces(self) -> Optional[Sequence[_builtins.str]]:
|
|
@@ -16634,6 +16630,14 @@ class CiscoVpnFeatureTemplateIpv4StaticGreRoute(dict):
|
|
|
16634
16630
|
"""
|
|
16635
16631
|
return pulumi.get(self, "interfaces")
|
|
16636
16632
|
|
|
16633
|
+
@_builtins.property
|
|
16634
|
+
@pulumi.getter(name="interfacesVariable")
|
|
16635
|
+
def interfaces_variable(self) -> Optional[_builtins.str]:
|
|
16636
|
+
"""
|
|
16637
|
+
Variable name
|
|
16638
|
+
"""
|
|
16639
|
+
return pulumi.get(self, "interfaces_variable")
|
|
16640
|
+
|
|
16637
16641
|
@_builtins.property
|
|
16638
16642
|
@pulumi.getter
|
|
16639
16643
|
def optional(self) -> Optional[_builtins.bool]:
|
|
@@ -16673,8 +16677,8 @@ class CiscoVpnFeatureTemplateIpv4StaticIpsecRoute(dict):
|
|
|
16673
16677
|
@staticmethod
|
|
16674
16678
|
def __key_warning(key: str):
|
|
16675
16679
|
suggest = None
|
|
16676
|
-
if key == "
|
|
16677
|
-
suggest = "
|
|
16680
|
+
if key == "interfacesVariable":
|
|
16681
|
+
suggest = "interfaces_variable"
|
|
16678
16682
|
elif key == "prefixVariable":
|
|
16679
16683
|
suggest = "prefix_variable"
|
|
16680
16684
|
elif key == "vpnId":
|
|
@@ -16692,25 +16696,25 @@ class CiscoVpnFeatureTemplateIpv4StaticIpsecRoute(dict):
|
|
|
16692
16696
|
return super().get(key, default)
|
|
16693
16697
|
|
|
16694
16698
|
def __init__(__self__, *,
|
|
16695
|
-
interface_variable: Optional[_builtins.str] = None,
|
|
16696
16699
|
interfaces: Optional[Sequence[_builtins.str]] = None,
|
|
16700
|
+
interfaces_variable: Optional[_builtins.str] = None,
|
|
16697
16701
|
optional: Optional[_builtins.bool] = None,
|
|
16698
16702
|
prefix: Optional[_builtins.str] = None,
|
|
16699
16703
|
prefix_variable: Optional[_builtins.str] = None,
|
|
16700
16704
|
vpn_id: Optional[_builtins.int] = None):
|
|
16701
16705
|
"""
|
|
16702
|
-
:param _builtins.str interface_variable: Variable name
|
|
16703
16706
|
:param Sequence[_builtins.str] interfaces: List of IPSEC Interfaces (Separated by commas)
|
|
16707
|
+
:param _builtins.str interfaces_variable: Variable name
|
|
16704
16708
|
:param _builtins.bool optional: Indicates if list item is considered optional.
|
|
16705
16709
|
:param _builtins.str prefix: Prefix
|
|
16706
16710
|
:param _builtins.str prefix_variable: Variable name
|
|
16707
16711
|
:param _builtins.int vpn_id: Destination VPN to resolve the prefix
|
|
16708
16712
|
- Default value: `0`
|
|
16709
16713
|
"""
|
|
16710
|
-
if interface_variable is not None:
|
|
16711
|
-
pulumi.set(__self__, "interface_variable", interface_variable)
|
|
16712
16714
|
if interfaces is not None:
|
|
16713
16715
|
pulumi.set(__self__, "interfaces", interfaces)
|
|
16716
|
+
if interfaces_variable is not None:
|
|
16717
|
+
pulumi.set(__self__, "interfaces_variable", interfaces_variable)
|
|
16714
16718
|
if optional is not None:
|
|
16715
16719
|
pulumi.set(__self__, "optional", optional)
|
|
16716
16720
|
if prefix is not None:
|
|
@@ -16720,14 +16724,6 @@ class CiscoVpnFeatureTemplateIpv4StaticIpsecRoute(dict):
|
|
|
16720
16724
|
if vpn_id is not None:
|
|
16721
16725
|
pulumi.set(__self__, "vpn_id", vpn_id)
|
|
16722
16726
|
|
|
16723
|
-
@_builtins.property
|
|
16724
|
-
@pulumi.getter(name="interfaceVariable")
|
|
16725
|
-
def interface_variable(self) -> Optional[_builtins.str]:
|
|
16726
|
-
"""
|
|
16727
|
-
Variable name
|
|
16728
|
-
"""
|
|
16729
|
-
return pulumi.get(self, "interface_variable")
|
|
16730
|
-
|
|
16731
16727
|
@_builtins.property
|
|
16732
16728
|
@pulumi.getter
|
|
16733
16729
|
def interfaces(self) -> Optional[Sequence[_builtins.str]]:
|
|
@@ -16736,6 +16732,14 @@ class CiscoVpnFeatureTemplateIpv4StaticIpsecRoute(dict):
|
|
|
16736
16732
|
"""
|
|
16737
16733
|
return pulumi.get(self, "interfaces")
|
|
16738
16734
|
|
|
16735
|
+
@_builtins.property
|
|
16736
|
+
@pulumi.getter(name="interfacesVariable")
|
|
16737
|
+
def interfaces_variable(self) -> Optional[_builtins.str]:
|
|
16738
|
+
"""
|
|
16739
|
+
Variable name
|
|
16740
|
+
"""
|
|
16741
|
+
return pulumi.get(self, "interfaces_variable")
|
|
16742
|
+
|
|
16739
16743
|
@_builtins.property
|
|
16740
16744
|
@pulumi.getter
|
|
16741
16745
|
def optional(self) -> Optional[_builtins.bool]:
|
|
@@ -22138,7 +22142,7 @@ class ConfigurationGroupTopologyDeviceUnsupportedFeature(dict):
|
|
|
22138
22142
|
"""
|
|
22139
22143
|
:param _builtins.str parcel_id: Parcel ID
|
|
22140
22144
|
:param _builtins.str parcel_type: Parcel type
|
|
22141
|
-
- Choices: `wan/vpn/interface/gre`, `wan/vpn/interface/ethernet`, `wan/vpn/interface/cellular`, `wan/vpn/interface/ipsec`, `wan/vpn/interface/serial`, `routing/ospf`, `lan/vpn/interface/ethernet`, `lan/vpn/interface/svi`, `lan/vpn/interface/ipsec`, `lan/vpn`
|
|
22145
|
+
- Choices: `wan/vpn/interface/gre`, `wan/vpn/interface/ethernet`, `wan/vpn/interface/cellular`, `wan/vpn/interface/ipsec`, `wan/vpn/interface/serial`, `route-policy`, `routing/bgp`, `routing/ospf`, `lan/vpn/interface/ethernet`, `lan/vpn/interface/svi`, `lan/vpn/interface/ipsec`, `lan/vpn`
|
|
22142
22146
|
"""
|
|
22143
22147
|
if parcel_id is not None:
|
|
22144
22148
|
pulumi.set(__self__, "parcel_id", parcel_id)
|
|
@@ -22158,7 +22162,7 @@ class ConfigurationGroupTopologyDeviceUnsupportedFeature(dict):
|
|
|
22158
22162
|
def parcel_type(self) -> Optional[_builtins.str]:
|
|
22159
22163
|
"""
|
|
22160
22164
|
Parcel type
|
|
22161
|
-
- Choices: `wan/vpn/interface/gre`, `wan/vpn/interface/ethernet`, `wan/vpn/interface/cellular`, `wan/vpn/interface/ipsec`, `wan/vpn/interface/serial`, `routing/ospf`, `lan/vpn/interface/ethernet`, `lan/vpn/interface/svi`, `lan/vpn/interface/ipsec`, `lan/vpn`
|
|
22165
|
+
- Choices: `wan/vpn/interface/gre`, `wan/vpn/interface/ethernet`, `wan/vpn/interface/cellular`, `wan/vpn/interface/ipsec`, `wan/vpn/interface/serial`, `route-policy`, `routing/bgp`, `routing/ospf`, `lan/vpn/interface/ethernet`, `lan/vpn/interface/svi`, `lan/vpn/interface/ipsec`, `lan/vpn`
|
|
22162
22166
|
"""
|
|
22163
22167
|
return pulumi.get(self, "parcel_type")
|
|
22164
22168
|
|
|
@@ -24693,6 +24697,8 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24693
24697
|
suggest = "destination_data_ipv4_prefix_list_version"
|
|
24694
24698
|
elif key == "destinationIp":
|
|
24695
24699
|
suggest = "destination_ip"
|
|
24700
|
+
elif key == "destinationIpVariable":
|
|
24701
|
+
suggest = "destination_ip_variable"
|
|
24696
24702
|
elif key == "destinationPorts":
|
|
24697
24703
|
suggest = "destination_ports"
|
|
24698
24704
|
elif key == "icmpMessage":
|
|
@@ -24705,6 +24711,8 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24705
24711
|
suggest = "source_data_ipv4_prefix_list_version"
|
|
24706
24712
|
elif key == "sourceIp":
|
|
24707
24713
|
suggest = "source_ip"
|
|
24714
|
+
elif key == "sourceIpVariable":
|
|
24715
|
+
suggest = "source_ip_variable"
|
|
24708
24716
|
elif key == "sourcePorts":
|
|
24709
24717
|
suggest = "source_ports"
|
|
24710
24718
|
|
|
@@ -24726,8 +24734,9 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24726
24734
|
destination_data_ipv4_prefix_list_id: Optional[_builtins.str] = None,
|
|
24727
24735
|
destination_data_ipv4_prefix_list_version: Optional[_builtins.int] = None,
|
|
24728
24736
|
destination_ip: Optional[_builtins.str] = None,
|
|
24737
|
+
destination_ip_variable: Optional[_builtins.str] = None,
|
|
24729
24738
|
destination_ports: Optional[_builtins.str] = None,
|
|
24730
|
-
dscp: Optional[_builtins.
|
|
24739
|
+
dscp: Optional[_builtins.str] = None,
|
|
24731
24740
|
icmp_message: Optional[_builtins.str] = None,
|
|
24732
24741
|
packet_length: Optional[_builtins.int] = None,
|
|
24733
24742
|
priority: Optional[_builtins.str] = None,
|
|
@@ -24735,6 +24744,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24735
24744
|
source_data_ipv4_prefix_list_id: Optional[_builtins.str] = None,
|
|
24736
24745
|
source_data_ipv4_prefix_list_version: Optional[_builtins.int] = None,
|
|
24737
24746
|
source_ip: Optional[_builtins.str] = None,
|
|
24747
|
+
source_ip_variable: Optional[_builtins.str] = None,
|
|
24738
24748
|
source_ports: Optional[_builtins.str] = None,
|
|
24739
24749
|
tcp: Optional[_builtins.str] = None):
|
|
24740
24750
|
"""
|
|
@@ -24745,9 +24755,9 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24745
24755
|
:param _builtins.str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
|
|
24746
24756
|
:param _builtins.int destination_data_ipv4_prefix_list_version: Destination data IPv4 prefix list version
|
|
24747
24757
|
:param _builtins.str destination_ip: Destination IP prefix, Attribute conditional on `type` being equal to `destinationIp`
|
|
24758
|
+
:param _builtins.str destination_ip_variable: Destination IP prefix variable, Attribute conditional on `type` being equal to `destinationIp`
|
|
24748
24759
|
:param _builtins.str destination_ports: Destination ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `destinationPort`
|
|
24749
|
-
:param _builtins.
|
|
24750
|
-
- Range: `0`-`63`
|
|
24760
|
+
:param _builtins.str dscp: DSCP value, Attribute conditional on `type` being equal to `dscp`
|
|
24751
24761
|
:param _builtins.str icmp_message: ICMP Message, Attribute conditional on `type` being equal to `icmpMessage`
|
|
24752
24762
|
:param _builtins.int packet_length: Packet length, Attribute conditional on `type` being equal to `packetLength`
|
|
24753
24763
|
- Range: `0`-`65535`
|
|
@@ -24757,6 +24767,7 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24757
24767
|
:param _builtins.str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
|
|
24758
24768
|
:param _builtins.int source_data_ipv4_prefix_list_version: Source data IPv4 prefix list version
|
|
24759
24769
|
:param _builtins.str source_ip: Source IP prefix, Attribute conditional on `type` being equal to `sourceIp`
|
|
24770
|
+
:param _builtins.str source_ip_variable: Source IP prefix variable, Attribute conditional on `type` being equal to `sourceIp`
|
|
24760
24771
|
:param _builtins.str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
|
|
24761
24772
|
:param _builtins.str tcp: TCP parameters, Attribute conditional on `type` being equal to `tcp`
|
|
24762
24773
|
- Choices: `syn`
|
|
@@ -24772,6 +24783,8 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24772
24783
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_version", destination_data_ipv4_prefix_list_version)
|
|
24773
24784
|
if destination_ip is not None:
|
|
24774
24785
|
pulumi.set(__self__, "destination_ip", destination_ip)
|
|
24786
|
+
if destination_ip_variable is not None:
|
|
24787
|
+
pulumi.set(__self__, "destination_ip_variable", destination_ip_variable)
|
|
24775
24788
|
if destination_ports is not None:
|
|
24776
24789
|
pulumi.set(__self__, "destination_ports", destination_ports)
|
|
24777
24790
|
if dscp is not None:
|
|
@@ -24790,6 +24803,8 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24790
24803
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_version", source_data_ipv4_prefix_list_version)
|
|
24791
24804
|
if source_ip is not None:
|
|
24792
24805
|
pulumi.set(__self__, "source_ip", source_ip)
|
|
24806
|
+
if source_ip_variable is not None:
|
|
24807
|
+
pulumi.set(__self__, "source_ip_variable", source_ip_variable)
|
|
24793
24808
|
if source_ports is not None:
|
|
24794
24809
|
pulumi.set(__self__, "source_ports", source_ports)
|
|
24795
24810
|
if tcp is not None:
|
|
@@ -24844,6 +24859,14 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24844
24859
|
"""
|
|
24845
24860
|
return pulumi.get(self, "destination_ip")
|
|
24846
24861
|
|
|
24862
|
+
@_builtins.property
|
|
24863
|
+
@pulumi.getter(name="destinationIpVariable")
|
|
24864
|
+
def destination_ip_variable(self) -> Optional[_builtins.str]:
|
|
24865
|
+
"""
|
|
24866
|
+
Destination IP prefix variable, Attribute conditional on `type` being equal to `destinationIp`
|
|
24867
|
+
"""
|
|
24868
|
+
return pulumi.get(self, "destination_ip_variable")
|
|
24869
|
+
|
|
24847
24870
|
@_builtins.property
|
|
24848
24871
|
@pulumi.getter(name="destinationPorts")
|
|
24849
24872
|
def destination_ports(self) -> Optional[_builtins.str]:
|
|
@@ -24854,10 +24877,9 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24854
24877
|
|
|
24855
24878
|
@_builtins.property
|
|
24856
24879
|
@pulumi.getter
|
|
24857
|
-
def dscp(self) -> Optional[_builtins.
|
|
24880
|
+
def dscp(self) -> Optional[_builtins.str]:
|
|
24858
24881
|
"""
|
|
24859
24882
|
DSCP value, Attribute conditional on `type` being equal to `dscp`
|
|
24860
|
-
- Range: `0`-`63`
|
|
24861
24883
|
"""
|
|
24862
24884
|
return pulumi.get(self, "dscp")
|
|
24863
24885
|
|
|
@@ -24919,6 +24941,14 @@ class Ipv4AclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
24919
24941
|
"""
|
|
24920
24942
|
return pulumi.get(self, "source_ip")
|
|
24921
24943
|
|
|
24944
|
+
@_builtins.property
|
|
24945
|
+
@pulumi.getter(name="sourceIpVariable")
|
|
24946
|
+
def source_ip_variable(self) -> Optional[_builtins.str]:
|
|
24947
|
+
"""
|
|
24948
|
+
Source IP prefix variable, Attribute conditional on `type` being equal to `sourceIp`
|
|
24949
|
+
"""
|
|
24950
|
+
return pulumi.get(self, "source_ip_variable")
|
|
24951
|
+
|
|
24922
24952
|
@_builtins.property
|
|
24923
24953
|
@pulumi.getter(name="sourcePorts")
|
|
24924
24954
|
def source_ports(self) -> Optional[_builtins.str]:
|
|
@@ -25087,6 +25117,8 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
25087
25117
|
suggest = "destination_data_ipv4_prefix_list_version"
|
|
25088
25118
|
elif key == "destinationIp":
|
|
25089
25119
|
suggest = "destination_ip"
|
|
25120
|
+
elif key == "destinationIpVariable":
|
|
25121
|
+
suggest = "destination_ip_variable"
|
|
25090
25122
|
elif key == "destinationPort":
|
|
25091
25123
|
suggest = "destination_port"
|
|
25092
25124
|
elif key == "sourceDataIpv4PrefixListId":
|
|
@@ -25095,6 +25127,8 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
25095
25127
|
suggest = "source_data_ipv4_prefix_list_version"
|
|
25096
25128
|
elif key == "sourceIp":
|
|
25097
25129
|
suggest = "source_ip"
|
|
25130
|
+
elif key == "sourceIpVariable":
|
|
25131
|
+
suggest = "source_ip_variable"
|
|
25098
25132
|
elif key == "sourcePorts":
|
|
25099
25133
|
suggest = "source_ports"
|
|
25100
25134
|
|
|
@@ -25114,10 +25148,12 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
25114
25148
|
destination_data_ipv4_prefix_list_id: Optional[_builtins.str] = None,
|
|
25115
25149
|
destination_data_ipv4_prefix_list_version: Optional[_builtins.int] = None,
|
|
25116
25150
|
destination_ip: Optional[_builtins.str] = None,
|
|
25151
|
+
destination_ip_variable: Optional[_builtins.str] = None,
|
|
25117
25152
|
destination_port: Optional[_builtins.int] = None,
|
|
25118
25153
|
source_data_ipv4_prefix_list_id: Optional[_builtins.str] = None,
|
|
25119
25154
|
source_data_ipv4_prefix_list_version: Optional[_builtins.int] = None,
|
|
25120
25155
|
source_ip: Optional[_builtins.str] = None,
|
|
25156
|
+
source_ip_variable: Optional[_builtins.str] = None,
|
|
25121
25157
|
source_ports: Optional[_builtins.str] = None):
|
|
25122
25158
|
"""
|
|
25123
25159
|
:param _builtins.str type: Type of match entry
|
|
@@ -25125,11 +25161,13 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
25125
25161
|
:param _builtins.str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID, Attribute conditional on `type` being equal to `destinationDataPrefixList`
|
|
25126
25162
|
:param _builtins.int destination_data_ipv4_prefix_list_version: Destination data IPv4 prefix list version
|
|
25127
25163
|
:param _builtins.str destination_ip: Destination IP prefix, Attribute conditional on `type` being equal to `destinationIp`
|
|
25164
|
+
:param _builtins.str destination_ip_variable: Destination IP prefix variable, Attribute conditional on `type` being equal to `destinationIp`
|
|
25128
25165
|
:param _builtins.int destination_port: Destination port, only `22` and `161` supported, Attribute conditional on `type` being equal to `destinationPort`
|
|
25129
25166
|
- Range: `0`-`65535`
|
|
25130
25167
|
:param _builtins.str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID, Attribute conditional on `type` being equal to `sourceDataPrefixList`
|
|
25131
25168
|
:param _builtins.int source_data_ipv4_prefix_list_version: Source data IPv4 prefix list version
|
|
25132
25169
|
:param _builtins.str source_ip: Source IP prefix, Attribute conditional on `type` being equal to `sourceIp`
|
|
25170
|
+
:param _builtins.str source_ip_variable: Source IP prefix variable, Attribute conditional on `type` being equal to `sourceIp`
|
|
25133
25171
|
:param _builtins.str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
|
|
25134
25172
|
"""
|
|
25135
25173
|
pulumi.set(__self__, "type", type)
|
|
@@ -25139,6 +25177,8 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
25139
25177
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_version", destination_data_ipv4_prefix_list_version)
|
|
25140
25178
|
if destination_ip is not None:
|
|
25141
25179
|
pulumi.set(__self__, "destination_ip", destination_ip)
|
|
25180
|
+
if destination_ip_variable is not None:
|
|
25181
|
+
pulumi.set(__self__, "destination_ip_variable", destination_ip_variable)
|
|
25142
25182
|
if destination_port is not None:
|
|
25143
25183
|
pulumi.set(__self__, "destination_port", destination_port)
|
|
25144
25184
|
if source_data_ipv4_prefix_list_id is not None:
|
|
@@ -25147,6 +25187,8 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
25147
25187
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_version", source_data_ipv4_prefix_list_version)
|
|
25148
25188
|
if source_ip is not None:
|
|
25149
25189
|
pulumi.set(__self__, "source_ip", source_ip)
|
|
25190
|
+
if source_ip_variable is not None:
|
|
25191
|
+
pulumi.set(__self__, "source_ip_variable", source_ip_variable)
|
|
25150
25192
|
if source_ports is not None:
|
|
25151
25193
|
pulumi.set(__self__, "source_ports", source_ports)
|
|
25152
25194
|
|
|
@@ -25183,6 +25225,14 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
25183
25225
|
"""
|
|
25184
25226
|
return pulumi.get(self, "destination_ip")
|
|
25185
25227
|
|
|
25228
|
+
@_builtins.property
|
|
25229
|
+
@pulumi.getter(name="destinationIpVariable")
|
|
25230
|
+
def destination_ip_variable(self) -> Optional[_builtins.str]:
|
|
25231
|
+
"""
|
|
25232
|
+
Destination IP prefix variable, Attribute conditional on `type` being equal to `destinationIp`
|
|
25233
|
+
"""
|
|
25234
|
+
return pulumi.get(self, "destination_ip_variable")
|
|
25235
|
+
|
|
25186
25236
|
@_builtins.property
|
|
25187
25237
|
@pulumi.getter(name="destinationPort")
|
|
25188
25238
|
def destination_port(self) -> Optional[_builtins.int]:
|
|
@@ -25216,6 +25266,14 @@ class Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry(dict):
|
|
|
25216
25266
|
"""
|
|
25217
25267
|
return pulumi.get(self, "source_ip")
|
|
25218
25268
|
|
|
25269
|
+
@_builtins.property
|
|
25270
|
+
@pulumi.getter(name="sourceIpVariable")
|
|
25271
|
+
def source_ip_variable(self) -> Optional[_builtins.str]:
|
|
25272
|
+
"""
|
|
25273
|
+
Source IP prefix variable, Attribute conditional on `type` being equal to `sourceIp`
|
|
25274
|
+
"""
|
|
25275
|
+
return pulumi.get(self, "source_ip_variable")
|
|
25276
|
+
|
|
25219
25277
|
@_builtins.property
|
|
25220
25278
|
@pulumi.getter(name="sourcePorts")
|
|
25221
25279
|
def source_ports(self) -> Optional[_builtins.str]:
|
|
@@ -26740,6 +26798,110 @@ class OtherUcseFeatureInterface(dict):
|
|
|
26740
26798
|
return pulumi.get(self, "ucse_interface_vpn_variable")
|
|
26741
26799
|
|
|
26742
26800
|
|
|
26801
|
+
@pulumi.output_type
|
|
26802
|
+
class PolicyGroupDevice(dict):
|
|
26803
|
+
def __init__(__self__, *,
|
|
26804
|
+
deploy: Optional[_builtins.bool] = None,
|
|
26805
|
+
id: Optional[_builtins.str] = None,
|
|
26806
|
+
variables: Optional[Sequence['outputs.PolicyGroupDeviceVariable']] = None):
|
|
26807
|
+
"""
|
|
26808
|
+
:param _builtins.bool deploy: Deploy to device if enabled.
|
|
26809
|
+
- Default value: `false`
|
|
26810
|
+
:param _builtins.str id: Device ID
|
|
26811
|
+
:param Sequence['PolicyGroupDeviceVariableArgs'] variables: List of variables
|
|
26812
|
+
"""
|
|
26813
|
+
if deploy is not None:
|
|
26814
|
+
pulumi.set(__self__, "deploy", deploy)
|
|
26815
|
+
if id is not None:
|
|
26816
|
+
pulumi.set(__self__, "id", id)
|
|
26817
|
+
if variables is not None:
|
|
26818
|
+
pulumi.set(__self__, "variables", variables)
|
|
26819
|
+
|
|
26820
|
+
@_builtins.property
|
|
26821
|
+
@pulumi.getter
|
|
26822
|
+
def deploy(self) -> Optional[_builtins.bool]:
|
|
26823
|
+
"""
|
|
26824
|
+
Deploy to device if enabled.
|
|
26825
|
+
- Default value: `false`
|
|
26826
|
+
"""
|
|
26827
|
+
return pulumi.get(self, "deploy")
|
|
26828
|
+
|
|
26829
|
+
@_builtins.property
|
|
26830
|
+
@pulumi.getter
|
|
26831
|
+
def id(self) -> Optional[_builtins.str]:
|
|
26832
|
+
"""
|
|
26833
|
+
Device ID
|
|
26834
|
+
"""
|
|
26835
|
+
return pulumi.get(self, "id")
|
|
26836
|
+
|
|
26837
|
+
@_builtins.property
|
|
26838
|
+
@pulumi.getter
|
|
26839
|
+
def variables(self) -> Optional[Sequence['outputs.PolicyGroupDeviceVariable']]:
|
|
26840
|
+
"""
|
|
26841
|
+
List of variables
|
|
26842
|
+
"""
|
|
26843
|
+
return pulumi.get(self, "variables")
|
|
26844
|
+
|
|
26845
|
+
|
|
26846
|
+
@pulumi.output_type
|
|
26847
|
+
class PolicyGroupDeviceVariable(dict):
|
|
26848
|
+
@staticmethod
|
|
26849
|
+
def __key_warning(key: str):
|
|
26850
|
+
suggest = None
|
|
26851
|
+
if key == "listValues":
|
|
26852
|
+
suggest = "list_values"
|
|
26853
|
+
|
|
26854
|
+
if suggest:
|
|
26855
|
+
pulumi.log.warn(f"Key '{key}' not found in PolicyGroupDeviceVariable. Access the value via the '{suggest}' property getter instead.")
|
|
26856
|
+
|
|
26857
|
+
def __getitem__(self, key: str) -> Any:
|
|
26858
|
+
PolicyGroupDeviceVariable.__key_warning(key)
|
|
26859
|
+
return super().__getitem__(key)
|
|
26860
|
+
|
|
26861
|
+
def get(self, key: str, default = None) -> Any:
|
|
26862
|
+
PolicyGroupDeviceVariable.__key_warning(key)
|
|
26863
|
+
return super().get(key, default)
|
|
26864
|
+
|
|
26865
|
+
def __init__(__self__, *,
|
|
26866
|
+
name: _builtins.str,
|
|
26867
|
+
list_values: Optional[Sequence[_builtins.str]] = None,
|
|
26868
|
+
value: Optional[_builtins.str] = None):
|
|
26869
|
+
"""
|
|
26870
|
+
:param _builtins.str name: Variable name
|
|
26871
|
+
:param Sequence[_builtins.str] list_values: Use this instead of `value` in case value is of type `List`.
|
|
26872
|
+
:param _builtins.str value: Variable value
|
|
26873
|
+
"""
|
|
26874
|
+
pulumi.set(__self__, "name", name)
|
|
26875
|
+
if list_values is not None:
|
|
26876
|
+
pulumi.set(__self__, "list_values", list_values)
|
|
26877
|
+
if value is not None:
|
|
26878
|
+
pulumi.set(__self__, "value", value)
|
|
26879
|
+
|
|
26880
|
+
@_builtins.property
|
|
26881
|
+
@pulumi.getter
|
|
26882
|
+
def name(self) -> _builtins.str:
|
|
26883
|
+
"""
|
|
26884
|
+
Variable name
|
|
26885
|
+
"""
|
|
26886
|
+
return pulumi.get(self, "name")
|
|
26887
|
+
|
|
26888
|
+
@_builtins.property
|
|
26889
|
+
@pulumi.getter(name="listValues")
|
|
26890
|
+
def list_values(self) -> Optional[Sequence[_builtins.str]]:
|
|
26891
|
+
"""
|
|
26892
|
+
Use this instead of `value` in case value is of type `List`.
|
|
26893
|
+
"""
|
|
26894
|
+
return pulumi.get(self, "list_values")
|
|
26895
|
+
|
|
26896
|
+
@_builtins.property
|
|
26897
|
+
@pulumi.getter
|
|
26898
|
+
def value(self) -> Optional[_builtins.str]:
|
|
26899
|
+
"""
|
|
26900
|
+
Variable value
|
|
26901
|
+
"""
|
|
26902
|
+
return pulumi.get(self, "value")
|
|
26903
|
+
|
|
26904
|
+
|
|
26743
26905
|
@pulumi.output_type
|
|
26744
26906
|
class PolicyObjectAppProbeClassEntry(dict):
|
|
26745
26907
|
@staticmethod
|
|
@@ -28458,6 +28620,8 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
|
|
|
28458
28620
|
suggest = "atomic_aggregate"
|
|
28459
28621
|
elif key == "communityAdditive":
|
|
28460
28622
|
suggest = "community_additive"
|
|
28623
|
+
elif key == "communityVariable":
|
|
28624
|
+
suggest = "community_variable"
|
|
28461
28625
|
elif key == "localPreference":
|
|
28462
28626
|
suggest = "local_preference"
|
|
28463
28627
|
elif key == "metricType":
|
|
@@ -28489,6 +28653,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
|
|
|
28489
28653
|
atomic_aggregate: Optional[_builtins.bool] = None,
|
|
28490
28654
|
community: Optional[_builtins.str] = None,
|
|
28491
28655
|
community_additive: Optional[_builtins.bool] = None,
|
|
28656
|
+
community_variable: Optional[_builtins.str] = None,
|
|
28492
28657
|
local_preference: Optional[_builtins.int] = None,
|
|
28493
28658
|
metric: Optional[_builtins.int] = None,
|
|
28494
28659
|
metric_type: Optional[_builtins.str] = None,
|
|
@@ -28509,6 +28674,7 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
|
|
|
28509
28674
|
:param _builtins.bool atomic_aggregate: Atomic aggregate, Attribute conditional on `type` being equal to `atomicAggregate`
|
|
28510
28675
|
:param _builtins.str community: Community value, e.g. `1000:10000` or `internet` or `local-AS`, Attribute conditional on `type` being equal to `community`
|
|
28511
28676
|
:param _builtins.bool community_additive: Community additive, Attribute conditional on `type` being equal to `communityAdditive`
|
|
28677
|
+
:param _builtins.str community_variable: Community variable, Attribute conditional on `type` being equal to `community`
|
|
28512
28678
|
:param _builtins.int local_preference: Local preference, Attribute conditional on `type` being equal to `localPreference`
|
|
28513
28679
|
- Range: `0`-`4294967295`
|
|
28514
28680
|
:param _builtins.int metric: Metric, Attribute conditional on `type` being equal to `metric`
|
|
@@ -28541,6 +28707,8 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
|
|
|
28541
28707
|
pulumi.set(__self__, "community", community)
|
|
28542
28708
|
if community_additive is not None:
|
|
28543
28709
|
pulumi.set(__self__, "community_additive", community_additive)
|
|
28710
|
+
if community_variable is not None:
|
|
28711
|
+
pulumi.set(__self__, "community_variable", community_variable)
|
|
28544
28712
|
if local_preference is not None:
|
|
28545
28713
|
pulumi.set(__self__, "local_preference", local_preference)
|
|
28546
28714
|
if metric is not None:
|
|
@@ -28626,6 +28794,14 @@ class RoutePolicyDefinitionSequenceActionEntry(dict):
|
|
|
28626
28794
|
"""
|
|
28627
28795
|
return pulumi.get(self, "community_additive")
|
|
28628
28796
|
|
|
28797
|
+
@_builtins.property
|
|
28798
|
+
@pulumi.getter(name="communityVariable")
|
|
28799
|
+
def community_variable(self) -> Optional[_builtins.str]:
|
|
28800
|
+
"""
|
|
28801
|
+
Community variable, Attribute conditional on `type` being equal to `community`
|
|
28802
|
+
"""
|
|
28803
|
+
return pulumi.get(self, "community_variable")
|
|
28804
|
+
|
|
28629
28805
|
@_builtins.property
|
|
28630
28806
|
@pulumi.getter(name="localPreference")
|
|
28631
28807
|
def local_preference(self) -> Optional[_builtins.int]:
|
|
@@ -28723,6 +28899,8 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
|
|
|
28723
28899
|
suggest = "community_list_versions"
|
|
28724
28900
|
elif key == "expandedCommunityListId":
|
|
28725
28901
|
suggest = "expanded_community_list_id"
|
|
28902
|
+
elif key == "expandedCommunityListVariable":
|
|
28903
|
+
suggest = "expanded_community_list_variable"
|
|
28726
28904
|
elif key == "expandedCommunityListVersion":
|
|
28727
28905
|
suggest = "expanded_community_list_version"
|
|
28728
28906
|
elif key == "extendedCommunityListId":
|
|
@@ -28763,6 +28941,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
|
|
|
28763
28941
|
community_list_match_flag: Optional[_builtins.str] = None,
|
|
28764
28942
|
community_list_versions: Optional[Sequence[_builtins.str]] = None,
|
|
28765
28943
|
expanded_community_list_id: Optional[_builtins.str] = None,
|
|
28944
|
+
expanded_community_list_variable: Optional[_builtins.str] = None,
|
|
28766
28945
|
expanded_community_list_version: Optional[_builtins.int] = None,
|
|
28767
28946
|
extended_community_list_id: Optional[_builtins.str] = None,
|
|
28768
28947
|
extended_community_list_version: Optional[_builtins.int] = None,
|
|
@@ -28778,7 +28957,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
|
|
|
28778
28957
|
prefix_list_version: Optional[_builtins.int] = None):
|
|
28779
28958
|
"""
|
|
28780
28959
|
:param _builtins.str type: Type of match entry
|
|
28781
|
-
- Choices: `address`, `asPath`, `advancedCommunity`, `expandedCommunity`, `extCommunity`, `localPreference`, `metric`, `nextHop`, `origin`, `peer`, `ompTag`, `ospfTag`
|
|
28960
|
+
- Choices: `address`, `asPath`, `advancedCommunity`, `expandedCommunity`, `expandedCommunityInline`, `extCommunity`, `localPreference`, `metric`, `nextHop`, `origin`, `peer`, `ompTag`, `ospfTag`
|
|
28782
28961
|
:param _builtins.str as_path_list_id: AS path list ID, Attribute conditional on `type` being equal to `asPath`
|
|
28783
28962
|
:param _builtins.int as_path_list_version: AS path list version
|
|
28784
28963
|
:param Sequence[_builtins.str] community_list_ids: Community list IDs, Attribute conditional on `type` being equal to `advancedCommunity`
|
|
@@ -28786,6 +28965,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
|
|
|
28786
28965
|
- Choices: `and`, `or`, `exact`
|
|
28787
28966
|
:param Sequence[_builtins.str] community_list_versions: Community list versions
|
|
28788
28967
|
:param _builtins.str expanded_community_list_id: Expanded community list ID, Attribute conditional on `type` being equal to `expandedCommunity`
|
|
28968
|
+
:param _builtins.str expanded_community_list_variable: Expanded community list variable, Attribute conditional on `type` being equal to `expandedCommunityInline`
|
|
28789
28969
|
:param _builtins.int expanded_community_list_version: Expanded community list version
|
|
28790
28970
|
:param _builtins.str extended_community_list_id: Extended community list ID, Attribute conditional on `type` being equal to `extCommunity`
|
|
28791
28971
|
:param _builtins.int extended_community_list_version: Extended community list version
|
|
@@ -28818,6 +28998,8 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
|
|
|
28818
28998
|
pulumi.set(__self__, "community_list_versions", community_list_versions)
|
|
28819
28999
|
if expanded_community_list_id is not None:
|
|
28820
29000
|
pulumi.set(__self__, "expanded_community_list_id", expanded_community_list_id)
|
|
29001
|
+
if expanded_community_list_variable is not None:
|
|
29002
|
+
pulumi.set(__self__, "expanded_community_list_variable", expanded_community_list_variable)
|
|
28821
29003
|
if expanded_community_list_version is not None:
|
|
28822
29004
|
pulumi.set(__self__, "expanded_community_list_version", expanded_community_list_version)
|
|
28823
29005
|
if extended_community_list_id is not None:
|
|
@@ -28850,7 +29032,7 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
|
|
|
28850
29032
|
def type(self) -> _builtins.str:
|
|
28851
29033
|
"""
|
|
28852
29034
|
Type of match entry
|
|
28853
|
-
- Choices: `address`, `asPath`, `advancedCommunity`, `expandedCommunity`, `extCommunity`, `localPreference`, `metric`, `nextHop`, `origin`, `peer`, `ompTag`, `ospfTag`
|
|
29035
|
+
- Choices: `address`, `asPath`, `advancedCommunity`, `expandedCommunity`, `expandedCommunityInline`, `extCommunity`, `localPreference`, `metric`, `nextHop`, `origin`, `peer`, `ompTag`, `ospfTag`
|
|
28854
29036
|
"""
|
|
28855
29037
|
return pulumi.get(self, "type")
|
|
28856
29038
|
|
|
@@ -28903,6 +29085,14 @@ class RoutePolicyDefinitionSequenceMatchEntry(dict):
|
|
|
28903
29085
|
"""
|
|
28904
29086
|
return pulumi.get(self, "expanded_community_list_id")
|
|
28905
29087
|
|
|
29088
|
+
@_builtins.property
|
|
29089
|
+
@pulumi.getter(name="expandedCommunityListVariable")
|
|
29090
|
+
def expanded_community_list_variable(self) -> Optional[_builtins.str]:
|
|
29091
|
+
"""
|
|
29092
|
+
Expanded community list variable, Attribute conditional on `type` being equal to `expandedCommunityInline`
|
|
29093
|
+
"""
|
|
29094
|
+
return pulumi.get(self, "expanded_community_list_variable")
|
|
29095
|
+
|
|
28906
29096
|
@_builtins.property
|
|
28907
29097
|
@pulumi.getter(name="expandedCommunityListVersion")
|
|
28908
29098
|
def expanded_community_list_version(self) -> Optional[_builtins.int]:
|
|
@@ -31826,9 +32016,7 @@ class ServiceLanVpnFeatureIpv4StaticRoute(dict):
|
|
|
31826
32016
|
@staticmethod
|
|
31827
32017
|
def __key_warning(key: str):
|
|
31828
32018
|
suggest = None
|
|
31829
|
-
if key == "
|
|
31830
|
-
suggest = "gateway_dhcp"
|
|
31831
|
-
elif key == "networkAddress":
|
|
32019
|
+
if key == "networkAddress":
|
|
31832
32020
|
suggest = "network_address"
|
|
31833
32021
|
elif key == "networkAddressVariable":
|
|
31834
32022
|
suggest = "network_address_variable"
|
|
@@ -31853,7 +32041,8 @@ class ServiceLanVpnFeatureIpv4StaticRoute(dict):
|
|
|
31853
32041
|
return super().get(key, default)
|
|
31854
32042
|
|
|
31855
32043
|
def __init__(__self__, *,
|
|
31856
|
-
|
|
32044
|
+
dhcp: Optional[_builtins.bool] = None,
|
|
32045
|
+
gateway: Optional[_builtins.str] = None,
|
|
31857
32046
|
network_address: Optional[_builtins.str] = None,
|
|
31858
32047
|
network_address_variable: Optional[_builtins.str] = None,
|
|
31859
32048
|
next_hop_with_trackers: Optional[Sequence['outputs.ServiceLanVpnFeatureIpv4StaticRouteNextHopWithTracker']] = None,
|
|
@@ -31863,19 +32052,23 @@ class ServiceLanVpnFeatureIpv4StaticRoute(dict):
|
|
|
31863
32052
|
subnet_mask_variable: Optional[_builtins.str] = None,
|
|
31864
32053
|
vpn: Optional[_builtins.bool] = None):
|
|
31865
32054
|
"""
|
|
31866
|
-
:param _builtins.bool
|
|
32055
|
+
:param _builtins.bool dhcp: IPv4 Route Gateway DHCP, Attribute conditional on `gateway` being equal to `dhcp`
|
|
32056
|
+
:param _builtins.str gateway: Gateway type
|
|
32057
|
+
- Choices: `nextHop`, `null0`, `vpn`, `dhcp`
|
|
31867
32058
|
:param _builtins.str network_address: IP Address
|
|
31868
32059
|
:param _builtins.str network_address_variable: Variable name
|
|
31869
|
-
:param Sequence['ServiceLanVpnFeatureIpv4StaticRouteNextHopWithTrackerArgs'] next_hop_with_trackers: IPv4 Route Gateway Next Hop with Tracker
|
|
31870
|
-
:param Sequence['ServiceLanVpnFeatureIpv4StaticRouteNextHopArgs'] next_hops: IPv4 Route Gateway Next Hop
|
|
31871
|
-
:param _builtins.bool null0: IPv4 Route Gateway Next Hop
|
|
32060
|
+
:param Sequence['ServiceLanVpnFeatureIpv4StaticRouteNextHopWithTrackerArgs'] next_hop_with_trackers: IPv4 Route Gateway Next Hop with Tracker, Attribute conditional on `gateway` being equal to `nextHop`
|
|
32061
|
+
:param Sequence['ServiceLanVpnFeatureIpv4StaticRouteNextHopArgs'] next_hops: IPv4 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
|
|
32062
|
+
:param _builtins.bool null0: IPv4 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `null0`
|
|
31872
32063
|
:param _builtins.str subnet_mask: Subnet Mask
|
|
31873
32064
|
- Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
|
|
31874
32065
|
:param _builtins.str subnet_mask_variable: Variable name
|
|
31875
|
-
:param _builtins.bool vpn: IPv4 Route Gateway VPN
|
|
32066
|
+
:param _builtins.bool vpn: IPv4 Route Gateway VPN, Attribute conditional on `gateway` being equal to `vpn`
|
|
31876
32067
|
"""
|
|
31877
|
-
if
|
|
31878
|
-
pulumi.set(__self__, "
|
|
32068
|
+
if dhcp is not None:
|
|
32069
|
+
pulumi.set(__self__, "dhcp", dhcp)
|
|
32070
|
+
if gateway is not None:
|
|
32071
|
+
pulumi.set(__self__, "gateway", gateway)
|
|
31879
32072
|
if network_address is not None:
|
|
31880
32073
|
pulumi.set(__self__, "network_address", network_address)
|
|
31881
32074
|
if network_address_variable is not None:
|
|
@@ -31894,12 +32087,21 @@ class ServiceLanVpnFeatureIpv4StaticRoute(dict):
|
|
|
31894
32087
|
pulumi.set(__self__, "vpn", vpn)
|
|
31895
32088
|
|
|
31896
32089
|
@_builtins.property
|
|
31897
|
-
@pulumi.getter
|
|
31898
|
-
def
|
|
32090
|
+
@pulumi.getter
|
|
32091
|
+
def dhcp(self) -> Optional[_builtins.bool]:
|
|
32092
|
+
"""
|
|
32093
|
+
IPv4 Route Gateway DHCP, Attribute conditional on `gateway` being equal to `dhcp`
|
|
32094
|
+
"""
|
|
32095
|
+
return pulumi.get(self, "dhcp")
|
|
32096
|
+
|
|
32097
|
+
@_builtins.property
|
|
32098
|
+
@pulumi.getter
|
|
32099
|
+
def gateway(self) -> Optional[_builtins.str]:
|
|
31899
32100
|
"""
|
|
31900
|
-
|
|
32101
|
+
Gateway type
|
|
32102
|
+
- Choices: `nextHop`, `null0`, `vpn`, `dhcp`
|
|
31901
32103
|
"""
|
|
31902
|
-
return pulumi.get(self, "
|
|
32104
|
+
return pulumi.get(self, "gateway")
|
|
31903
32105
|
|
|
31904
32106
|
@_builtins.property
|
|
31905
32107
|
@pulumi.getter(name="networkAddress")
|
|
@@ -31921,7 +32123,7 @@ class ServiceLanVpnFeatureIpv4StaticRoute(dict):
|
|
|
31921
32123
|
@pulumi.getter(name="nextHopWithTrackers")
|
|
31922
32124
|
def next_hop_with_trackers(self) -> Optional[Sequence['outputs.ServiceLanVpnFeatureIpv4StaticRouteNextHopWithTracker']]:
|
|
31923
32125
|
"""
|
|
31924
|
-
IPv4 Route Gateway Next Hop with Tracker
|
|
32126
|
+
IPv4 Route Gateway Next Hop with Tracker, Attribute conditional on `gateway` being equal to `nextHop`
|
|
31925
32127
|
"""
|
|
31926
32128
|
return pulumi.get(self, "next_hop_with_trackers")
|
|
31927
32129
|
|
|
@@ -31929,7 +32131,7 @@ class ServiceLanVpnFeatureIpv4StaticRoute(dict):
|
|
|
31929
32131
|
@pulumi.getter(name="nextHops")
|
|
31930
32132
|
def next_hops(self) -> Optional[Sequence['outputs.ServiceLanVpnFeatureIpv4StaticRouteNextHop']]:
|
|
31931
32133
|
"""
|
|
31932
|
-
IPv4 Route Gateway Next Hop
|
|
32134
|
+
IPv4 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
|
|
31933
32135
|
"""
|
|
31934
32136
|
return pulumi.get(self, "next_hops")
|
|
31935
32137
|
|
|
@@ -31937,7 +32139,7 @@ class ServiceLanVpnFeatureIpv4StaticRoute(dict):
|
|
|
31937
32139
|
@pulumi.getter
|
|
31938
32140
|
def null0(self) -> Optional[_builtins.bool]:
|
|
31939
32141
|
"""
|
|
31940
|
-
IPv4 Route Gateway Next Hop
|
|
32142
|
+
IPv4 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `null0`
|
|
31941
32143
|
"""
|
|
31942
32144
|
return pulumi.get(self, "null0")
|
|
31943
32145
|
|
|
@@ -31962,7 +32164,7 @@ class ServiceLanVpnFeatureIpv4StaticRoute(dict):
|
|
|
31962
32164
|
@pulumi.getter
|
|
31963
32165
|
def vpn(self) -> Optional[_builtins.bool]:
|
|
31964
32166
|
"""
|
|
31965
|
-
IPv4 Route Gateway VPN
|
|
32167
|
+
IPv4 Route Gateway VPN, Attribute conditional on `gateway` being equal to `vpn`
|
|
31966
32168
|
"""
|
|
31967
32169
|
return pulumi.get(self, "vpn")
|
|
31968
32170
|
|
|
@@ -32257,6 +32459,7 @@ class ServiceLanVpnFeatureIpv6StaticRoute(dict):
|
|
|
32257
32459
|
return super().get(key, default)
|
|
32258
32460
|
|
|
32259
32461
|
def __init__(__self__, *,
|
|
32462
|
+
gateway: Optional[_builtins.str] = None,
|
|
32260
32463
|
nat: Optional[_builtins.str] = None,
|
|
32261
32464
|
nat_variable: Optional[_builtins.str] = None,
|
|
32262
32465
|
next_hops: Optional[Sequence['outputs.ServiceLanVpnFeatureIpv6StaticRouteNextHop']] = None,
|
|
@@ -32264,14 +32467,18 @@ class ServiceLanVpnFeatureIpv6StaticRoute(dict):
|
|
|
32264
32467
|
prefix: Optional[_builtins.str] = None,
|
|
32265
32468
|
prefix_variable: Optional[_builtins.str] = None):
|
|
32266
32469
|
"""
|
|
32267
|
-
:param _builtins.str
|
|
32470
|
+
:param _builtins.str gateway: Gateway type
|
|
32471
|
+
- Choices: `nextHop`, `null0`, `nat`
|
|
32472
|
+
:param _builtins.str nat: IPv6 Nat, Attribute conditional on `gateway` being equal to `nat`
|
|
32268
32473
|
- Choices: `NAT64`, `NAT66`
|
|
32269
|
-
:param _builtins.str nat_variable: Variable name
|
|
32270
|
-
:param Sequence['ServiceLanVpnFeatureIpv6StaticRouteNextHopArgs'] next_hops: IPv6 Route Gateway Next Hop
|
|
32271
|
-
:param _builtins.bool null0: IPv6 Route Gateway Next Hop
|
|
32474
|
+
:param _builtins.str nat_variable: Variable name, Attribute conditional on `gateway` being equal to `nat`
|
|
32475
|
+
:param Sequence['ServiceLanVpnFeatureIpv6StaticRouteNextHopArgs'] next_hops: IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
|
|
32476
|
+
:param _builtins.bool null0: IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `null0`
|
|
32272
32477
|
:param _builtins.str prefix: Prefix
|
|
32273
32478
|
:param _builtins.str prefix_variable: Variable name
|
|
32274
32479
|
"""
|
|
32480
|
+
if gateway is not None:
|
|
32481
|
+
pulumi.set(__self__, "gateway", gateway)
|
|
32275
32482
|
if nat is not None:
|
|
32276
32483
|
pulumi.set(__self__, "nat", nat)
|
|
32277
32484
|
if nat_variable is not None:
|
|
@@ -32285,11 +32492,20 @@ class ServiceLanVpnFeatureIpv6StaticRoute(dict):
|
|
|
32285
32492
|
if prefix_variable is not None:
|
|
32286
32493
|
pulumi.set(__self__, "prefix_variable", prefix_variable)
|
|
32287
32494
|
|
|
32495
|
+
@_builtins.property
|
|
32496
|
+
@pulumi.getter
|
|
32497
|
+
def gateway(self) -> Optional[_builtins.str]:
|
|
32498
|
+
"""
|
|
32499
|
+
Gateway type
|
|
32500
|
+
- Choices: `nextHop`, `null0`, `nat`
|
|
32501
|
+
"""
|
|
32502
|
+
return pulumi.get(self, "gateway")
|
|
32503
|
+
|
|
32288
32504
|
@_builtins.property
|
|
32289
32505
|
@pulumi.getter
|
|
32290
32506
|
def nat(self) -> Optional[_builtins.str]:
|
|
32291
32507
|
"""
|
|
32292
|
-
IPv6 Nat
|
|
32508
|
+
IPv6 Nat, Attribute conditional on `gateway` being equal to `nat`
|
|
32293
32509
|
- Choices: `NAT64`, `NAT66`
|
|
32294
32510
|
"""
|
|
32295
32511
|
return pulumi.get(self, "nat")
|
|
@@ -32298,7 +32514,7 @@ class ServiceLanVpnFeatureIpv6StaticRoute(dict):
|
|
|
32298
32514
|
@pulumi.getter(name="natVariable")
|
|
32299
32515
|
def nat_variable(self) -> Optional[_builtins.str]:
|
|
32300
32516
|
"""
|
|
32301
|
-
Variable name
|
|
32517
|
+
Variable name, Attribute conditional on `gateway` being equal to `nat`
|
|
32302
32518
|
"""
|
|
32303
32519
|
return pulumi.get(self, "nat_variable")
|
|
32304
32520
|
|
|
@@ -32306,7 +32522,7 @@ class ServiceLanVpnFeatureIpv6StaticRoute(dict):
|
|
|
32306
32522
|
@pulumi.getter(name="nextHops")
|
|
32307
32523
|
def next_hops(self) -> Optional[Sequence['outputs.ServiceLanVpnFeatureIpv6StaticRouteNextHop']]:
|
|
32308
32524
|
"""
|
|
32309
|
-
IPv6 Route Gateway Next Hop
|
|
32525
|
+
IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
|
|
32310
32526
|
"""
|
|
32311
32527
|
return pulumi.get(self, "next_hops")
|
|
32312
32528
|
|
|
@@ -32314,7 +32530,7 @@ class ServiceLanVpnFeatureIpv6StaticRoute(dict):
|
|
|
32314
32530
|
@pulumi.getter
|
|
32315
32531
|
def null0(self) -> Optional[_builtins.bool]:
|
|
32316
32532
|
"""
|
|
32317
|
-
IPv6 Route Gateway Next Hop
|
|
32533
|
+
IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `null0`
|
|
32318
32534
|
"""
|
|
32319
32535
|
return pulumi.get(self, "null0")
|
|
32320
32536
|
|
|
@@ -38117,14 +38333,18 @@ class ServiceRoutingBgpFeatureIpv4NeighborAddressFamily(dict):
|
|
|
38117
38333
|
@staticmethod
|
|
38118
38334
|
def __key_warning(key: str):
|
|
38119
38335
|
suggest = None
|
|
38120
|
-
if key == "
|
|
38336
|
+
if key == "disablePeerMaxNumberOfPrefixes":
|
|
38337
|
+
suggest = "disable_peer_max_number_of_prefixes"
|
|
38338
|
+
elif key == "disablePeerMaxNumberOfPrefixesVariable":
|
|
38339
|
+
suggest = "disable_peer_max_number_of_prefixes_variable"
|
|
38340
|
+
elif key == "disablePeerThreshold":
|
|
38341
|
+
suggest = "disable_peer_threshold"
|
|
38342
|
+
elif key == "disablePeerThresholdVariable":
|
|
38343
|
+
suggest = "disable_peer_threshold_variable"
|
|
38344
|
+
elif key == "familyType":
|
|
38121
38345
|
suggest = "family_type"
|
|
38122
38346
|
elif key == "inRoutePolicyId":
|
|
38123
38347
|
suggest = "in_route_policy_id"
|
|
38124
|
-
elif key == "maxNumberOfPrefixes":
|
|
38125
|
-
suggest = "max_number_of_prefixes"
|
|
38126
|
-
elif key == "maxNumberOfPrefixesVariable":
|
|
38127
|
-
suggest = "max_number_of_prefixes_variable"
|
|
38128
38348
|
elif key == "outRoutePolicyId":
|
|
38129
38349
|
suggest = "out_route_policy_id"
|
|
38130
38350
|
elif key == "policyType":
|
|
@@ -38133,8 +38353,22 @@ class ServiceRoutingBgpFeatureIpv4NeighborAddressFamily(dict):
|
|
|
38133
38353
|
suggest = "restart_interval"
|
|
38134
38354
|
elif key == "restartIntervalVariable":
|
|
38135
38355
|
suggest = "restart_interval_variable"
|
|
38136
|
-
elif key == "
|
|
38137
|
-
suggest = "
|
|
38356
|
+
elif key == "restartMaxNumberOfPrefixes":
|
|
38357
|
+
suggest = "restart_max_number_of_prefixes"
|
|
38358
|
+
elif key == "restartMaxNumberOfPrefixesVariable":
|
|
38359
|
+
suggest = "restart_max_number_of_prefixes_variable"
|
|
38360
|
+
elif key == "restartThreshold":
|
|
38361
|
+
suggest = "restart_threshold"
|
|
38362
|
+
elif key == "restartThresholdVariable":
|
|
38363
|
+
suggest = "restart_threshold_variable"
|
|
38364
|
+
elif key == "warningMessageMaxNumberOfPrefixes":
|
|
38365
|
+
suggest = "warning_message_max_number_of_prefixes"
|
|
38366
|
+
elif key == "warningMessageMaxNumberOfPrefixesVariable":
|
|
38367
|
+
suggest = "warning_message_max_number_of_prefixes_variable"
|
|
38368
|
+
elif key == "warningMessageThreshold":
|
|
38369
|
+
suggest = "warning_message_threshold"
|
|
38370
|
+
elif key == "warningMessageThresholdVariable":
|
|
38371
|
+
suggest = "warning_message_threshold_variable"
|
|
38138
38372
|
|
|
38139
38373
|
if suggest:
|
|
38140
38374
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingBgpFeatureIpv4NeighborAddressFamily. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -38148,38 +38382,65 @@ class ServiceRoutingBgpFeatureIpv4NeighborAddressFamily(dict):
|
|
|
38148
38382
|
return super().get(key, default)
|
|
38149
38383
|
|
|
38150
38384
|
def __init__(__self__, *,
|
|
38385
|
+
disable_peer_max_number_of_prefixes: Optional[_builtins.int] = None,
|
|
38386
|
+
disable_peer_max_number_of_prefixes_variable: Optional[_builtins.str] = None,
|
|
38387
|
+
disable_peer_threshold: Optional[_builtins.int] = None,
|
|
38388
|
+
disable_peer_threshold_variable: Optional[_builtins.str] = None,
|
|
38151
38389
|
family_type: Optional[_builtins.str] = None,
|
|
38152
38390
|
in_route_policy_id: Optional[_builtins.str] = None,
|
|
38153
|
-
max_number_of_prefixes: Optional[_builtins.int] = None,
|
|
38154
|
-
max_number_of_prefixes_variable: Optional[_builtins.str] = None,
|
|
38155
38391
|
out_route_policy_id: Optional[_builtins.str] = None,
|
|
38156
38392
|
policy_type: Optional[_builtins.str] = None,
|
|
38157
38393
|
restart_interval: Optional[_builtins.int] = None,
|
|
38158
38394
|
restart_interval_variable: Optional[_builtins.str] = None,
|
|
38159
|
-
|
|
38160
|
-
|
|
38395
|
+
restart_max_number_of_prefixes: Optional[_builtins.int] = None,
|
|
38396
|
+
restart_max_number_of_prefixes_variable: Optional[_builtins.str] = None,
|
|
38397
|
+
restart_threshold: Optional[_builtins.int] = None,
|
|
38398
|
+
restart_threshold_variable: Optional[_builtins.str] = None,
|
|
38399
|
+
warning_message_max_number_of_prefixes: Optional[_builtins.int] = None,
|
|
38400
|
+
warning_message_max_number_of_prefixes_variable: Optional[_builtins.str] = None,
|
|
38401
|
+
warning_message_threshold: Optional[_builtins.int] = None,
|
|
38402
|
+
warning_message_threshold_variable: Optional[_builtins.str] = None):
|
|
38161
38403
|
"""
|
|
38162
|
-
:param _builtins.
|
|
38163
|
-
:param _builtins.int max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer
|
|
38404
|
+
:param _builtins.int disable_peer_max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer, Attribute conditional on `policy_type` being equal to `disable-peer`
|
|
38164
38405
|
- Range: `1`-`4294967295`
|
|
38165
|
-
:param _builtins.str
|
|
38406
|
+
:param _builtins.str disable_peer_max_number_of_prefixes_variable: Variable name, Attribute conditional on `policy_type` being equal to `disable-peer`
|
|
38407
|
+
:param _builtins.int disable_peer_threshold: Set threshold(1 to 100) at which to generate a warning message, Attribute conditional on `policy_type` being equal to `disable-peer`
|
|
38408
|
+
- Range: `1`-`100`
|
|
38409
|
+
- Default value: `75`
|
|
38410
|
+
:param _builtins.str disable_peer_threshold_variable: Variable name, Attribute conditional on `policy_type` being equal to `disable-peer`
|
|
38411
|
+
:param _builtins.str family_type: Set IPv4 unicast address family
|
|
38166
38412
|
:param _builtins.str policy_type: Neighbor received maximum prefix policy is disabled.
|
|
38167
|
-
|
|
38413
|
+
- Choices: `restart`, `off`, `warning-only`, `disable-peer`
|
|
38414
|
+
:param _builtins.int restart_interval: Set the restart interval(minutes) when to restart BGP connection if threshold is exceeded, Attribute conditional on `policy_type` being equal to `restart`
|
|
38168
38415
|
- Range: `1`-`65535`
|
|
38169
|
-
:param _builtins.str restart_interval_variable: Variable name
|
|
38170
|
-
:param _builtins.int
|
|
38416
|
+
:param _builtins.str restart_interval_variable: Variable name, Attribute conditional on `policy_type` being equal to `restart`
|
|
38417
|
+
:param _builtins.int restart_max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer, Attribute conditional on `policy_type` being equal to `restart`
|
|
38418
|
+
- Range: `1`-`4294967295`
|
|
38419
|
+
:param _builtins.str restart_max_number_of_prefixes_variable: Variable name, Attribute conditional on `policy_type` being equal to `restart`
|
|
38420
|
+
:param _builtins.int restart_threshold: Set threshold(1 to 100) at which to generate a warning message, Attribute conditional on `policy_type` being equal to `restart`
|
|
38171
38421
|
- Range: `1`-`100`
|
|
38172
38422
|
- Default value: `75`
|
|
38173
|
-
:param _builtins.str
|
|
38423
|
+
:param _builtins.str restart_threshold_variable: Variable name, Attribute conditional on `policy_type` being equal to `restart`
|
|
38424
|
+
:param _builtins.int warning_message_max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer, Attribute conditional on `policy_type` being equal to `warning-only`
|
|
38425
|
+
- Range: `1`-`4294967295`
|
|
38426
|
+
:param _builtins.str warning_message_max_number_of_prefixes_variable: Variable name, Attribute conditional on `policy_type` being equal to `warning-only`
|
|
38427
|
+
:param _builtins.int warning_message_threshold: Set threshold(1 to 100) at which to generate a warning message, Attribute conditional on `policy_type` being equal to `warning-only`
|
|
38428
|
+
- Range: `1`-`100`
|
|
38429
|
+
- Default value: `75`
|
|
38430
|
+
:param _builtins.str warning_message_threshold_variable: Variable name, Attribute conditional on `policy_type` being equal to `warning-only`
|
|
38174
38431
|
"""
|
|
38432
|
+
if disable_peer_max_number_of_prefixes is not None:
|
|
38433
|
+
pulumi.set(__self__, "disable_peer_max_number_of_prefixes", disable_peer_max_number_of_prefixes)
|
|
38434
|
+
if disable_peer_max_number_of_prefixes_variable is not None:
|
|
38435
|
+
pulumi.set(__self__, "disable_peer_max_number_of_prefixes_variable", disable_peer_max_number_of_prefixes_variable)
|
|
38436
|
+
if disable_peer_threshold is not None:
|
|
38437
|
+
pulumi.set(__self__, "disable_peer_threshold", disable_peer_threshold)
|
|
38438
|
+
if disable_peer_threshold_variable is not None:
|
|
38439
|
+
pulumi.set(__self__, "disable_peer_threshold_variable", disable_peer_threshold_variable)
|
|
38175
38440
|
if family_type is not None:
|
|
38176
38441
|
pulumi.set(__self__, "family_type", family_type)
|
|
38177
38442
|
if in_route_policy_id is not None:
|
|
38178
38443
|
pulumi.set(__self__, "in_route_policy_id", in_route_policy_id)
|
|
38179
|
-
if max_number_of_prefixes is not None:
|
|
38180
|
-
pulumi.set(__self__, "max_number_of_prefixes", max_number_of_prefixes)
|
|
38181
|
-
if max_number_of_prefixes_variable is not None:
|
|
38182
|
-
pulumi.set(__self__, "max_number_of_prefixes_variable", max_number_of_prefixes_variable)
|
|
38183
38444
|
if out_route_policy_id is not None:
|
|
38184
38445
|
pulumi.set(__self__, "out_route_policy_id", out_route_policy_id)
|
|
38185
38446
|
if policy_type is not None:
|
|
@@ -38188,40 +38449,70 @@ class ServiceRoutingBgpFeatureIpv4NeighborAddressFamily(dict):
|
|
|
38188
38449
|
pulumi.set(__self__, "restart_interval", restart_interval)
|
|
38189
38450
|
if restart_interval_variable is not None:
|
|
38190
38451
|
pulumi.set(__self__, "restart_interval_variable", restart_interval_variable)
|
|
38191
|
-
if
|
|
38192
|
-
pulumi.set(__self__, "
|
|
38193
|
-
if
|
|
38194
|
-
pulumi.set(__self__, "
|
|
38452
|
+
if restart_max_number_of_prefixes is not None:
|
|
38453
|
+
pulumi.set(__self__, "restart_max_number_of_prefixes", restart_max_number_of_prefixes)
|
|
38454
|
+
if restart_max_number_of_prefixes_variable is not None:
|
|
38455
|
+
pulumi.set(__self__, "restart_max_number_of_prefixes_variable", restart_max_number_of_prefixes_variable)
|
|
38456
|
+
if restart_threshold is not None:
|
|
38457
|
+
pulumi.set(__self__, "restart_threshold", restart_threshold)
|
|
38458
|
+
if restart_threshold_variable is not None:
|
|
38459
|
+
pulumi.set(__self__, "restart_threshold_variable", restart_threshold_variable)
|
|
38460
|
+
if warning_message_max_number_of_prefixes is not None:
|
|
38461
|
+
pulumi.set(__self__, "warning_message_max_number_of_prefixes", warning_message_max_number_of_prefixes)
|
|
38462
|
+
if warning_message_max_number_of_prefixes_variable is not None:
|
|
38463
|
+
pulumi.set(__self__, "warning_message_max_number_of_prefixes_variable", warning_message_max_number_of_prefixes_variable)
|
|
38464
|
+
if warning_message_threshold is not None:
|
|
38465
|
+
pulumi.set(__self__, "warning_message_threshold", warning_message_threshold)
|
|
38466
|
+
if warning_message_threshold_variable is not None:
|
|
38467
|
+
pulumi.set(__self__, "warning_message_threshold_variable", warning_message_threshold_variable)
|
|
38195
38468
|
|
|
38196
38469
|
@_builtins.property
|
|
38197
|
-
@pulumi.getter(name="
|
|
38198
|
-
def
|
|
38470
|
+
@pulumi.getter(name="disablePeerMaxNumberOfPrefixes")
|
|
38471
|
+
def disable_peer_max_number_of_prefixes(self) -> Optional[_builtins.int]:
|
|
38199
38472
|
"""
|
|
38200
|
-
Set
|
|
38473
|
+
Set maximum number of prefixes accepted from BGP peer, Attribute conditional on `policy_type` being equal to `disable-peer`
|
|
38474
|
+
- Range: `1`-`4294967295`
|
|
38201
38475
|
"""
|
|
38202
|
-
return pulumi.get(self, "
|
|
38476
|
+
return pulumi.get(self, "disable_peer_max_number_of_prefixes")
|
|
38203
38477
|
|
|
38204
38478
|
@_builtins.property
|
|
38205
|
-
@pulumi.getter(name="
|
|
38206
|
-
def
|
|
38207
|
-
|
|
38479
|
+
@pulumi.getter(name="disablePeerMaxNumberOfPrefixesVariable")
|
|
38480
|
+
def disable_peer_max_number_of_prefixes_variable(self) -> Optional[_builtins.str]:
|
|
38481
|
+
"""
|
|
38482
|
+
Variable name, Attribute conditional on `policy_type` being equal to `disable-peer`
|
|
38483
|
+
"""
|
|
38484
|
+
return pulumi.get(self, "disable_peer_max_number_of_prefixes_variable")
|
|
38208
38485
|
|
|
38209
38486
|
@_builtins.property
|
|
38210
|
-
@pulumi.getter(name="
|
|
38211
|
-
def
|
|
38487
|
+
@pulumi.getter(name="disablePeerThreshold")
|
|
38488
|
+
def disable_peer_threshold(self) -> Optional[_builtins.int]:
|
|
38212
38489
|
"""
|
|
38213
|
-
Set
|
|
38214
|
-
- Range: `1`-`
|
|
38490
|
+
Set threshold(1 to 100) at which to generate a warning message, Attribute conditional on `policy_type` being equal to `disable-peer`
|
|
38491
|
+
- Range: `1`-`100`
|
|
38492
|
+
- Default value: `75`
|
|
38215
38493
|
"""
|
|
38216
|
-
return pulumi.get(self, "
|
|
38494
|
+
return pulumi.get(self, "disable_peer_threshold")
|
|
38217
38495
|
|
|
38218
38496
|
@_builtins.property
|
|
38219
|
-
@pulumi.getter(name="
|
|
38220
|
-
def
|
|
38497
|
+
@pulumi.getter(name="disablePeerThresholdVariable")
|
|
38498
|
+
def disable_peer_threshold_variable(self) -> Optional[_builtins.str]:
|
|
38221
38499
|
"""
|
|
38222
|
-
Variable name
|
|
38500
|
+
Variable name, Attribute conditional on `policy_type` being equal to `disable-peer`
|
|
38223
38501
|
"""
|
|
38224
|
-
return pulumi.get(self, "
|
|
38502
|
+
return pulumi.get(self, "disable_peer_threshold_variable")
|
|
38503
|
+
|
|
38504
|
+
@_builtins.property
|
|
38505
|
+
@pulumi.getter(name="familyType")
|
|
38506
|
+
def family_type(self) -> Optional[_builtins.str]:
|
|
38507
|
+
"""
|
|
38508
|
+
Set IPv4 unicast address family
|
|
38509
|
+
"""
|
|
38510
|
+
return pulumi.get(self, "family_type")
|
|
38511
|
+
|
|
38512
|
+
@_builtins.property
|
|
38513
|
+
@pulumi.getter(name="inRoutePolicyId")
|
|
38514
|
+
def in_route_policy_id(self) -> Optional[_builtins.str]:
|
|
38515
|
+
return pulumi.get(self, "in_route_policy_id")
|
|
38225
38516
|
|
|
38226
38517
|
@_builtins.property
|
|
38227
38518
|
@pulumi.getter(name="outRoutePolicyId")
|
|
@@ -38233,6 +38524,7 @@ class ServiceRoutingBgpFeatureIpv4NeighborAddressFamily(dict):
|
|
|
38233
38524
|
def policy_type(self) -> Optional[_builtins.str]:
|
|
38234
38525
|
"""
|
|
38235
38526
|
Neighbor received maximum prefix policy is disabled.
|
|
38527
|
+
- Choices: `restart`, `off`, `warning-only`, `disable-peer`
|
|
38236
38528
|
"""
|
|
38237
38529
|
return pulumi.get(self, "policy_type")
|
|
38238
38530
|
|
|
@@ -38240,7 +38532,7 @@ class ServiceRoutingBgpFeatureIpv4NeighborAddressFamily(dict):
|
|
|
38240
38532
|
@pulumi.getter(name="restartInterval")
|
|
38241
38533
|
def restart_interval(self) -> Optional[_builtins.int]:
|
|
38242
38534
|
"""
|
|
38243
|
-
Set the restart interval(minutes) when to restart BGP connection if threshold is exceeded
|
|
38535
|
+
Set the restart interval(minutes) when to restart BGP connection if threshold is exceeded, Attribute conditional on `policy_type` being equal to `restart`
|
|
38244
38536
|
- Range: `1`-`65535`
|
|
38245
38537
|
"""
|
|
38246
38538
|
return pulumi.get(self, "restart_interval")
|
|
@@ -38249,27 +38541,79 @@ class ServiceRoutingBgpFeatureIpv4NeighborAddressFamily(dict):
|
|
|
38249
38541
|
@pulumi.getter(name="restartIntervalVariable")
|
|
38250
38542
|
def restart_interval_variable(self) -> Optional[_builtins.str]:
|
|
38251
38543
|
"""
|
|
38252
|
-
Variable name
|
|
38544
|
+
Variable name, Attribute conditional on `policy_type` being equal to `restart`
|
|
38253
38545
|
"""
|
|
38254
38546
|
return pulumi.get(self, "restart_interval_variable")
|
|
38255
38547
|
|
|
38256
38548
|
@_builtins.property
|
|
38257
|
-
@pulumi.getter
|
|
38258
|
-
def
|
|
38549
|
+
@pulumi.getter(name="restartMaxNumberOfPrefixes")
|
|
38550
|
+
def restart_max_number_of_prefixes(self) -> Optional[_builtins.int]:
|
|
38259
38551
|
"""
|
|
38260
|
-
Set
|
|
38552
|
+
Set maximum number of prefixes accepted from BGP peer, Attribute conditional on `policy_type` being equal to `restart`
|
|
38553
|
+
- Range: `1`-`4294967295`
|
|
38554
|
+
"""
|
|
38555
|
+
return pulumi.get(self, "restart_max_number_of_prefixes")
|
|
38556
|
+
|
|
38557
|
+
@_builtins.property
|
|
38558
|
+
@pulumi.getter(name="restartMaxNumberOfPrefixesVariable")
|
|
38559
|
+
def restart_max_number_of_prefixes_variable(self) -> Optional[_builtins.str]:
|
|
38560
|
+
"""
|
|
38561
|
+
Variable name, Attribute conditional on `policy_type` being equal to `restart`
|
|
38562
|
+
"""
|
|
38563
|
+
return pulumi.get(self, "restart_max_number_of_prefixes_variable")
|
|
38564
|
+
|
|
38565
|
+
@_builtins.property
|
|
38566
|
+
@pulumi.getter(name="restartThreshold")
|
|
38567
|
+
def restart_threshold(self) -> Optional[_builtins.int]:
|
|
38568
|
+
"""
|
|
38569
|
+
Set threshold(1 to 100) at which to generate a warning message, Attribute conditional on `policy_type` being equal to `restart`
|
|
38261
38570
|
- Range: `1`-`100`
|
|
38262
38571
|
- Default value: `75`
|
|
38263
38572
|
"""
|
|
38264
|
-
return pulumi.get(self, "
|
|
38573
|
+
return pulumi.get(self, "restart_threshold")
|
|
38265
38574
|
|
|
38266
38575
|
@_builtins.property
|
|
38267
|
-
@pulumi.getter(name="
|
|
38268
|
-
def
|
|
38576
|
+
@pulumi.getter(name="restartThresholdVariable")
|
|
38577
|
+
def restart_threshold_variable(self) -> Optional[_builtins.str]:
|
|
38269
38578
|
"""
|
|
38270
|
-
Variable name
|
|
38579
|
+
Variable name, Attribute conditional on `policy_type` being equal to `restart`
|
|
38271
38580
|
"""
|
|
38272
|
-
return pulumi.get(self, "
|
|
38581
|
+
return pulumi.get(self, "restart_threshold_variable")
|
|
38582
|
+
|
|
38583
|
+
@_builtins.property
|
|
38584
|
+
@pulumi.getter(name="warningMessageMaxNumberOfPrefixes")
|
|
38585
|
+
def warning_message_max_number_of_prefixes(self) -> Optional[_builtins.int]:
|
|
38586
|
+
"""
|
|
38587
|
+
Set maximum number of prefixes accepted from BGP peer, Attribute conditional on `policy_type` being equal to `warning-only`
|
|
38588
|
+
- Range: `1`-`4294967295`
|
|
38589
|
+
"""
|
|
38590
|
+
return pulumi.get(self, "warning_message_max_number_of_prefixes")
|
|
38591
|
+
|
|
38592
|
+
@_builtins.property
|
|
38593
|
+
@pulumi.getter(name="warningMessageMaxNumberOfPrefixesVariable")
|
|
38594
|
+
def warning_message_max_number_of_prefixes_variable(self) -> Optional[_builtins.str]:
|
|
38595
|
+
"""
|
|
38596
|
+
Variable name, Attribute conditional on `policy_type` being equal to `warning-only`
|
|
38597
|
+
"""
|
|
38598
|
+
return pulumi.get(self, "warning_message_max_number_of_prefixes_variable")
|
|
38599
|
+
|
|
38600
|
+
@_builtins.property
|
|
38601
|
+
@pulumi.getter(name="warningMessageThreshold")
|
|
38602
|
+
def warning_message_threshold(self) -> Optional[_builtins.int]:
|
|
38603
|
+
"""
|
|
38604
|
+
Set threshold(1 to 100) at which to generate a warning message, Attribute conditional on `policy_type` being equal to `warning-only`
|
|
38605
|
+
- Range: `1`-`100`
|
|
38606
|
+
- Default value: `75`
|
|
38607
|
+
"""
|
|
38608
|
+
return pulumi.get(self, "warning_message_threshold")
|
|
38609
|
+
|
|
38610
|
+
@_builtins.property
|
|
38611
|
+
@pulumi.getter(name="warningMessageThresholdVariable")
|
|
38612
|
+
def warning_message_threshold_variable(self) -> Optional[_builtins.str]:
|
|
38613
|
+
"""
|
|
38614
|
+
Variable name, Attribute conditional on `policy_type` being equal to `warning-only`
|
|
38615
|
+
"""
|
|
38616
|
+
return pulumi.get(self, "warning_message_threshold_variable")
|
|
38273
38617
|
|
|
38274
38618
|
|
|
38275
38619
|
@pulumi.output_type
|
|
@@ -47425,8 +47769,8 @@ class TlsSslDecryptionPolicyDefinitionUrlRule(dict):
|
|
|
47425
47769
|
suggest = "target_vpns"
|
|
47426
47770
|
elif key == "tlsSslProfilePolicyId":
|
|
47427
47771
|
suggest = "tls_ssl_profile_policy_id"
|
|
47428
|
-
elif key == "
|
|
47429
|
-
suggest = "
|
|
47772
|
+
elif key == "tlsSslProfilePolicyVersion":
|
|
47773
|
+
suggest = "tls_ssl_profile_policy_version"
|
|
47430
47774
|
|
|
47431
47775
|
if suggest:
|
|
47432
47776
|
pulumi.log.warn(f"Key '{key}' not found in TlsSslDecryptionPolicyDefinitionUrlRule. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -47443,12 +47787,12 @@ class TlsSslDecryptionPolicyDefinitionUrlRule(dict):
|
|
|
47443
47787
|
rule_name: Optional[_builtins.str] = None,
|
|
47444
47788
|
target_vpns: Optional[Sequence[_builtins.str]] = None,
|
|
47445
47789
|
tls_ssl_profile_policy_id: Optional[_builtins.str] = None,
|
|
47446
|
-
|
|
47790
|
+
tls_ssl_profile_policy_version: Optional[_builtins.int] = None):
|
|
47447
47791
|
"""
|
|
47448
47792
|
:param _builtins.str rule_name: Country
|
|
47449
47793
|
:param Sequence[_builtins.str] target_vpns: List of VPN IDs
|
|
47450
47794
|
:param _builtins.str tls_ssl_profile_policy_id: TLS SSL Profile Policy ID
|
|
47451
|
-
:param _builtins.int
|
|
47795
|
+
:param _builtins.int tls_ssl_profile_policy_version: TLS SSL Profile Policy version
|
|
47452
47796
|
"""
|
|
47453
47797
|
if rule_name is not None:
|
|
47454
47798
|
pulumi.set(__self__, "rule_name", rule_name)
|
|
@@ -47456,8 +47800,8 @@ class TlsSslDecryptionPolicyDefinitionUrlRule(dict):
|
|
|
47456
47800
|
pulumi.set(__self__, "target_vpns", target_vpns)
|
|
47457
47801
|
if tls_ssl_profile_policy_id is not None:
|
|
47458
47802
|
pulumi.set(__self__, "tls_ssl_profile_policy_id", tls_ssl_profile_policy_id)
|
|
47459
|
-
if
|
|
47460
|
-
pulumi.set(__self__, "
|
|
47803
|
+
if tls_ssl_profile_policy_version is not None:
|
|
47804
|
+
pulumi.set(__self__, "tls_ssl_profile_policy_version", tls_ssl_profile_policy_version)
|
|
47461
47805
|
|
|
47462
47806
|
@_builtins.property
|
|
47463
47807
|
@pulumi.getter(name="ruleName")
|
|
@@ -47484,12 +47828,12 @@ class TlsSslDecryptionPolicyDefinitionUrlRule(dict):
|
|
|
47484
47828
|
return pulumi.get(self, "tls_ssl_profile_policy_id")
|
|
47485
47829
|
|
|
47486
47830
|
@_builtins.property
|
|
47487
|
-
@pulumi.getter(name="
|
|
47488
|
-
def
|
|
47831
|
+
@pulumi.getter(name="tlsSslProfilePolicyVersion")
|
|
47832
|
+
def tls_ssl_profile_policy_version(self) -> Optional[_builtins.int]:
|
|
47489
47833
|
"""
|
|
47490
47834
|
TLS SSL Profile Policy version
|
|
47491
47835
|
"""
|
|
47492
|
-
return pulumi.get(self, "
|
|
47836
|
+
return pulumi.get(self, "tls_ssl_profile_policy_version")
|
|
47493
47837
|
|
|
47494
47838
|
|
|
47495
47839
|
@pulumi.output_type
|
|
@@ -48000,8 +48344,8 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48000
48344
|
suggest = "policer_list_id"
|
|
48001
48345
|
elif key == "policerListVersion":
|
|
48002
48346
|
suggest = "policer_list_version"
|
|
48003
|
-
elif key == "
|
|
48004
|
-
suggest = "
|
|
48347
|
+
elif key == "preferredColorGroupListId":
|
|
48348
|
+
suggest = "preferred_color_group_list_id"
|
|
48005
48349
|
elif key == "preferredColorGroupListVersion":
|
|
48006
48350
|
suggest = "preferred_color_group_list_version"
|
|
48007
48351
|
elif key == "serviceTlocColor":
|
|
@@ -48057,7 +48401,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48057
48401
|
next_hop_loose: Optional[_builtins.bool] = None,
|
|
48058
48402
|
policer_list_id: Optional[_builtins.str] = None,
|
|
48059
48403
|
policer_list_version: Optional[_builtins.int] = None,
|
|
48060
|
-
|
|
48404
|
+
preferred_color_group_list_id: Optional[_builtins.str] = None,
|
|
48061
48405
|
preferred_color_group_list_version: Optional[_builtins.int] = None,
|
|
48062
48406
|
service_tloc_color: Optional[_builtins.str] = None,
|
|
48063
48407
|
service_tloc_encapsulation: Optional[_builtins.str] = None,
|
|
@@ -48088,7 +48432,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48088
48432
|
:param _builtins.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`
|
|
48089
48433
|
:param _builtins.str policer_list_id: Policer list ID, Attribute conditional on `type` being equal to `policer`
|
|
48090
48434
|
:param _builtins.int policer_list_version: Policer list version
|
|
48091
|
-
:param _builtins.str
|
|
48435
|
+
:param _builtins.str preferred_color_group_list_id: Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
|
|
48092
48436
|
:param _builtins.int preferred_color_group_list_version: Preferred color group list version
|
|
48093
48437
|
:param _builtins.str service_tloc_color: Service TLOC color, Attribute conditional on `type` being equal to `service`
|
|
48094
48438
|
:param _builtins.str service_tloc_encapsulation: Service TLOC encapsulation, Attribute conditional on `type` being equal to `service`
|
|
@@ -48130,8 +48474,8 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48130
48474
|
pulumi.set(__self__, "policer_list_id", policer_list_id)
|
|
48131
48475
|
if policer_list_version is not None:
|
|
48132
48476
|
pulumi.set(__self__, "policer_list_version", policer_list_version)
|
|
48133
|
-
if
|
|
48134
|
-
pulumi.set(__self__, "
|
|
48477
|
+
if preferred_color_group_list_id is not None:
|
|
48478
|
+
pulumi.set(__self__, "preferred_color_group_list_id", preferred_color_group_list_id)
|
|
48135
48479
|
if preferred_color_group_list_version is not None:
|
|
48136
48480
|
pulumi.set(__self__, "preferred_color_group_list_version", preferred_color_group_list_version)
|
|
48137
48481
|
if service_tloc_color is not None:
|
|
@@ -48249,12 +48593,12 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48249
48593
|
return pulumi.get(self, "policer_list_version")
|
|
48250
48594
|
|
|
48251
48595
|
@_builtins.property
|
|
48252
|
-
@pulumi.getter(name="
|
|
48253
|
-
def
|
|
48596
|
+
@pulumi.getter(name="preferredColorGroupListId")
|
|
48597
|
+
def preferred_color_group_list_id(self) -> Optional[_builtins.str]:
|
|
48254
48598
|
"""
|
|
48255
48599
|
Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
|
|
48256
48600
|
"""
|
|
48257
|
-
return pulumi.get(self, "
|
|
48601
|
+
return pulumi.get(self, "preferred_color_group_list_id")
|
|
48258
48602
|
|
|
48259
48603
|
@_builtins.property
|
|
48260
48604
|
@pulumi.getter(name="preferredColorGroupListVersion")
|
|
@@ -62769,23 +63113,23 @@ class GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
62769
63113
|
class GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParameterResult(dict):
|
|
62770
63114
|
def __init__(__self__, *,
|
|
62771
63115
|
preferred_color: _builtins.str,
|
|
62772
|
-
|
|
63116
|
+
preferred_color_group_list_id: _builtins.str,
|
|
62773
63117
|
preferred_color_group_list_version: _builtins.int,
|
|
62774
|
-
|
|
63118
|
+
sla_class_list_id: _builtins.str,
|
|
62775
63119
|
sla_class_list_version: _builtins.int,
|
|
62776
63120
|
type: _builtins.str):
|
|
62777
63121
|
"""
|
|
62778
63122
|
:param _builtins.str preferred_color: preferred color (Single value or multiple values separated by spaces)
|
|
62779
|
-
:param _builtins.str
|
|
63123
|
+
:param _builtins.str preferred_color_group_list_id: Preferred color group list ID
|
|
62780
63124
|
:param _builtins.int preferred_color_group_list_version: Preferred color group list version
|
|
62781
|
-
:param _builtins.str
|
|
63125
|
+
:param _builtins.str sla_class_list_id: SLA class list ID
|
|
62782
63126
|
:param _builtins.int sla_class_list_version: SLA class list version
|
|
62783
63127
|
:param _builtins.str type: Type of SLA class parameter
|
|
62784
63128
|
"""
|
|
62785
63129
|
pulumi.set(__self__, "preferred_color", preferred_color)
|
|
62786
|
-
pulumi.set(__self__, "
|
|
63130
|
+
pulumi.set(__self__, "preferred_color_group_list_id", preferred_color_group_list_id)
|
|
62787
63131
|
pulumi.set(__self__, "preferred_color_group_list_version", preferred_color_group_list_version)
|
|
62788
|
-
pulumi.set(__self__, "
|
|
63132
|
+
pulumi.set(__self__, "sla_class_list_id", sla_class_list_id)
|
|
62789
63133
|
pulumi.set(__self__, "sla_class_list_version", sla_class_list_version)
|
|
62790
63134
|
pulumi.set(__self__, "type", type)
|
|
62791
63135
|
|
|
@@ -62798,12 +63142,12 @@ class GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParam
|
|
|
62798
63142
|
return pulumi.get(self, "preferred_color")
|
|
62799
63143
|
|
|
62800
63144
|
@_builtins.property
|
|
62801
|
-
@pulumi.getter(name="
|
|
62802
|
-
def
|
|
63145
|
+
@pulumi.getter(name="preferredColorGroupListId")
|
|
63146
|
+
def preferred_color_group_list_id(self) -> _builtins.str:
|
|
62803
63147
|
"""
|
|
62804
63148
|
Preferred color group list ID
|
|
62805
63149
|
"""
|
|
62806
|
-
return pulumi.get(self, "
|
|
63150
|
+
return pulumi.get(self, "preferred_color_group_list_id")
|
|
62807
63151
|
|
|
62808
63152
|
@_builtins.property
|
|
62809
63153
|
@pulumi.getter(name="preferredColorGroupListVersion")
|
|
@@ -62814,12 +63158,12 @@ class GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParam
|
|
|
62814
63158
|
return pulumi.get(self, "preferred_color_group_list_version")
|
|
62815
63159
|
|
|
62816
63160
|
@_builtins.property
|
|
62817
|
-
@pulumi.getter(name="
|
|
62818
|
-
def
|
|
63161
|
+
@pulumi.getter(name="slaClassListId")
|
|
63162
|
+
def sla_class_list_id(self) -> _builtins.str:
|
|
62819
63163
|
"""
|
|
62820
63164
|
SLA class list ID
|
|
62821
63165
|
"""
|
|
62822
|
-
return pulumi.get(self, "
|
|
63166
|
+
return pulumi.get(self, "sla_class_list_id")
|
|
62823
63167
|
|
|
62824
63168
|
@_builtins.property
|
|
62825
63169
|
@pulumi.getter(name="slaClassListVersion")
|
|
@@ -73574,35 +73918,27 @@ class GetCiscoVpnFeatureTemplateDnsIpv6ServerResult(dict):
|
|
|
73574
73918
|
@pulumi.output_type
|
|
73575
73919
|
class GetCiscoVpnFeatureTemplateIpv4StaticGreRouteResult(dict):
|
|
73576
73920
|
def __init__(__self__, *,
|
|
73577
|
-
interface_variable: _builtins.str,
|
|
73578
73921
|
interfaces: Sequence[_builtins.str],
|
|
73922
|
+
interfaces_variable: _builtins.str,
|
|
73579
73923
|
optional: _builtins.bool,
|
|
73580
73924
|
prefix: _builtins.str,
|
|
73581
73925
|
prefix_variable: _builtins.str,
|
|
73582
73926
|
vpn_id: _builtins.int):
|
|
73583
73927
|
"""
|
|
73584
|
-
:param _builtins.str interface_variable: Variable name
|
|
73585
73928
|
:param Sequence[_builtins.str] interfaces: List of GRE Interfaces
|
|
73929
|
+
:param _builtins.str interfaces_variable: Variable name
|
|
73586
73930
|
:param _builtins.bool optional: Indicates if list item is considered optional.
|
|
73587
73931
|
:param _builtins.str prefix: Prefix
|
|
73588
73932
|
:param _builtins.str prefix_variable: Variable name
|
|
73589
73933
|
:param _builtins.int vpn_id: Destination VPN to resolve the prefix
|
|
73590
73934
|
"""
|
|
73591
|
-
pulumi.set(__self__, "interface_variable", interface_variable)
|
|
73592
73935
|
pulumi.set(__self__, "interfaces", interfaces)
|
|
73936
|
+
pulumi.set(__self__, "interfaces_variable", interfaces_variable)
|
|
73593
73937
|
pulumi.set(__self__, "optional", optional)
|
|
73594
73938
|
pulumi.set(__self__, "prefix", prefix)
|
|
73595
73939
|
pulumi.set(__self__, "prefix_variable", prefix_variable)
|
|
73596
73940
|
pulumi.set(__self__, "vpn_id", vpn_id)
|
|
73597
73941
|
|
|
73598
|
-
@_builtins.property
|
|
73599
|
-
@pulumi.getter(name="interfaceVariable")
|
|
73600
|
-
def interface_variable(self) -> _builtins.str:
|
|
73601
|
-
"""
|
|
73602
|
-
Variable name
|
|
73603
|
-
"""
|
|
73604
|
-
return pulumi.get(self, "interface_variable")
|
|
73605
|
-
|
|
73606
73942
|
@_builtins.property
|
|
73607
73943
|
@pulumi.getter
|
|
73608
73944
|
def interfaces(self) -> Sequence[_builtins.str]:
|
|
@@ -73611,6 +73947,14 @@ class GetCiscoVpnFeatureTemplateIpv4StaticGreRouteResult(dict):
|
|
|
73611
73947
|
"""
|
|
73612
73948
|
return pulumi.get(self, "interfaces")
|
|
73613
73949
|
|
|
73950
|
+
@_builtins.property
|
|
73951
|
+
@pulumi.getter(name="interfacesVariable")
|
|
73952
|
+
def interfaces_variable(self) -> _builtins.str:
|
|
73953
|
+
"""
|
|
73954
|
+
Variable name
|
|
73955
|
+
"""
|
|
73956
|
+
return pulumi.get(self, "interfaces_variable")
|
|
73957
|
+
|
|
73614
73958
|
@_builtins.property
|
|
73615
73959
|
@pulumi.getter
|
|
73616
73960
|
def optional(self) -> _builtins.bool:
|
|
@@ -73647,35 +73991,27 @@ class GetCiscoVpnFeatureTemplateIpv4StaticGreRouteResult(dict):
|
|
|
73647
73991
|
@pulumi.output_type
|
|
73648
73992
|
class GetCiscoVpnFeatureTemplateIpv4StaticIpsecRouteResult(dict):
|
|
73649
73993
|
def __init__(__self__, *,
|
|
73650
|
-
interface_variable: _builtins.str,
|
|
73651
73994
|
interfaces: Sequence[_builtins.str],
|
|
73995
|
+
interfaces_variable: _builtins.str,
|
|
73652
73996
|
optional: _builtins.bool,
|
|
73653
73997
|
prefix: _builtins.str,
|
|
73654
73998
|
prefix_variable: _builtins.str,
|
|
73655
73999
|
vpn_id: _builtins.int):
|
|
73656
74000
|
"""
|
|
73657
|
-
:param _builtins.str interface_variable: Variable name
|
|
73658
74001
|
:param Sequence[_builtins.str] interfaces: List of IPSEC Interfaces (Separated by commas)
|
|
74002
|
+
:param _builtins.str interfaces_variable: Variable name
|
|
73659
74003
|
:param _builtins.bool optional: Indicates if list item is considered optional.
|
|
73660
74004
|
:param _builtins.str prefix: Prefix
|
|
73661
74005
|
:param _builtins.str prefix_variable: Variable name
|
|
73662
74006
|
:param _builtins.int vpn_id: Destination VPN to resolve the prefix
|
|
73663
74007
|
"""
|
|
73664
|
-
pulumi.set(__self__, "interface_variable", interface_variable)
|
|
73665
74008
|
pulumi.set(__self__, "interfaces", interfaces)
|
|
74009
|
+
pulumi.set(__self__, "interfaces_variable", interfaces_variable)
|
|
73666
74010
|
pulumi.set(__self__, "optional", optional)
|
|
73667
74011
|
pulumi.set(__self__, "prefix", prefix)
|
|
73668
74012
|
pulumi.set(__self__, "prefix_variable", prefix_variable)
|
|
73669
74013
|
pulumi.set(__self__, "vpn_id", vpn_id)
|
|
73670
74014
|
|
|
73671
|
-
@_builtins.property
|
|
73672
|
-
@pulumi.getter(name="interfaceVariable")
|
|
73673
|
-
def interface_variable(self) -> _builtins.str:
|
|
73674
|
-
"""
|
|
73675
|
-
Variable name
|
|
73676
|
-
"""
|
|
73677
|
-
return pulumi.get(self, "interface_variable")
|
|
73678
|
-
|
|
73679
74015
|
@_builtins.property
|
|
73680
74016
|
@pulumi.getter
|
|
73681
74017
|
def interfaces(self) -> Sequence[_builtins.str]:
|
|
@@ -73684,6 +74020,14 @@ class GetCiscoVpnFeatureTemplateIpv4StaticIpsecRouteResult(dict):
|
|
|
73684
74020
|
"""
|
|
73685
74021
|
return pulumi.get(self, "interfaces")
|
|
73686
74022
|
|
|
74023
|
+
@_builtins.property
|
|
74024
|
+
@pulumi.getter(name="interfacesVariable")
|
|
74025
|
+
def interfaces_variable(self) -> _builtins.str:
|
|
74026
|
+
"""
|
|
74027
|
+
Variable name
|
|
74028
|
+
"""
|
|
74029
|
+
return pulumi.get(self, "interfaces_variable")
|
|
74030
|
+
|
|
73687
74031
|
@_builtins.property
|
|
73688
74032
|
@pulumi.getter
|
|
73689
74033
|
def optional(self) -> _builtins.bool:
|
|
@@ -79417,8 +79761,9 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79417
79761
|
destination_data_ipv4_prefix_list_id: _builtins.str,
|
|
79418
79762
|
destination_data_ipv4_prefix_list_version: _builtins.int,
|
|
79419
79763
|
destination_ip: _builtins.str,
|
|
79764
|
+
destination_ip_variable: _builtins.str,
|
|
79420
79765
|
destination_ports: _builtins.str,
|
|
79421
|
-
dscp: _builtins.
|
|
79766
|
+
dscp: _builtins.str,
|
|
79422
79767
|
icmp_message: _builtins.str,
|
|
79423
79768
|
packet_length: _builtins.int,
|
|
79424
79769
|
priority: _builtins.str,
|
|
@@ -79426,6 +79771,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79426
79771
|
source_data_ipv4_prefix_list_id: _builtins.str,
|
|
79427
79772
|
source_data_ipv4_prefix_list_version: _builtins.int,
|
|
79428
79773
|
source_ip: _builtins.str,
|
|
79774
|
+
source_ip_variable: _builtins.str,
|
|
79429
79775
|
source_ports: _builtins.str,
|
|
79430
79776
|
tcp: _builtins.str,
|
|
79431
79777
|
type: _builtins.str):
|
|
@@ -79435,8 +79781,9 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79435
79781
|
:param _builtins.str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID
|
|
79436
79782
|
:param _builtins.int destination_data_ipv4_prefix_list_version: Destination data IPv4 prefix list version
|
|
79437
79783
|
:param _builtins.str destination_ip: Destination IP prefix
|
|
79784
|
+
:param _builtins.str destination_ip_variable: Destination IP prefix variable
|
|
79438
79785
|
:param _builtins.str destination_ports: Destination ports. Single value (0-65535) or ranges separated by spaces.
|
|
79439
|
-
:param _builtins.
|
|
79786
|
+
:param _builtins.str dscp: DSCP value
|
|
79440
79787
|
:param _builtins.str icmp_message: ICMP Message
|
|
79441
79788
|
:param _builtins.int packet_length: Packet length
|
|
79442
79789
|
:param _builtins.str priority: PLP - priority
|
|
@@ -79444,6 +79791,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79444
79791
|
:param _builtins.str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID
|
|
79445
79792
|
:param _builtins.int source_data_ipv4_prefix_list_version: Source data IPv4 prefix list version
|
|
79446
79793
|
:param _builtins.str source_ip: Source IP prefix
|
|
79794
|
+
:param _builtins.str source_ip_variable: Source IP prefix variable
|
|
79447
79795
|
:param _builtins.str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces.
|
|
79448
79796
|
:param _builtins.str tcp: TCP parameters
|
|
79449
79797
|
:param _builtins.str type: Type of match entry
|
|
@@ -79453,6 +79801,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79453
79801
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_id", destination_data_ipv4_prefix_list_id)
|
|
79454
79802
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_version", destination_data_ipv4_prefix_list_version)
|
|
79455
79803
|
pulumi.set(__self__, "destination_ip", destination_ip)
|
|
79804
|
+
pulumi.set(__self__, "destination_ip_variable", destination_ip_variable)
|
|
79456
79805
|
pulumi.set(__self__, "destination_ports", destination_ports)
|
|
79457
79806
|
pulumi.set(__self__, "dscp", dscp)
|
|
79458
79807
|
pulumi.set(__self__, "icmp_message", icmp_message)
|
|
@@ -79462,6 +79811,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79462
79811
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_id", source_data_ipv4_prefix_list_id)
|
|
79463
79812
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_version", source_data_ipv4_prefix_list_version)
|
|
79464
79813
|
pulumi.set(__self__, "source_ip", source_ip)
|
|
79814
|
+
pulumi.set(__self__, "source_ip_variable", source_ip_variable)
|
|
79465
79815
|
pulumi.set(__self__, "source_ports", source_ports)
|
|
79466
79816
|
pulumi.set(__self__, "tcp", tcp)
|
|
79467
79817
|
pulumi.set(__self__, "type", type)
|
|
@@ -79506,6 +79856,14 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79506
79856
|
"""
|
|
79507
79857
|
return pulumi.get(self, "destination_ip")
|
|
79508
79858
|
|
|
79859
|
+
@_builtins.property
|
|
79860
|
+
@pulumi.getter(name="destinationIpVariable")
|
|
79861
|
+
def destination_ip_variable(self) -> _builtins.str:
|
|
79862
|
+
"""
|
|
79863
|
+
Destination IP prefix variable
|
|
79864
|
+
"""
|
|
79865
|
+
return pulumi.get(self, "destination_ip_variable")
|
|
79866
|
+
|
|
79509
79867
|
@_builtins.property
|
|
79510
79868
|
@pulumi.getter(name="destinationPorts")
|
|
79511
79869
|
def destination_ports(self) -> _builtins.str:
|
|
@@ -79516,7 +79874,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79516
79874
|
|
|
79517
79875
|
@_builtins.property
|
|
79518
79876
|
@pulumi.getter
|
|
79519
|
-
def dscp(self) -> _builtins.
|
|
79877
|
+
def dscp(self) -> _builtins.str:
|
|
79520
79878
|
"""
|
|
79521
79879
|
DSCP value
|
|
79522
79880
|
"""
|
|
@@ -79578,6 +79936,14 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79578
79936
|
"""
|
|
79579
79937
|
return pulumi.get(self, "source_ip")
|
|
79580
79938
|
|
|
79939
|
+
@_builtins.property
|
|
79940
|
+
@pulumi.getter(name="sourceIpVariable")
|
|
79941
|
+
def source_ip_variable(self) -> _builtins.str:
|
|
79942
|
+
"""
|
|
79943
|
+
Source IP prefix variable
|
|
79944
|
+
"""
|
|
79945
|
+
return pulumi.get(self, "source_ip_variable")
|
|
79946
|
+
|
|
79581
79947
|
@_builtins.property
|
|
79582
79948
|
@pulumi.getter(name="sourcePorts")
|
|
79583
79949
|
def source_ports(self) -> _builtins.str:
|
|
@@ -79700,30 +80066,36 @@ class GetIpv4DeviceAclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79700
80066
|
destination_data_ipv4_prefix_list_id: _builtins.str,
|
|
79701
80067
|
destination_data_ipv4_prefix_list_version: _builtins.int,
|
|
79702
80068
|
destination_ip: _builtins.str,
|
|
80069
|
+
destination_ip_variable: _builtins.str,
|
|
79703
80070
|
destination_port: _builtins.int,
|
|
79704
80071
|
source_data_ipv4_prefix_list_id: _builtins.str,
|
|
79705
80072
|
source_data_ipv4_prefix_list_version: _builtins.int,
|
|
79706
80073
|
source_ip: _builtins.str,
|
|
80074
|
+
source_ip_variable: _builtins.str,
|
|
79707
80075
|
source_ports: _builtins.str,
|
|
79708
80076
|
type: _builtins.str):
|
|
79709
80077
|
"""
|
|
79710
80078
|
:param _builtins.str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID
|
|
79711
80079
|
:param _builtins.int destination_data_ipv4_prefix_list_version: Destination data IPv4 prefix list version
|
|
79712
80080
|
:param _builtins.str destination_ip: Destination IP prefix
|
|
80081
|
+
:param _builtins.str destination_ip_variable: Destination IP prefix variable
|
|
79713
80082
|
:param _builtins.int destination_port: Destination port, only `22` and `161` supported
|
|
79714
80083
|
:param _builtins.str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID
|
|
79715
80084
|
:param _builtins.int source_data_ipv4_prefix_list_version: Source data IPv4 prefix list version
|
|
79716
80085
|
:param _builtins.str source_ip: Source IP prefix
|
|
80086
|
+
:param _builtins.str source_ip_variable: Source IP prefix variable
|
|
79717
80087
|
:param _builtins.str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces.
|
|
79718
80088
|
:param _builtins.str type: Type of match entry
|
|
79719
80089
|
"""
|
|
79720
80090
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_id", destination_data_ipv4_prefix_list_id)
|
|
79721
80091
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_version", destination_data_ipv4_prefix_list_version)
|
|
79722
80092
|
pulumi.set(__self__, "destination_ip", destination_ip)
|
|
80093
|
+
pulumi.set(__self__, "destination_ip_variable", destination_ip_variable)
|
|
79723
80094
|
pulumi.set(__self__, "destination_port", destination_port)
|
|
79724
80095
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_id", source_data_ipv4_prefix_list_id)
|
|
79725
80096
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_version", source_data_ipv4_prefix_list_version)
|
|
79726
80097
|
pulumi.set(__self__, "source_ip", source_ip)
|
|
80098
|
+
pulumi.set(__self__, "source_ip_variable", source_ip_variable)
|
|
79727
80099
|
pulumi.set(__self__, "source_ports", source_ports)
|
|
79728
80100
|
pulumi.set(__self__, "type", type)
|
|
79729
80101
|
|
|
@@ -79751,6 +80123,14 @@ class GetIpv4DeviceAclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79751
80123
|
"""
|
|
79752
80124
|
return pulumi.get(self, "destination_ip")
|
|
79753
80125
|
|
|
80126
|
+
@_builtins.property
|
|
80127
|
+
@pulumi.getter(name="destinationIpVariable")
|
|
80128
|
+
def destination_ip_variable(self) -> _builtins.str:
|
|
80129
|
+
"""
|
|
80130
|
+
Destination IP prefix variable
|
|
80131
|
+
"""
|
|
80132
|
+
return pulumi.get(self, "destination_ip_variable")
|
|
80133
|
+
|
|
79754
80134
|
@_builtins.property
|
|
79755
80135
|
@pulumi.getter(name="destinationPort")
|
|
79756
80136
|
def destination_port(self) -> _builtins.int:
|
|
@@ -79783,6 +80163,14 @@ class GetIpv4DeviceAclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79783
80163
|
"""
|
|
79784
80164
|
return pulumi.get(self, "source_ip")
|
|
79785
80165
|
|
|
80166
|
+
@_builtins.property
|
|
80167
|
+
@pulumi.getter(name="sourceIpVariable")
|
|
80168
|
+
def source_ip_variable(self) -> _builtins.str:
|
|
80169
|
+
"""
|
|
80170
|
+
Source IP prefix variable
|
|
80171
|
+
"""
|
|
80172
|
+
return pulumi.get(self, "source_ip_variable")
|
|
80173
|
+
|
|
79786
80174
|
@_builtins.property
|
|
79787
80175
|
@pulumi.getter(name="sourcePorts")
|
|
79788
80176
|
def source_ports(self) -> _builtins.str:
|
|
@@ -80899,6 +81287,86 @@ class GetOtherUcseFeatureInterfaceResult(dict):
|
|
|
80899
81287
|
return pulumi.get(self, "ucse_interface_vpn_variable")
|
|
80900
81288
|
|
|
80901
81289
|
|
|
81290
|
+
@pulumi.output_type
|
|
81291
|
+
class GetPolicyGroupDeviceResult(dict):
|
|
81292
|
+
def __init__(__self__, *,
|
|
81293
|
+
deploy: _builtins.bool,
|
|
81294
|
+
id: _builtins.str,
|
|
81295
|
+
variables: Sequence['outputs.GetPolicyGroupDeviceVariableResult']):
|
|
81296
|
+
"""
|
|
81297
|
+
:param _builtins.bool deploy: Deploy to device if enabled.
|
|
81298
|
+
:param _builtins.str id: Device ID
|
|
81299
|
+
:param Sequence['GetPolicyGroupDeviceVariableArgs'] variables: List of variables
|
|
81300
|
+
"""
|
|
81301
|
+
pulumi.set(__self__, "deploy", deploy)
|
|
81302
|
+
pulumi.set(__self__, "id", id)
|
|
81303
|
+
pulumi.set(__self__, "variables", variables)
|
|
81304
|
+
|
|
81305
|
+
@_builtins.property
|
|
81306
|
+
@pulumi.getter
|
|
81307
|
+
def deploy(self) -> _builtins.bool:
|
|
81308
|
+
"""
|
|
81309
|
+
Deploy to device if enabled.
|
|
81310
|
+
"""
|
|
81311
|
+
return pulumi.get(self, "deploy")
|
|
81312
|
+
|
|
81313
|
+
@_builtins.property
|
|
81314
|
+
@pulumi.getter
|
|
81315
|
+
def id(self) -> _builtins.str:
|
|
81316
|
+
"""
|
|
81317
|
+
Device ID
|
|
81318
|
+
"""
|
|
81319
|
+
return pulumi.get(self, "id")
|
|
81320
|
+
|
|
81321
|
+
@_builtins.property
|
|
81322
|
+
@pulumi.getter
|
|
81323
|
+
def variables(self) -> Sequence['outputs.GetPolicyGroupDeviceVariableResult']:
|
|
81324
|
+
"""
|
|
81325
|
+
List of variables
|
|
81326
|
+
"""
|
|
81327
|
+
return pulumi.get(self, "variables")
|
|
81328
|
+
|
|
81329
|
+
|
|
81330
|
+
@pulumi.output_type
|
|
81331
|
+
class GetPolicyGroupDeviceVariableResult(dict):
|
|
81332
|
+
def __init__(__self__, *,
|
|
81333
|
+
list_values: Sequence[_builtins.str],
|
|
81334
|
+
name: _builtins.str,
|
|
81335
|
+
value: _builtins.str):
|
|
81336
|
+
"""
|
|
81337
|
+
:param Sequence[_builtins.str] list_values: Use this instead of `value` in case value is of type `List`.
|
|
81338
|
+
:param _builtins.str name: Variable name
|
|
81339
|
+
:param _builtins.str value: Variable value
|
|
81340
|
+
"""
|
|
81341
|
+
pulumi.set(__self__, "list_values", list_values)
|
|
81342
|
+
pulumi.set(__self__, "name", name)
|
|
81343
|
+
pulumi.set(__self__, "value", value)
|
|
81344
|
+
|
|
81345
|
+
@_builtins.property
|
|
81346
|
+
@pulumi.getter(name="listValues")
|
|
81347
|
+
def list_values(self) -> Sequence[_builtins.str]:
|
|
81348
|
+
"""
|
|
81349
|
+
Use this instead of `value` in case value is of type `List`.
|
|
81350
|
+
"""
|
|
81351
|
+
return pulumi.get(self, "list_values")
|
|
81352
|
+
|
|
81353
|
+
@_builtins.property
|
|
81354
|
+
@pulumi.getter
|
|
81355
|
+
def name(self) -> _builtins.str:
|
|
81356
|
+
"""
|
|
81357
|
+
Variable name
|
|
81358
|
+
"""
|
|
81359
|
+
return pulumi.get(self, "name")
|
|
81360
|
+
|
|
81361
|
+
@_builtins.property
|
|
81362
|
+
@pulumi.getter
|
|
81363
|
+
def value(self) -> _builtins.str:
|
|
81364
|
+
"""
|
|
81365
|
+
Variable value
|
|
81366
|
+
"""
|
|
81367
|
+
return pulumi.get(self, "value")
|
|
81368
|
+
|
|
81369
|
+
|
|
80902
81370
|
@pulumi.output_type
|
|
80903
81371
|
class GetPolicyObjectAppProbeClassEntryResult(dict):
|
|
80904
81372
|
def __init__(__self__, *,
|
|
@@ -81962,6 +82430,7 @@ class GetRoutePolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
81962
82430
|
atomic_aggregate: _builtins.bool,
|
|
81963
82431
|
community: _builtins.str,
|
|
81964
82432
|
community_additive: _builtins.bool,
|
|
82433
|
+
community_variable: _builtins.str,
|
|
81965
82434
|
local_preference: _builtins.int,
|
|
81966
82435
|
metric: _builtins.int,
|
|
81967
82436
|
metric_type: _builtins.str,
|
|
@@ -81980,6 +82449,7 @@ class GetRoutePolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
81980
82449
|
:param _builtins.bool atomic_aggregate: Atomic aggregate
|
|
81981
82450
|
:param _builtins.str community: Community value, e.g. `1000:10000` or `internet` or `local-AS`
|
|
81982
82451
|
:param _builtins.bool community_additive: Community additive
|
|
82452
|
+
:param _builtins.str community_variable: Community variable
|
|
81983
82453
|
:param _builtins.int local_preference: Local preference
|
|
81984
82454
|
:param _builtins.int metric: Metric
|
|
81985
82455
|
:param _builtins.str metric_type: Metric type
|
|
@@ -81998,6 +82468,7 @@ class GetRoutePolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
81998
82468
|
pulumi.set(__self__, "atomic_aggregate", atomic_aggregate)
|
|
81999
82469
|
pulumi.set(__self__, "community", community)
|
|
82000
82470
|
pulumi.set(__self__, "community_additive", community_additive)
|
|
82471
|
+
pulumi.set(__self__, "community_variable", community_variable)
|
|
82001
82472
|
pulumi.set(__self__, "local_preference", local_preference)
|
|
82002
82473
|
pulumi.set(__self__, "metric", metric)
|
|
82003
82474
|
pulumi.set(__self__, "metric_type", metric_type)
|
|
@@ -82065,6 +82536,14 @@ class GetRoutePolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
82065
82536
|
"""
|
|
82066
82537
|
return pulumi.get(self, "community_additive")
|
|
82067
82538
|
|
|
82539
|
+
@_builtins.property
|
|
82540
|
+
@pulumi.getter(name="communityVariable")
|
|
82541
|
+
def community_variable(self) -> _builtins.str:
|
|
82542
|
+
"""
|
|
82543
|
+
Community variable
|
|
82544
|
+
"""
|
|
82545
|
+
return pulumi.get(self, "community_variable")
|
|
82546
|
+
|
|
82068
82547
|
@_builtins.property
|
|
82069
82548
|
@pulumi.getter(name="localPreference")
|
|
82070
82549
|
def local_preference(self) -> _builtins.int:
|
|
@@ -82155,6 +82634,7 @@ class GetRoutePolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
82155
82634
|
community_list_match_flag: _builtins.str,
|
|
82156
82635
|
community_list_versions: Sequence[_builtins.str],
|
|
82157
82636
|
expanded_community_list_id: _builtins.str,
|
|
82637
|
+
expanded_community_list_variable: _builtins.str,
|
|
82158
82638
|
expanded_community_list_version: _builtins.int,
|
|
82159
82639
|
extended_community_list_id: _builtins.str,
|
|
82160
82640
|
extended_community_list_version: _builtins.int,
|
|
@@ -82176,6 +82656,7 @@ class GetRoutePolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
82176
82656
|
:param _builtins.str community_list_match_flag: Community list match flag
|
|
82177
82657
|
:param Sequence[_builtins.str] community_list_versions: Community list versions
|
|
82178
82658
|
:param _builtins.str expanded_community_list_id: Expanded community list ID
|
|
82659
|
+
:param _builtins.str expanded_community_list_variable: Expanded community list variable
|
|
82179
82660
|
:param _builtins.int expanded_community_list_version: Expanded community list version
|
|
82180
82661
|
:param _builtins.str extended_community_list_id: Extended community list ID
|
|
82181
82662
|
:param _builtins.int extended_community_list_version: Extended community list version
|
|
@@ -82197,6 +82678,7 @@ class GetRoutePolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
82197
82678
|
pulumi.set(__self__, "community_list_match_flag", community_list_match_flag)
|
|
82198
82679
|
pulumi.set(__self__, "community_list_versions", community_list_versions)
|
|
82199
82680
|
pulumi.set(__self__, "expanded_community_list_id", expanded_community_list_id)
|
|
82681
|
+
pulumi.set(__self__, "expanded_community_list_variable", expanded_community_list_variable)
|
|
82200
82682
|
pulumi.set(__self__, "expanded_community_list_version", expanded_community_list_version)
|
|
82201
82683
|
pulumi.set(__self__, "extended_community_list_id", extended_community_list_id)
|
|
82202
82684
|
pulumi.set(__self__, "extended_community_list_version", extended_community_list_version)
|
|
@@ -82260,6 +82742,14 @@ class GetRoutePolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
82260
82742
|
"""
|
|
82261
82743
|
return pulumi.get(self, "expanded_community_list_id")
|
|
82262
82744
|
|
|
82745
|
+
@_builtins.property
|
|
82746
|
+
@pulumi.getter(name="expandedCommunityListVariable")
|
|
82747
|
+
def expanded_community_list_variable(self) -> _builtins.str:
|
|
82748
|
+
"""
|
|
82749
|
+
Expanded community list variable
|
|
82750
|
+
"""
|
|
82751
|
+
return pulumi.get(self, "expanded_community_list_variable")
|
|
82752
|
+
|
|
82263
82753
|
@_builtins.property
|
|
82264
82754
|
@pulumi.getter(name="expandedCommunityListVersion")
|
|
82265
82755
|
def expanded_community_list_version(self) -> _builtins.int:
|
|
@@ -84351,7 +84841,8 @@ class GetServiceLanVpnFeatureIpv4ImportRouteTargetResult(dict):
|
|
|
84351
84841
|
@pulumi.output_type
|
|
84352
84842
|
class GetServiceLanVpnFeatureIpv4StaticRouteResult(dict):
|
|
84353
84843
|
def __init__(__self__, *,
|
|
84354
|
-
|
|
84844
|
+
dhcp: _builtins.bool,
|
|
84845
|
+
gateway: _builtins.str,
|
|
84355
84846
|
network_address: _builtins.str,
|
|
84356
84847
|
network_address_variable: _builtins.str,
|
|
84357
84848
|
next_hop_with_trackers: Sequence['outputs.GetServiceLanVpnFeatureIpv4StaticRouteNextHopWithTrackerResult'],
|
|
@@ -84361,7 +84852,8 @@ class GetServiceLanVpnFeatureIpv4StaticRouteResult(dict):
|
|
|
84361
84852
|
subnet_mask_variable: _builtins.str,
|
|
84362
84853
|
vpn: _builtins.bool):
|
|
84363
84854
|
"""
|
|
84364
|
-
:param _builtins.bool
|
|
84855
|
+
:param _builtins.bool dhcp: IPv4 Route Gateway DHCP
|
|
84856
|
+
:param _builtins.str gateway: Gateway type
|
|
84365
84857
|
:param _builtins.str network_address: IP Address
|
|
84366
84858
|
:param _builtins.str network_address_variable: Variable name
|
|
84367
84859
|
:param Sequence['GetServiceLanVpnFeatureIpv4StaticRouteNextHopWithTrackerArgs'] next_hop_with_trackers: IPv4 Route Gateway Next Hop with Tracker
|
|
@@ -84371,7 +84863,8 @@ class GetServiceLanVpnFeatureIpv4StaticRouteResult(dict):
|
|
|
84371
84863
|
:param _builtins.str subnet_mask_variable: Variable name
|
|
84372
84864
|
:param _builtins.bool vpn: IPv4 Route Gateway VPN
|
|
84373
84865
|
"""
|
|
84374
|
-
pulumi.set(__self__, "
|
|
84866
|
+
pulumi.set(__self__, "dhcp", dhcp)
|
|
84867
|
+
pulumi.set(__self__, "gateway", gateway)
|
|
84375
84868
|
pulumi.set(__self__, "network_address", network_address)
|
|
84376
84869
|
pulumi.set(__self__, "network_address_variable", network_address_variable)
|
|
84377
84870
|
pulumi.set(__self__, "next_hop_with_trackers", next_hop_with_trackers)
|
|
@@ -84382,12 +84875,20 @@ class GetServiceLanVpnFeatureIpv4StaticRouteResult(dict):
|
|
|
84382
84875
|
pulumi.set(__self__, "vpn", vpn)
|
|
84383
84876
|
|
|
84384
84877
|
@_builtins.property
|
|
84385
|
-
@pulumi.getter
|
|
84386
|
-
def
|
|
84878
|
+
@pulumi.getter
|
|
84879
|
+
def dhcp(self) -> _builtins.bool:
|
|
84387
84880
|
"""
|
|
84388
84881
|
IPv4 Route Gateway DHCP
|
|
84389
84882
|
"""
|
|
84390
|
-
return pulumi.get(self, "
|
|
84883
|
+
return pulumi.get(self, "dhcp")
|
|
84884
|
+
|
|
84885
|
+
@_builtins.property
|
|
84886
|
+
@pulumi.getter
|
|
84887
|
+
def gateway(self) -> _builtins.str:
|
|
84888
|
+
"""
|
|
84889
|
+
Gateway type
|
|
84890
|
+
"""
|
|
84891
|
+
return pulumi.get(self, "gateway")
|
|
84391
84892
|
|
|
84392
84893
|
@_builtins.property
|
|
84393
84894
|
@pulumi.getter(name="networkAddress")
|
|
@@ -84624,6 +85125,7 @@ class GetServiceLanVpnFeatureIpv6ImportRouteTargetResult(dict):
|
|
|
84624
85125
|
@pulumi.output_type
|
|
84625
85126
|
class GetServiceLanVpnFeatureIpv6StaticRouteResult(dict):
|
|
84626
85127
|
def __init__(__self__, *,
|
|
85128
|
+
gateway: _builtins.str,
|
|
84627
85129
|
nat: _builtins.str,
|
|
84628
85130
|
nat_variable: _builtins.str,
|
|
84629
85131
|
next_hops: Sequence['outputs.GetServiceLanVpnFeatureIpv6StaticRouteNextHopResult'],
|
|
@@ -84631,6 +85133,7 @@ class GetServiceLanVpnFeatureIpv6StaticRouteResult(dict):
|
|
|
84631
85133
|
prefix: _builtins.str,
|
|
84632
85134
|
prefix_variable: _builtins.str):
|
|
84633
85135
|
"""
|
|
85136
|
+
:param _builtins.str gateway: Gateway type
|
|
84634
85137
|
:param _builtins.str nat: IPv6 Nat
|
|
84635
85138
|
:param _builtins.str nat_variable: Variable name
|
|
84636
85139
|
:param Sequence['GetServiceLanVpnFeatureIpv6StaticRouteNextHopArgs'] next_hops: IPv6 Route Gateway Next Hop
|
|
@@ -84638,6 +85141,7 @@ class GetServiceLanVpnFeatureIpv6StaticRouteResult(dict):
|
|
|
84638
85141
|
:param _builtins.str prefix: Prefix
|
|
84639
85142
|
:param _builtins.str prefix_variable: Variable name
|
|
84640
85143
|
"""
|
|
85144
|
+
pulumi.set(__self__, "gateway", gateway)
|
|
84641
85145
|
pulumi.set(__self__, "nat", nat)
|
|
84642
85146
|
pulumi.set(__self__, "nat_variable", nat_variable)
|
|
84643
85147
|
pulumi.set(__self__, "next_hops", next_hops)
|
|
@@ -84645,6 +85149,14 @@ class GetServiceLanVpnFeatureIpv6StaticRouteResult(dict):
|
|
|
84645
85149
|
pulumi.set(__self__, "prefix", prefix)
|
|
84646
85150
|
pulumi.set(__self__, "prefix_variable", prefix_variable)
|
|
84647
85151
|
|
|
85152
|
+
@_builtins.property
|
|
85153
|
+
@pulumi.getter
|
|
85154
|
+
def gateway(self) -> _builtins.str:
|
|
85155
|
+
"""
|
|
85156
|
+
Gateway type
|
|
85157
|
+
"""
|
|
85158
|
+
return pulumi.get(self, "gateway")
|
|
85159
|
+
|
|
84648
85160
|
@_builtins.property
|
|
84649
85161
|
@pulumi.getter
|
|
84650
85162
|
def nat(self) -> _builtins.str:
|
|
@@ -88613,65 +89125,105 @@ class GetServiceRoutingBgpFeatureIpv4NeighborResult(dict):
|
|
|
88613
89125
|
@pulumi.output_type
|
|
88614
89126
|
class GetServiceRoutingBgpFeatureIpv4NeighborAddressFamilyResult(dict):
|
|
88615
89127
|
def __init__(__self__, *,
|
|
89128
|
+
disable_peer_max_number_of_prefixes: _builtins.int,
|
|
89129
|
+
disable_peer_max_number_of_prefixes_variable: _builtins.str,
|
|
89130
|
+
disable_peer_threshold: _builtins.int,
|
|
89131
|
+
disable_peer_threshold_variable: _builtins.str,
|
|
88616
89132
|
family_type: _builtins.str,
|
|
88617
89133
|
in_route_policy_id: _builtins.str,
|
|
88618
|
-
max_number_of_prefixes: _builtins.int,
|
|
88619
|
-
max_number_of_prefixes_variable: _builtins.str,
|
|
88620
89134
|
out_route_policy_id: _builtins.str,
|
|
88621
89135
|
policy_type: _builtins.str,
|
|
88622
89136
|
restart_interval: _builtins.int,
|
|
88623
89137
|
restart_interval_variable: _builtins.str,
|
|
88624
|
-
|
|
88625
|
-
|
|
89138
|
+
restart_max_number_of_prefixes: _builtins.int,
|
|
89139
|
+
restart_max_number_of_prefixes_variable: _builtins.str,
|
|
89140
|
+
restart_threshold: _builtins.int,
|
|
89141
|
+
restart_threshold_variable: _builtins.str,
|
|
89142
|
+
warning_message_max_number_of_prefixes: _builtins.int,
|
|
89143
|
+
warning_message_max_number_of_prefixes_variable: _builtins.str,
|
|
89144
|
+
warning_message_threshold: _builtins.int,
|
|
89145
|
+
warning_message_threshold_variable: _builtins.str):
|
|
88626
89146
|
"""
|
|
89147
|
+
:param _builtins.int disable_peer_max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer
|
|
89148
|
+
:param _builtins.str disable_peer_max_number_of_prefixes_variable: Variable name
|
|
89149
|
+
:param _builtins.int disable_peer_threshold: Set threshold(1 to 100) at which to generate a warning message
|
|
89150
|
+
:param _builtins.str disable_peer_threshold_variable: Variable name
|
|
88627
89151
|
:param _builtins.str family_type: Set IPv4 unicast address family
|
|
88628
|
-
:param _builtins.int max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer
|
|
88629
|
-
:param _builtins.str max_number_of_prefixes_variable: Variable name
|
|
88630
89152
|
:param _builtins.str policy_type: Neighbor received maximum prefix policy is disabled.
|
|
88631
89153
|
:param _builtins.int restart_interval: Set the restart interval(minutes) when to restart BGP connection if threshold is exceeded
|
|
88632
89154
|
:param _builtins.str restart_interval_variable: Variable name
|
|
88633
|
-
:param _builtins.int
|
|
88634
|
-
:param _builtins.str
|
|
89155
|
+
:param _builtins.int restart_max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer
|
|
89156
|
+
:param _builtins.str restart_max_number_of_prefixes_variable: Variable name
|
|
89157
|
+
:param _builtins.int restart_threshold: Set threshold(1 to 100) at which to generate a warning message
|
|
89158
|
+
:param _builtins.str restart_threshold_variable: Variable name
|
|
89159
|
+
:param _builtins.int warning_message_max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer
|
|
89160
|
+
:param _builtins.str warning_message_max_number_of_prefixes_variable: Variable name
|
|
89161
|
+
:param _builtins.int warning_message_threshold: Set threshold(1 to 100) at which to generate a warning message
|
|
89162
|
+
:param _builtins.str warning_message_threshold_variable: Variable name
|
|
88635
89163
|
"""
|
|
89164
|
+
pulumi.set(__self__, "disable_peer_max_number_of_prefixes", disable_peer_max_number_of_prefixes)
|
|
89165
|
+
pulumi.set(__self__, "disable_peer_max_number_of_prefixes_variable", disable_peer_max_number_of_prefixes_variable)
|
|
89166
|
+
pulumi.set(__self__, "disable_peer_threshold", disable_peer_threshold)
|
|
89167
|
+
pulumi.set(__self__, "disable_peer_threshold_variable", disable_peer_threshold_variable)
|
|
88636
89168
|
pulumi.set(__self__, "family_type", family_type)
|
|
88637
89169
|
pulumi.set(__self__, "in_route_policy_id", in_route_policy_id)
|
|
88638
|
-
pulumi.set(__self__, "max_number_of_prefixes", max_number_of_prefixes)
|
|
88639
|
-
pulumi.set(__self__, "max_number_of_prefixes_variable", max_number_of_prefixes_variable)
|
|
88640
89170
|
pulumi.set(__self__, "out_route_policy_id", out_route_policy_id)
|
|
88641
89171
|
pulumi.set(__self__, "policy_type", policy_type)
|
|
88642
89172
|
pulumi.set(__self__, "restart_interval", restart_interval)
|
|
88643
89173
|
pulumi.set(__self__, "restart_interval_variable", restart_interval_variable)
|
|
88644
|
-
pulumi.set(__self__, "
|
|
88645
|
-
pulumi.set(__self__, "
|
|
89174
|
+
pulumi.set(__self__, "restart_max_number_of_prefixes", restart_max_number_of_prefixes)
|
|
89175
|
+
pulumi.set(__self__, "restart_max_number_of_prefixes_variable", restart_max_number_of_prefixes_variable)
|
|
89176
|
+
pulumi.set(__self__, "restart_threshold", restart_threshold)
|
|
89177
|
+
pulumi.set(__self__, "restart_threshold_variable", restart_threshold_variable)
|
|
89178
|
+
pulumi.set(__self__, "warning_message_max_number_of_prefixes", warning_message_max_number_of_prefixes)
|
|
89179
|
+
pulumi.set(__self__, "warning_message_max_number_of_prefixes_variable", warning_message_max_number_of_prefixes_variable)
|
|
89180
|
+
pulumi.set(__self__, "warning_message_threshold", warning_message_threshold)
|
|
89181
|
+
pulumi.set(__self__, "warning_message_threshold_variable", warning_message_threshold_variable)
|
|
88646
89182
|
|
|
88647
89183
|
@_builtins.property
|
|
88648
|
-
@pulumi.getter(name="
|
|
88649
|
-
def
|
|
89184
|
+
@pulumi.getter(name="disablePeerMaxNumberOfPrefixes")
|
|
89185
|
+
def disable_peer_max_number_of_prefixes(self) -> _builtins.int:
|
|
88650
89186
|
"""
|
|
88651
|
-
Set
|
|
89187
|
+
Set maximum number of prefixes accepted from BGP peer
|
|
88652
89188
|
"""
|
|
88653
|
-
return pulumi.get(self, "
|
|
89189
|
+
return pulumi.get(self, "disable_peer_max_number_of_prefixes")
|
|
88654
89190
|
|
|
88655
89191
|
@_builtins.property
|
|
88656
|
-
@pulumi.getter(name="
|
|
88657
|
-
def
|
|
88658
|
-
|
|
89192
|
+
@pulumi.getter(name="disablePeerMaxNumberOfPrefixesVariable")
|
|
89193
|
+
def disable_peer_max_number_of_prefixes_variable(self) -> _builtins.str:
|
|
89194
|
+
"""
|
|
89195
|
+
Variable name
|
|
89196
|
+
"""
|
|
89197
|
+
return pulumi.get(self, "disable_peer_max_number_of_prefixes_variable")
|
|
88659
89198
|
|
|
88660
89199
|
@_builtins.property
|
|
88661
|
-
@pulumi.getter(name="
|
|
88662
|
-
def
|
|
89200
|
+
@pulumi.getter(name="disablePeerThreshold")
|
|
89201
|
+
def disable_peer_threshold(self) -> _builtins.int:
|
|
88663
89202
|
"""
|
|
88664
|
-
Set
|
|
89203
|
+
Set threshold(1 to 100) at which to generate a warning message
|
|
88665
89204
|
"""
|
|
88666
|
-
return pulumi.get(self, "
|
|
89205
|
+
return pulumi.get(self, "disable_peer_threshold")
|
|
88667
89206
|
|
|
88668
89207
|
@_builtins.property
|
|
88669
|
-
@pulumi.getter(name="
|
|
88670
|
-
def
|
|
89208
|
+
@pulumi.getter(name="disablePeerThresholdVariable")
|
|
89209
|
+
def disable_peer_threshold_variable(self) -> _builtins.str:
|
|
88671
89210
|
"""
|
|
88672
89211
|
Variable name
|
|
88673
89212
|
"""
|
|
88674
|
-
return pulumi.get(self, "
|
|
89213
|
+
return pulumi.get(self, "disable_peer_threshold_variable")
|
|
89214
|
+
|
|
89215
|
+
@_builtins.property
|
|
89216
|
+
@pulumi.getter(name="familyType")
|
|
89217
|
+
def family_type(self) -> _builtins.str:
|
|
89218
|
+
"""
|
|
89219
|
+
Set IPv4 unicast address family
|
|
89220
|
+
"""
|
|
89221
|
+
return pulumi.get(self, "family_type")
|
|
89222
|
+
|
|
89223
|
+
@_builtins.property
|
|
89224
|
+
@pulumi.getter(name="inRoutePolicyId")
|
|
89225
|
+
def in_route_policy_id(self) -> _builtins.str:
|
|
89226
|
+
return pulumi.get(self, "in_route_policy_id")
|
|
88675
89227
|
|
|
88676
89228
|
@_builtins.property
|
|
88677
89229
|
@pulumi.getter(name="outRoutePolicyId")
|
|
@@ -88703,20 +89255,68 @@ class GetServiceRoutingBgpFeatureIpv4NeighborAddressFamilyResult(dict):
|
|
|
88703
89255
|
return pulumi.get(self, "restart_interval_variable")
|
|
88704
89256
|
|
|
88705
89257
|
@_builtins.property
|
|
88706
|
-
@pulumi.getter
|
|
88707
|
-
def
|
|
89258
|
+
@pulumi.getter(name="restartMaxNumberOfPrefixes")
|
|
89259
|
+
def restart_max_number_of_prefixes(self) -> _builtins.int:
|
|
89260
|
+
"""
|
|
89261
|
+
Set maximum number of prefixes accepted from BGP peer
|
|
89262
|
+
"""
|
|
89263
|
+
return pulumi.get(self, "restart_max_number_of_prefixes")
|
|
89264
|
+
|
|
89265
|
+
@_builtins.property
|
|
89266
|
+
@pulumi.getter(name="restartMaxNumberOfPrefixesVariable")
|
|
89267
|
+
def restart_max_number_of_prefixes_variable(self) -> _builtins.str:
|
|
89268
|
+
"""
|
|
89269
|
+
Variable name
|
|
89270
|
+
"""
|
|
89271
|
+
return pulumi.get(self, "restart_max_number_of_prefixes_variable")
|
|
89272
|
+
|
|
89273
|
+
@_builtins.property
|
|
89274
|
+
@pulumi.getter(name="restartThreshold")
|
|
89275
|
+
def restart_threshold(self) -> _builtins.int:
|
|
88708
89276
|
"""
|
|
88709
89277
|
Set threshold(1 to 100) at which to generate a warning message
|
|
88710
89278
|
"""
|
|
88711
|
-
return pulumi.get(self, "
|
|
89279
|
+
return pulumi.get(self, "restart_threshold")
|
|
88712
89280
|
|
|
88713
89281
|
@_builtins.property
|
|
88714
|
-
@pulumi.getter(name="
|
|
88715
|
-
def
|
|
89282
|
+
@pulumi.getter(name="restartThresholdVariable")
|
|
89283
|
+
def restart_threshold_variable(self) -> _builtins.str:
|
|
88716
89284
|
"""
|
|
88717
89285
|
Variable name
|
|
88718
89286
|
"""
|
|
88719
|
-
return pulumi.get(self, "
|
|
89287
|
+
return pulumi.get(self, "restart_threshold_variable")
|
|
89288
|
+
|
|
89289
|
+
@_builtins.property
|
|
89290
|
+
@pulumi.getter(name="warningMessageMaxNumberOfPrefixes")
|
|
89291
|
+
def warning_message_max_number_of_prefixes(self) -> _builtins.int:
|
|
89292
|
+
"""
|
|
89293
|
+
Set maximum number of prefixes accepted from BGP peer
|
|
89294
|
+
"""
|
|
89295
|
+
return pulumi.get(self, "warning_message_max_number_of_prefixes")
|
|
89296
|
+
|
|
89297
|
+
@_builtins.property
|
|
89298
|
+
@pulumi.getter(name="warningMessageMaxNumberOfPrefixesVariable")
|
|
89299
|
+
def warning_message_max_number_of_prefixes_variable(self) -> _builtins.str:
|
|
89300
|
+
"""
|
|
89301
|
+
Variable name
|
|
89302
|
+
"""
|
|
89303
|
+
return pulumi.get(self, "warning_message_max_number_of_prefixes_variable")
|
|
89304
|
+
|
|
89305
|
+
@_builtins.property
|
|
89306
|
+
@pulumi.getter(name="warningMessageThreshold")
|
|
89307
|
+
def warning_message_threshold(self) -> _builtins.int:
|
|
89308
|
+
"""
|
|
89309
|
+
Set threshold(1 to 100) at which to generate a warning message
|
|
89310
|
+
"""
|
|
89311
|
+
return pulumi.get(self, "warning_message_threshold")
|
|
89312
|
+
|
|
89313
|
+
@_builtins.property
|
|
89314
|
+
@pulumi.getter(name="warningMessageThresholdVariable")
|
|
89315
|
+
def warning_message_threshold_variable(self) -> _builtins.str:
|
|
89316
|
+
"""
|
|
89317
|
+
Variable name
|
|
89318
|
+
"""
|
|
89319
|
+
return pulumi.get(self, "warning_message_threshold_variable")
|
|
88720
89320
|
|
|
88721
89321
|
|
|
88722
89322
|
@pulumi.output_type
|
|
@@ -95101,17 +95701,17 @@ class GetTlsSslDecryptionPolicyDefinitionUrlRuleResult(dict):
|
|
|
95101
95701
|
rule_name: _builtins.str,
|
|
95102
95702
|
target_vpns: Sequence[_builtins.str],
|
|
95103
95703
|
tls_ssl_profile_policy_id: _builtins.str,
|
|
95104
|
-
|
|
95704
|
+
tls_ssl_profile_policy_version: _builtins.int):
|
|
95105
95705
|
"""
|
|
95106
95706
|
:param _builtins.str rule_name: Country
|
|
95107
95707
|
:param Sequence[_builtins.str] target_vpns: List of VPN IDs
|
|
95108
95708
|
:param _builtins.str tls_ssl_profile_policy_id: TLS SSL Profile Policy ID
|
|
95109
|
-
:param _builtins.int
|
|
95709
|
+
:param _builtins.int tls_ssl_profile_policy_version: TLS SSL Profile Policy version
|
|
95110
95710
|
"""
|
|
95111
95711
|
pulumi.set(__self__, "rule_name", rule_name)
|
|
95112
95712
|
pulumi.set(__self__, "target_vpns", target_vpns)
|
|
95113
95713
|
pulumi.set(__self__, "tls_ssl_profile_policy_id", tls_ssl_profile_policy_id)
|
|
95114
|
-
pulumi.set(__self__, "
|
|
95714
|
+
pulumi.set(__self__, "tls_ssl_profile_policy_version", tls_ssl_profile_policy_version)
|
|
95115
95715
|
|
|
95116
95716
|
@_builtins.property
|
|
95117
95717
|
@pulumi.getter(name="ruleName")
|
|
@@ -95138,12 +95738,12 @@ class GetTlsSslDecryptionPolicyDefinitionUrlRuleResult(dict):
|
|
|
95138
95738
|
return pulumi.get(self, "tls_ssl_profile_policy_id")
|
|
95139
95739
|
|
|
95140
95740
|
@_builtins.property
|
|
95141
|
-
@pulumi.getter(name="
|
|
95142
|
-
def
|
|
95741
|
+
@pulumi.getter(name="tlsSslProfilePolicyVersion")
|
|
95742
|
+
def tls_ssl_profile_policy_version(self) -> _builtins.int:
|
|
95143
95743
|
"""
|
|
95144
95744
|
TLS SSL Profile Policy version
|
|
95145
95745
|
"""
|
|
95146
|
-
return pulumi.get(self, "
|
|
95746
|
+
return pulumi.get(self, "tls_ssl_profile_policy_version")
|
|
95147
95747
|
|
|
95148
95748
|
|
|
95149
95749
|
@pulumi.output_type
|
|
@@ -95509,7 +96109,7 @@ class GetTrafficDataPolicyDefinitionSequenceActionEntrySetParameterResult(dict):
|
|
|
95509
96109
|
next_hop_loose: _builtins.bool,
|
|
95510
96110
|
policer_list_id: _builtins.str,
|
|
95511
96111
|
policer_list_version: _builtins.int,
|
|
95512
|
-
|
|
96112
|
+
preferred_color_group_list_id: _builtins.str,
|
|
95513
96113
|
preferred_color_group_list_version: _builtins.int,
|
|
95514
96114
|
service_tloc_color: _builtins.str,
|
|
95515
96115
|
service_tloc_encapsulation: _builtins.str,
|
|
@@ -95537,7 +96137,7 @@ class GetTrafficDataPolicyDefinitionSequenceActionEntrySetParameterResult(dict):
|
|
|
95537
96137
|
:param _builtins.bool next_hop_loose: Use routing table entry to forward the packet in case Next-hop is not available
|
|
95538
96138
|
:param _builtins.str policer_list_id: Policer list ID
|
|
95539
96139
|
:param _builtins.int policer_list_version: Policer list version
|
|
95540
|
-
:param _builtins.str
|
|
96140
|
+
:param _builtins.str preferred_color_group_list_id: Preferred color group list ID
|
|
95541
96141
|
:param _builtins.int preferred_color_group_list_version: Preferred color group list version
|
|
95542
96142
|
:param _builtins.str service_tloc_color: Service TLOC color
|
|
95543
96143
|
:param _builtins.str service_tloc_encapsulation: Service TLOC encapsulation
|
|
@@ -95565,7 +96165,7 @@ class GetTrafficDataPolicyDefinitionSequenceActionEntrySetParameterResult(dict):
|
|
|
95565
96165
|
pulumi.set(__self__, "next_hop_loose", next_hop_loose)
|
|
95566
96166
|
pulumi.set(__self__, "policer_list_id", policer_list_id)
|
|
95567
96167
|
pulumi.set(__self__, "policer_list_version", policer_list_version)
|
|
95568
|
-
pulumi.set(__self__, "
|
|
96168
|
+
pulumi.set(__self__, "preferred_color_group_list_id", preferred_color_group_list_id)
|
|
95569
96169
|
pulumi.set(__self__, "preferred_color_group_list_version", preferred_color_group_list_version)
|
|
95570
96170
|
pulumi.set(__self__, "service_tloc_color", service_tloc_color)
|
|
95571
96171
|
pulumi.set(__self__, "service_tloc_encapsulation", service_tloc_encapsulation)
|
|
@@ -95657,12 +96257,12 @@ class GetTrafficDataPolicyDefinitionSequenceActionEntrySetParameterResult(dict):
|
|
|
95657
96257
|
return pulumi.get(self, "policer_list_version")
|
|
95658
96258
|
|
|
95659
96259
|
@_builtins.property
|
|
95660
|
-
@pulumi.getter(name="
|
|
95661
|
-
def
|
|
96260
|
+
@pulumi.getter(name="preferredColorGroupListId")
|
|
96261
|
+
def preferred_color_group_list_id(self) -> _builtins.str:
|
|
95662
96262
|
"""
|
|
95663
96263
|
Preferred color group list ID
|
|
95664
96264
|
"""
|
|
95665
|
-
return pulumi.get(self, "
|
|
96265
|
+
return pulumi.get(self, "preferred_color_group_list_id")
|
|
95666
96266
|
|
|
95667
96267
|
@_builtins.property
|
|
95668
96268
|
@pulumi.getter(name="preferredColorGroupListVersion")
|