pulumi-sdwan 0.4.0a1754980756__py3-none-any.whl → 0.4.1__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 +823 -214
- pulumi_sdwan/cisco_system_feature_template.py +94 -0
- pulumi_sdwan/get_cisco_system_feature_template.py +29 -1
- pulumi_sdwan/get_policy_group.py +183 -0
- pulumi_sdwan/localized_policy.py +51 -51
- pulumi_sdwan/outputs.py +984 -249
- 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.0a1754980756.dist-info → pulumi_sdwan-0.4.1.dist-info}/METADATA +1 -1
- {pulumi_sdwan-0.4.0a1754980756.dist-info → pulumi_sdwan-0.4.1.dist-info}/RECORD +14 -12
- {pulumi_sdwan-0.4.0a1754980756.dist-info → pulumi_sdwan-0.4.1.dist-info}/WHEEL +0 -0
- {pulumi_sdwan-0.4.0a1754980756.dist-info → pulumi_sdwan-0.4.1.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
|
|
@@ -38355,6 +38699,8 @@ class ServiceRoutingBgpFeatureIpv4Redistribute(dict):
|
|
|
38355
38699
|
suggest = "protocol_variable"
|
|
38356
38700
|
elif key == "routePolicyId":
|
|
38357
38701
|
suggest = "route_policy_id"
|
|
38702
|
+
elif key == "translateRibMetric":
|
|
38703
|
+
suggest = "translate_rib_metric"
|
|
38358
38704
|
|
|
38359
38705
|
if suggest:
|
|
38360
38706
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingBgpFeatureIpv4Redistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -38370,11 +38716,14 @@ class ServiceRoutingBgpFeatureIpv4Redistribute(dict):
|
|
|
38370
38716
|
def __init__(__self__, *,
|
|
38371
38717
|
protocol: Optional[_builtins.str] = None,
|
|
38372
38718
|
protocol_variable: Optional[_builtins.str] = None,
|
|
38373
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
38719
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
38720
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
38374
38721
|
"""
|
|
38375
38722
|
:param _builtins.str protocol: Set the protocol to redistribute routes from
|
|
38376
38723
|
- Choices: `static`, `connected`, `omp`, `nat`, `ospf`, `ospfv3`, `eigrp`
|
|
38377
38724
|
:param _builtins.str protocol_variable: Variable name
|
|
38725
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
38726
|
+
- Default value: `false`
|
|
38378
38727
|
"""
|
|
38379
38728
|
if protocol is not None:
|
|
38380
38729
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -38382,6 +38731,8 @@ class ServiceRoutingBgpFeatureIpv4Redistribute(dict):
|
|
|
38382
38731
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
38383
38732
|
if route_policy_id is not None:
|
|
38384
38733
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
38734
|
+
if translate_rib_metric is not None:
|
|
38735
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
38385
38736
|
|
|
38386
38737
|
@_builtins.property
|
|
38387
38738
|
@pulumi.getter
|
|
@@ -38405,6 +38756,15 @@ class ServiceRoutingBgpFeatureIpv4Redistribute(dict):
|
|
|
38405
38756
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
38406
38757
|
return pulumi.get(self, "route_policy_id")
|
|
38407
38758
|
|
|
38759
|
+
@_builtins.property
|
|
38760
|
+
@pulumi.getter(name="translateRibMetric")
|
|
38761
|
+
def translate_rib_metric(self) -> Optional[_builtins.bool]:
|
|
38762
|
+
"""
|
|
38763
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
38764
|
+
- Default value: `false`
|
|
38765
|
+
"""
|
|
38766
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
38767
|
+
|
|
38408
38768
|
|
|
38409
38769
|
@pulumi.output_type
|
|
38410
38770
|
class ServiceRoutingBgpFeatureIpv6AggregateAddress(dict):
|
|
@@ -39207,6 +39567,8 @@ class ServiceRoutingBgpFeatureIpv6Redistribute(dict):
|
|
|
39207
39567
|
suggest = "protocol_variable"
|
|
39208
39568
|
elif key == "routePolicyId":
|
|
39209
39569
|
suggest = "route_policy_id"
|
|
39570
|
+
elif key == "translateRibMetric":
|
|
39571
|
+
suggest = "translate_rib_metric"
|
|
39210
39572
|
|
|
39211
39573
|
if suggest:
|
|
39212
39574
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingBgpFeatureIpv6Redistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -39222,11 +39584,14 @@ class ServiceRoutingBgpFeatureIpv6Redistribute(dict):
|
|
|
39222
39584
|
def __init__(__self__, *,
|
|
39223
39585
|
protocol: Optional[_builtins.str] = None,
|
|
39224
39586
|
protocol_variable: Optional[_builtins.str] = None,
|
|
39225
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
39587
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
39588
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
39226
39589
|
"""
|
|
39227
39590
|
:param _builtins.str protocol: Set the protocol to redistribute routes from
|
|
39228
39591
|
- Choices: `static`, `connected`, `ospf`, `omp`
|
|
39229
39592
|
:param _builtins.str protocol_variable: Variable name
|
|
39593
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
39594
|
+
- Default value: `false`
|
|
39230
39595
|
"""
|
|
39231
39596
|
if protocol is not None:
|
|
39232
39597
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -39234,6 +39599,8 @@ class ServiceRoutingBgpFeatureIpv6Redistribute(dict):
|
|
|
39234
39599
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
39235
39600
|
if route_policy_id is not None:
|
|
39236
39601
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
39602
|
+
if translate_rib_metric is not None:
|
|
39603
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
39237
39604
|
|
|
39238
39605
|
@_builtins.property
|
|
39239
39606
|
@pulumi.getter
|
|
@@ -39257,6 +39624,15 @@ class ServiceRoutingBgpFeatureIpv6Redistribute(dict):
|
|
|
39257
39624
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
39258
39625
|
return pulumi.get(self, "route_policy_id")
|
|
39259
39626
|
|
|
39627
|
+
@_builtins.property
|
|
39628
|
+
@pulumi.getter(name="translateRibMetric")
|
|
39629
|
+
def translate_rib_metric(self) -> Optional[_builtins.bool]:
|
|
39630
|
+
"""
|
|
39631
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
39632
|
+
- Default value: `false`
|
|
39633
|
+
"""
|
|
39634
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
39635
|
+
|
|
39260
39636
|
|
|
39261
39637
|
@pulumi.output_type
|
|
39262
39638
|
class ServiceRoutingEigrpFeatureInterface(dict):
|
|
@@ -40257,6 +40633,8 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40257
40633
|
suggest = "protocol_variable"
|
|
40258
40634
|
elif key == "routePolicyId":
|
|
40259
40635
|
suggest = "route_policy_id"
|
|
40636
|
+
elif key == "translateRibMetric":
|
|
40637
|
+
suggest = "translate_rib_metric"
|
|
40260
40638
|
|
|
40261
40639
|
if suggest:
|
|
40262
40640
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingOspfFeatureRedistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -40274,7 +40652,8 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40274
40652
|
nat_dia_variable: Optional[_builtins.str] = None,
|
|
40275
40653
|
protocol: Optional[_builtins.str] = None,
|
|
40276
40654
|
protocol_variable: Optional[_builtins.str] = None,
|
|
40277
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
40655
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
40656
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
40278
40657
|
"""
|
|
40279
40658
|
:param _builtins.bool nat_dia: Enable NAT DIA for redistributed routes
|
|
40280
40659
|
- Default value: `true`
|
|
@@ -40282,6 +40661,8 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40282
40661
|
:param _builtins.str protocol: Set the protocol
|
|
40283
40662
|
- Choices: `static`, `connected`, `bgp`, `omp`, `nat`, `eigrp`
|
|
40284
40663
|
:param _builtins.str protocol_variable: Variable name
|
|
40664
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
40665
|
+
- Default value: `false`
|
|
40285
40666
|
"""
|
|
40286
40667
|
if nat_dia is not None:
|
|
40287
40668
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
@@ -40293,6 +40674,8 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40293
40674
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
40294
40675
|
if route_policy_id is not None:
|
|
40295
40676
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
40677
|
+
if translate_rib_metric is not None:
|
|
40678
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
40296
40679
|
|
|
40297
40680
|
@_builtins.property
|
|
40298
40681
|
@pulumi.getter(name="natDia")
|
|
@@ -40333,6 +40716,15 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40333
40716
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
40334
40717
|
return pulumi.get(self, "route_policy_id")
|
|
40335
40718
|
|
|
40719
|
+
@_builtins.property
|
|
40720
|
+
@pulumi.getter(name="translateRibMetric")
|
|
40721
|
+
def translate_rib_metric(self) -> Optional[_builtins.bool]:
|
|
40722
|
+
"""
|
|
40723
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
40724
|
+
- Default value: `false`
|
|
40725
|
+
"""
|
|
40726
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
40727
|
+
|
|
40336
40728
|
|
|
40337
40729
|
@pulumi.output_type
|
|
40338
40730
|
class ServiceRoutingOspfFeatureRouterLsa(dict):
|
|
@@ -40997,6 +41389,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
40997
41389
|
suggest = "protocol_variable"
|
|
40998
41390
|
elif key == "routePolicyId":
|
|
40999
41391
|
suggest = "route_policy_id"
|
|
41392
|
+
elif key == "translateRibMetric":
|
|
41393
|
+
suggest = "translate_rib_metric"
|
|
41000
41394
|
|
|
41001
41395
|
if suggest:
|
|
41002
41396
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingOspfv3Ipv4FeatureRedistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -41014,7 +41408,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
41014
41408
|
nat_dia_variable: Optional[_builtins.str] = None,
|
|
41015
41409
|
protocol: Optional[_builtins.str] = None,
|
|
41016
41410
|
protocol_variable: Optional[_builtins.str] = None,
|
|
41017
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
41411
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
41412
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
41018
41413
|
"""
|
|
41019
41414
|
:param _builtins.bool nat_dia: Enable NAT DIA for redistributed routes
|
|
41020
41415
|
- Default value: `true`
|
|
@@ -41022,6 +41417,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
41022
41417
|
:param _builtins.str protocol: Set the protocol
|
|
41023
41418
|
- Choices: `connected`, `static`, `omp`, `nat-route`, `bgp`, `eigrp`
|
|
41024
41419
|
:param _builtins.str protocol_variable: Variable name
|
|
41420
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
41421
|
+
- Default value: `false`
|
|
41025
41422
|
"""
|
|
41026
41423
|
if nat_dia is not None:
|
|
41027
41424
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
@@ -41033,6 +41430,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
41033
41430
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
41034
41431
|
if route_policy_id is not None:
|
|
41035
41432
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
41433
|
+
if translate_rib_metric is not None:
|
|
41434
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
41036
41435
|
|
|
41037
41436
|
@_builtins.property
|
|
41038
41437
|
@pulumi.getter(name="natDia")
|
|
@@ -41073,6 +41472,15 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
41073
41472
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
41074
41473
|
return pulumi.get(self, "route_policy_id")
|
|
41075
41474
|
|
|
41475
|
+
@_builtins.property
|
|
41476
|
+
@pulumi.getter(name="translateRibMetric")
|
|
41477
|
+
def translate_rib_metric(self) -> Optional[_builtins.bool]:
|
|
41478
|
+
"""
|
|
41479
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
41480
|
+
- Default value: `false`
|
|
41481
|
+
"""
|
|
41482
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
41483
|
+
|
|
41076
41484
|
|
|
41077
41485
|
@pulumi.output_type
|
|
41078
41486
|
class ServiceRoutingOspfv3Ipv6FeatureArea(dict):
|
|
@@ -41643,6 +42051,8 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistribute(dict):
|
|
|
41643
42051
|
suggest = "protocol_variable"
|
|
41644
42052
|
elif key == "routePolicyId":
|
|
41645
42053
|
suggest = "route_policy_id"
|
|
42054
|
+
elif key == "translateRibMetric":
|
|
42055
|
+
suggest = "translate_rib_metric"
|
|
41646
42056
|
|
|
41647
42057
|
if suggest:
|
|
41648
42058
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingOspfv3Ipv6FeatureRedistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -41658,11 +42068,14 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistribute(dict):
|
|
|
41658
42068
|
def __init__(__self__, *,
|
|
41659
42069
|
protocol: Optional[_builtins.str] = None,
|
|
41660
42070
|
protocol_variable: Optional[_builtins.str] = None,
|
|
41661
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
42071
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
42072
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
41662
42073
|
"""
|
|
41663
42074
|
:param _builtins.str protocol: Set the protocol
|
|
41664
42075
|
- Choices: `connected`, `static`, `omp`, `bgp`, `eigrp`
|
|
41665
42076
|
:param _builtins.str protocol_variable: Variable name
|
|
42077
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
42078
|
+
- Default value: `false`
|
|
41666
42079
|
"""
|
|
41667
42080
|
if protocol is not None:
|
|
41668
42081
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -41670,6 +42083,8 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistribute(dict):
|
|
|
41670
42083
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
41671
42084
|
if route_policy_id is not None:
|
|
41672
42085
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
42086
|
+
if translate_rib_metric is not None:
|
|
42087
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
41673
42088
|
|
|
41674
42089
|
@_builtins.property
|
|
41675
42090
|
@pulumi.getter
|
|
@@ -41693,6 +42108,15 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistribute(dict):
|
|
|
41693
42108
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
41694
42109
|
return pulumi.get(self, "route_policy_id")
|
|
41695
42110
|
|
|
42111
|
+
@_builtins.property
|
|
42112
|
+
@pulumi.getter(name="translateRibMetric")
|
|
42113
|
+
def translate_rib_metric(self) -> Optional[_builtins.bool]:
|
|
42114
|
+
"""
|
|
42115
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
42116
|
+
- Default value: `false`
|
|
42117
|
+
"""
|
|
42118
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
42119
|
+
|
|
41696
42120
|
|
|
41697
42121
|
@pulumi.output_type
|
|
41698
42122
|
class ServiceSwitchportFeatureInterface(dict):
|
|
@@ -47425,8 +47849,8 @@ class TlsSslDecryptionPolicyDefinitionUrlRule(dict):
|
|
|
47425
47849
|
suggest = "target_vpns"
|
|
47426
47850
|
elif key == "tlsSslProfilePolicyId":
|
|
47427
47851
|
suggest = "tls_ssl_profile_policy_id"
|
|
47428
|
-
elif key == "
|
|
47429
|
-
suggest = "
|
|
47852
|
+
elif key == "tlsSslProfilePolicyVersion":
|
|
47853
|
+
suggest = "tls_ssl_profile_policy_version"
|
|
47430
47854
|
|
|
47431
47855
|
if suggest:
|
|
47432
47856
|
pulumi.log.warn(f"Key '{key}' not found in TlsSslDecryptionPolicyDefinitionUrlRule. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -47443,12 +47867,12 @@ class TlsSslDecryptionPolicyDefinitionUrlRule(dict):
|
|
|
47443
47867
|
rule_name: Optional[_builtins.str] = None,
|
|
47444
47868
|
target_vpns: Optional[Sequence[_builtins.str]] = None,
|
|
47445
47869
|
tls_ssl_profile_policy_id: Optional[_builtins.str] = None,
|
|
47446
|
-
|
|
47870
|
+
tls_ssl_profile_policy_version: Optional[_builtins.int] = None):
|
|
47447
47871
|
"""
|
|
47448
47872
|
:param _builtins.str rule_name: Country
|
|
47449
47873
|
:param Sequence[_builtins.str] target_vpns: List of VPN IDs
|
|
47450
47874
|
:param _builtins.str tls_ssl_profile_policy_id: TLS SSL Profile Policy ID
|
|
47451
|
-
:param _builtins.int
|
|
47875
|
+
:param _builtins.int tls_ssl_profile_policy_version: TLS SSL Profile Policy version
|
|
47452
47876
|
"""
|
|
47453
47877
|
if rule_name is not None:
|
|
47454
47878
|
pulumi.set(__self__, "rule_name", rule_name)
|
|
@@ -47456,8 +47880,8 @@ class TlsSslDecryptionPolicyDefinitionUrlRule(dict):
|
|
|
47456
47880
|
pulumi.set(__self__, "target_vpns", target_vpns)
|
|
47457
47881
|
if tls_ssl_profile_policy_id is not None:
|
|
47458
47882
|
pulumi.set(__self__, "tls_ssl_profile_policy_id", tls_ssl_profile_policy_id)
|
|
47459
|
-
if
|
|
47460
|
-
pulumi.set(__self__, "
|
|
47883
|
+
if tls_ssl_profile_policy_version is not None:
|
|
47884
|
+
pulumi.set(__self__, "tls_ssl_profile_policy_version", tls_ssl_profile_policy_version)
|
|
47461
47885
|
|
|
47462
47886
|
@_builtins.property
|
|
47463
47887
|
@pulumi.getter(name="ruleName")
|
|
@@ -47484,12 +47908,12 @@ class TlsSslDecryptionPolicyDefinitionUrlRule(dict):
|
|
|
47484
47908
|
return pulumi.get(self, "tls_ssl_profile_policy_id")
|
|
47485
47909
|
|
|
47486
47910
|
@_builtins.property
|
|
47487
|
-
@pulumi.getter(name="
|
|
47488
|
-
def
|
|
47911
|
+
@pulumi.getter(name="tlsSslProfilePolicyVersion")
|
|
47912
|
+
def tls_ssl_profile_policy_version(self) -> Optional[_builtins.int]:
|
|
47489
47913
|
"""
|
|
47490
47914
|
TLS SSL Profile Policy version
|
|
47491
47915
|
"""
|
|
47492
|
-
return pulumi.get(self, "
|
|
47916
|
+
return pulumi.get(self, "tls_ssl_profile_policy_version")
|
|
47493
47917
|
|
|
47494
47918
|
|
|
47495
47919
|
@pulumi.output_type
|
|
@@ -48000,8 +48424,8 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48000
48424
|
suggest = "policer_list_id"
|
|
48001
48425
|
elif key == "policerListVersion":
|
|
48002
48426
|
suggest = "policer_list_version"
|
|
48003
|
-
elif key == "
|
|
48004
|
-
suggest = "
|
|
48427
|
+
elif key == "preferredColorGroupListId":
|
|
48428
|
+
suggest = "preferred_color_group_list_id"
|
|
48005
48429
|
elif key == "preferredColorGroupListVersion":
|
|
48006
48430
|
suggest = "preferred_color_group_list_version"
|
|
48007
48431
|
elif key == "serviceTlocColor":
|
|
@@ -48057,7 +48481,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48057
48481
|
next_hop_loose: Optional[_builtins.bool] = None,
|
|
48058
48482
|
policer_list_id: Optional[_builtins.str] = None,
|
|
48059
48483
|
policer_list_version: Optional[_builtins.int] = None,
|
|
48060
|
-
|
|
48484
|
+
preferred_color_group_list_id: Optional[_builtins.str] = None,
|
|
48061
48485
|
preferred_color_group_list_version: Optional[_builtins.int] = None,
|
|
48062
48486
|
service_tloc_color: Optional[_builtins.str] = None,
|
|
48063
48487
|
service_tloc_encapsulation: Optional[_builtins.str] = None,
|
|
@@ -48088,7 +48512,7 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48088
48512
|
: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
48513
|
:param _builtins.str policer_list_id: Policer list ID, Attribute conditional on `type` being equal to `policer`
|
|
48090
48514
|
:param _builtins.int policer_list_version: Policer list version
|
|
48091
|
-
:param _builtins.str
|
|
48515
|
+
:param _builtins.str preferred_color_group_list_id: Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
|
|
48092
48516
|
:param _builtins.int preferred_color_group_list_version: Preferred color group list version
|
|
48093
48517
|
:param _builtins.str service_tloc_color: Service TLOC color, Attribute conditional on `type` being equal to `service`
|
|
48094
48518
|
:param _builtins.str service_tloc_encapsulation: Service TLOC encapsulation, Attribute conditional on `type` being equal to `service`
|
|
@@ -48130,8 +48554,8 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48130
48554
|
pulumi.set(__self__, "policer_list_id", policer_list_id)
|
|
48131
48555
|
if policer_list_version is not None:
|
|
48132
48556
|
pulumi.set(__self__, "policer_list_version", policer_list_version)
|
|
48133
|
-
if
|
|
48134
|
-
pulumi.set(__self__, "
|
|
48557
|
+
if preferred_color_group_list_id is not None:
|
|
48558
|
+
pulumi.set(__self__, "preferred_color_group_list_id", preferred_color_group_list_id)
|
|
48135
48559
|
if preferred_color_group_list_version is not None:
|
|
48136
48560
|
pulumi.set(__self__, "preferred_color_group_list_version", preferred_color_group_list_version)
|
|
48137
48561
|
if service_tloc_color is not None:
|
|
@@ -48249,12 +48673,12 @@ class TrafficDataPolicyDefinitionSequenceActionEntrySetParameter(dict):
|
|
|
48249
48673
|
return pulumi.get(self, "policer_list_version")
|
|
48250
48674
|
|
|
48251
48675
|
@_builtins.property
|
|
48252
|
-
@pulumi.getter(name="
|
|
48253
|
-
def
|
|
48676
|
+
@pulumi.getter(name="preferredColorGroupListId")
|
|
48677
|
+
def preferred_color_group_list_id(self) -> Optional[_builtins.str]:
|
|
48254
48678
|
"""
|
|
48255
48679
|
Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
|
|
48256
48680
|
"""
|
|
48257
|
-
return pulumi.get(self, "
|
|
48681
|
+
return pulumi.get(self, "preferred_color_group_list_id")
|
|
48258
48682
|
|
|
48259
48683
|
@_builtins.property
|
|
48260
48684
|
@pulumi.getter(name="preferredColorGroupListVersion")
|
|
@@ -62769,23 +63193,23 @@ class GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
62769
63193
|
class GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParameterResult(dict):
|
|
62770
63194
|
def __init__(__self__, *,
|
|
62771
63195
|
preferred_color: _builtins.str,
|
|
62772
|
-
|
|
63196
|
+
preferred_color_group_list_id: _builtins.str,
|
|
62773
63197
|
preferred_color_group_list_version: _builtins.int,
|
|
62774
|
-
|
|
63198
|
+
sla_class_list_id: _builtins.str,
|
|
62775
63199
|
sla_class_list_version: _builtins.int,
|
|
62776
63200
|
type: _builtins.str):
|
|
62777
63201
|
"""
|
|
62778
63202
|
:param _builtins.str preferred_color: preferred color (Single value or multiple values separated by spaces)
|
|
62779
|
-
:param _builtins.str
|
|
63203
|
+
:param _builtins.str preferred_color_group_list_id: Preferred color group list ID
|
|
62780
63204
|
:param _builtins.int preferred_color_group_list_version: Preferred color group list version
|
|
62781
|
-
:param _builtins.str
|
|
63205
|
+
:param _builtins.str sla_class_list_id: SLA class list ID
|
|
62782
63206
|
:param _builtins.int sla_class_list_version: SLA class list version
|
|
62783
63207
|
:param _builtins.str type: Type of SLA class parameter
|
|
62784
63208
|
"""
|
|
62785
63209
|
pulumi.set(__self__, "preferred_color", preferred_color)
|
|
62786
|
-
pulumi.set(__self__, "
|
|
63210
|
+
pulumi.set(__self__, "preferred_color_group_list_id", preferred_color_group_list_id)
|
|
62787
63211
|
pulumi.set(__self__, "preferred_color_group_list_version", preferred_color_group_list_version)
|
|
62788
|
-
pulumi.set(__self__, "
|
|
63212
|
+
pulumi.set(__self__, "sla_class_list_id", sla_class_list_id)
|
|
62789
63213
|
pulumi.set(__self__, "sla_class_list_version", sla_class_list_version)
|
|
62790
63214
|
pulumi.set(__self__, "type", type)
|
|
62791
63215
|
|
|
@@ -62798,12 +63222,12 @@ class GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParam
|
|
|
62798
63222
|
return pulumi.get(self, "preferred_color")
|
|
62799
63223
|
|
|
62800
63224
|
@_builtins.property
|
|
62801
|
-
@pulumi.getter(name="
|
|
62802
|
-
def
|
|
63225
|
+
@pulumi.getter(name="preferredColorGroupListId")
|
|
63226
|
+
def preferred_color_group_list_id(self) -> _builtins.str:
|
|
62803
63227
|
"""
|
|
62804
63228
|
Preferred color group list ID
|
|
62805
63229
|
"""
|
|
62806
|
-
return pulumi.get(self, "
|
|
63230
|
+
return pulumi.get(self, "preferred_color_group_list_id")
|
|
62807
63231
|
|
|
62808
63232
|
@_builtins.property
|
|
62809
63233
|
@pulumi.getter(name="preferredColorGroupListVersion")
|
|
@@ -62814,12 +63238,12 @@ class GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaClassParam
|
|
|
62814
63238
|
return pulumi.get(self, "preferred_color_group_list_version")
|
|
62815
63239
|
|
|
62816
63240
|
@_builtins.property
|
|
62817
|
-
@pulumi.getter(name="
|
|
62818
|
-
def
|
|
63241
|
+
@pulumi.getter(name="slaClassListId")
|
|
63242
|
+
def sla_class_list_id(self) -> _builtins.str:
|
|
62819
63243
|
"""
|
|
62820
63244
|
SLA class list ID
|
|
62821
63245
|
"""
|
|
62822
|
-
return pulumi.get(self, "
|
|
63246
|
+
return pulumi.get(self, "sla_class_list_id")
|
|
62823
63247
|
|
|
62824
63248
|
@_builtins.property
|
|
62825
63249
|
@pulumi.getter(name="slaClassListVersion")
|
|
@@ -73574,35 +73998,27 @@ class GetCiscoVpnFeatureTemplateDnsIpv6ServerResult(dict):
|
|
|
73574
73998
|
@pulumi.output_type
|
|
73575
73999
|
class GetCiscoVpnFeatureTemplateIpv4StaticGreRouteResult(dict):
|
|
73576
74000
|
def __init__(__self__, *,
|
|
73577
|
-
interface_variable: _builtins.str,
|
|
73578
74001
|
interfaces: Sequence[_builtins.str],
|
|
74002
|
+
interfaces_variable: _builtins.str,
|
|
73579
74003
|
optional: _builtins.bool,
|
|
73580
74004
|
prefix: _builtins.str,
|
|
73581
74005
|
prefix_variable: _builtins.str,
|
|
73582
74006
|
vpn_id: _builtins.int):
|
|
73583
74007
|
"""
|
|
73584
|
-
:param _builtins.str interface_variable: Variable name
|
|
73585
74008
|
:param Sequence[_builtins.str] interfaces: List of GRE Interfaces
|
|
74009
|
+
:param _builtins.str interfaces_variable: Variable name
|
|
73586
74010
|
:param _builtins.bool optional: Indicates if list item is considered optional.
|
|
73587
74011
|
:param _builtins.str prefix: Prefix
|
|
73588
74012
|
:param _builtins.str prefix_variable: Variable name
|
|
73589
74013
|
:param _builtins.int vpn_id: Destination VPN to resolve the prefix
|
|
73590
74014
|
"""
|
|
73591
|
-
pulumi.set(__self__, "interface_variable", interface_variable)
|
|
73592
74015
|
pulumi.set(__self__, "interfaces", interfaces)
|
|
74016
|
+
pulumi.set(__self__, "interfaces_variable", interfaces_variable)
|
|
73593
74017
|
pulumi.set(__self__, "optional", optional)
|
|
73594
74018
|
pulumi.set(__self__, "prefix", prefix)
|
|
73595
74019
|
pulumi.set(__self__, "prefix_variable", prefix_variable)
|
|
73596
74020
|
pulumi.set(__self__, "vpn_id", vpn_id)
|
|
73597
74021
|
|
|
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
74022
|
@_builtins.property
|
|
73607
74023
|
@pulumi.getter
|
|
73608
74024
|
def interfaces(self) -> Sequence[_builtins.str]:
|
|
@@ -73611,6 +74027,14 @@ class GetCiscoVpnFeatureTemplateIpv4StaticGreRouteResult(dict):
|
|
|
73611
74027
|
"""
|
|
73612
74028
|
return pulumi.get(self, "interfaces")
|
|
73613
74029
|
|
|
74030
|
+
@_builtins.property
|
|
74031
|
+
@pulumi.getter(name="interfacesVariable")
|
|
74032
|
+
def interfaces_variable(self) -> _builtins.str:
|
|
74033
|
+
"""
|
|
74034
|
+
Variable name
|
|
74035
|
+
"""
|
|
74036
|
+
return pulumi.get(self, "interfaces_variable")
|
|
74037
|
+
|
|
73614
74038
|
@_builtins.property
|
|
73615
74039
|
@pulumi.getter
|
|
73616
74040
|
def optional(self) -> _builtins.bool:
|
|
@@ -73647,35 +74071,27 @@ class GetCiscoVpnFeatureTemplateIpv4StaticGreRouteResult(dict):
|
|
|
73647
74071
|
@pulumi.output_type
|
|
73648
74072
|
class GetCiscoVpnFeatureTemplateIpv4StaticIpsecRouteResult(dict):
|
|
73649
74073
|
def __init__(__self__, *,
|
|
73650
|
-
interface_variable: _builtins.str,
|
|
73651
74074
|
interfaces: Sequence[_builtins.str],
|
|
74075
|
+
interfaces_variable: _builtins.str,
|
|
73652
74076
|
optional: _builtins.bool,
|
|
73653
74077
|
prefix: _builtins.str,
|
|
73654
74078
|
prefix_variable: _builtins.str,
|
|
73655
74079
|
vpn_id: _builtins.int):
|
|
73656
74080
|
"""
|
|
73657
|
-
:param _builtins.str interface_variable: Variable name
|
|
73658
74081
|
:param Sequence[_builtins.str] interfaces: List of IPSEC Interfaces (Separated by commas)
|
|
74082
|
+
:param _builtins.str interfaces_variable: Variable name
|
|
73659
74083
|
:param _builtins.bool optional: Indicates if list item is considered optional.
|
|
73660
74084
|
:param _builtins.str prefix: Prefix
|
|
73661
74085
|
:param _builtins.str prefix_variable: Variable name
|
|
73662
74086
|
:param _builtins.int vpn_id: Destination VPN to resolve the prefix
|
|
73663
74087
|
"""
|
|
73664
|
-
pulumi.set(__self__, "interface_variable", interface_variable)
|
|
73665
74088
|
pulumi.set(__self__, "interfaces", interfaces)
|
|
74089
|
+
pulumi.set(__self__, "interfaces_variable", interfaces_variable)
|
|
73666
74090
|
pulumi.set(__self__, "optional", optional)
|
|
73667
74091
|
pulumi.set(__self__, "prefix", prefix)
|
|
73668
74092
|
pulumi.set(__self__, "prefix_variable", prefix_variable)
|
|
73669
74093
|
pulumi.set(__self__, "vpn_id", vpn_id)
|
|
73670
74094
|
|
|
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
74095
|
@_builtins.property
|
|
73680
74096
|
@pulumi.getter
|
|
73681
74097
|
def interfaces(self) -> Sequence[_builtins.str]:
|
|
@@ -73684,6 +74100,14 @@ class GetCiscoVpnFeatureTemplateIpv4StaticIpsecRouteResult(dict):
|
|
|
73684
74100
|
"""
|
|
73685
74101
|
return pulumi.get(self, "interfaces")
|
|
73686
74102
|
|
|
74103
|
+
@_builtins.property
|
|
74104
|
+
@pulumi.getter(name="interfacesVariable")
|
|
74105
|
+
def interfaces_variable(self) -> _builtins.str:
|
|
74106
|
+
"""
|
|
74107
|
+
Variable name
|
|
74108
|
+
"""
|
|
74109
|
+
return pulumi.get(self, "interfaces_variable")
|
|
74110
|
+
|
|
73687
74111
|
@_builtins.property
|
|
73688
74112
|
@pulumi.getter
|
|
73689
74113
|
def optional(self) -> _builtins.bool:
|
|
@@ -79417,8 +79841,9 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79417
79841
|
destination_data_ipv4_prefix_list_id: _builtins.str,
|
|
79418
79842
|
destination_data_ipv4_prefix_list_version: _builtins.int,
|
|
79419
79843
|
destination_ip: _builtins.str,
|
|
79844
|
+
destination_ip_variable: _builtins.str,
|
|
79420
79845
|
destination_ports: _builtins.str,
|
|
79421
|
-
dscp: _builtins.
|
|
79846
|
+
dscp: _builtins.str,
|
|
79422
79847
|
icmp_message: _builtins.str,
|
|
79423
79848
|
packet_length: _builtins.int,
|
|
79424
79849
|
priority: _builtins.str,
|
|
@@ -79426,6 +79851,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79426
79851
|
source_data_ipv4_prefix_list_id: _builtins.str,
|
|
79427
79852
|
source_data_ipv4_prefix_list_version: _builtins.int,
|
|
79428
79853
|
source_ip: _builtins.str,
|
|
79854
|
+
source_ip_variable: _builtins.str,
|
|
79429
79855
|
source_ports: _builtins.str,
|
|
79430
79856
|
tcp: _builtins.str,
|
|
79431
79857
|
type: _builtins.str):
|
|
@@ -79435,8 +79861,9 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79435
79861
|
:param _builtins.str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID
|
|
79436
79862
|
:param _builtins.int destination_data_ipv4_prefix_list_version: Destination data IPv4 prefix list version
|
|
79437
79863
|
:param _builtins.str destination_ip: Destination IP prefix
|
|
79864
|
+
:param _builtins.str destination_ip_variable: Destination IP prefix variable
|
|
79438
79865
|
:param _builtins.str destination_ports: Destination ports. Single value (0-65535) or ranges separated by spaces.
|
|
79439
|
-
:param _builtins.
|
|
79866
|
+
:param _builtins.str dscp: DSCP value
|
|
79440
79867
|
:param _builtins.str icmp_message: ICMP Message
|
|
79441
79868
|
:param _builtins.int packet_length: Packet length
|
|
79442
79869
|
:param _builtins.str priority: PLP - priority
|
|
@@ -79444,6 +79871,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79444
79871
|
:param _builtins.str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID
|
|
79445
79872
|
:param _builtins.int source_data_ipv4_prefix_list_version: Source data IPv4 prefix list version
|
|
79446
79873
|
:param _builtins.str source_ip: Source IP prefix
|
|
79874
|
+
:param _builtins.str source_ip_variable: Source IP prefix variable
|
|
79447
79875
|
:param _builtins.str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces.
|
|
79448
79876
|
:param _builtins.str tcp: TCP parameters
|
|
79449
79877
|
:param _builtins.str type: Type of match entry
|
|
@@ -79453,6 +79881,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79453
79881
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_id", destination_data_ipv4_prefix_list_id)
|
|
79454
79882
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_version", destination_data_ipv4_prefix_list_version)
|
|
79455
79883
|
pulumi.set(__self__, "destination_ip", destination_ip)
|
|
79884
|
+
pulumi.set(__self__, "destination_ip_variable", destination_ip_variable)
|
|
79456
79885
|
pulumi.set(__self__, "destination_ports", destination_ports)
|
|
79457
79886
|
pulumi.set(__self__, "dscp", dscp)
|
|
79458
79887
|
pulumi.set(__self__, "icmp_message", icmp_message)
|
|
@@ -79462,6 +79891,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79462
79891
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_id", source_data_ipv4_prefix_list_id)
|
|
79463
79892
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_version", source_data_ipv4_prefix_list_version)
|
|
79464
79893
|
pulumi.set(__self__, "source_ip", source_ip)
|
|
79894
|
+
pulumi.set(__self__, "source_ip_variable", source_ip_variable)
|
|
79465
79895
|
pulumi.set(__self__, "source_ports", source_ports)
|
|
79466
79896
|
pulumi.set(__self__, "tcp", tcp)
|
|
79467
79897
|
pulumi.set(__self__, "type", type)
|
|
@@ -79506,6 +79936,14 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79506
79936
|
"""
|
|
79507
79937
|
return pulumi.get(self, "destination_ip")
|
|
79508
79938
|
|
|
79939
|
+
@_builtins.property
|
|
79940
|
+
@pulumi.getter(name="destinationIpVariable")
|
|
79941
|
+
def destination_ip_variable(self) -> _builtins.str:
|
|
79942
|
+
"""
|
|
79943
|
+
Destination IP prefix variable
|
|
79944
|
+
"""
|
|
79945
|
+
return pulumi.get(self, "destination_ip_variable")
|
|
79946
|
+
|
|
79509
79947
|
@_builtins.property
|
|
79510
79948
|
@pulumi.getter(name="destinationPorts")
|
|
79511
79949
|
def destination_ports(self) -> _builtins.str:
|
|
@@ -79516,7 +79954,7 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79516
79954
|
|
|
79517
79955
|
@_builtins.property
|
|
79518
79956
|
@pulumi.getter
|
|
79519
|
-
def dscp(self) -> _builtins.
|
|
79957
|
+
def dscp(self) -> _builtins.str:
|
|
79520
79958
|
"""
|
|
79521
79959
|
DSCP value
|
|
79522
79960
|
"""
|
|
@@ -79578,6 +80016,14 @@ class GetIpv4AclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79578
80016
|
"""
|
|
79579
80017
|
return pulumi.get(self, "source_ip")
|
|
79580
80018
|
|
|
80019
|
+
@_builtins.property
|
|
80020
|
+
@pulumi.getter(name="sourceIpVariable")
|
|
80021
|
+
def source_ip_variable(self) -> _builtins.str:
|
|
80022
|
+
"""
|
|
80023
|
+
Source IP prefix variable
|
|
80024
|
+
"""
|
|
80025
|
+
return pulumi.get(self, "source_ip_variable")
|
|
80026
|
+
|
|
79581
80027
|
@_builtins.property
|
|
79582
80028
|
@pulumi.getter(name="sourcePorts")
|
|
79583
80029
|
def source_ports(self) -> _builtins.str:
|
|
@@ -79700,30 +80146,36 @@ class GetIpv4DeviceAclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79700
80146
|
destination_data_ipv4_prefix_list_id: _builtins.str,
|
|
79701
80147
|
destination_data_ipv4_prefix_list_version: _builtins.int,
|
|
79702
80148
|
destination_ip: _builtins.str,
|
|
80149
|
+
destination_ip_variable: _builtins.str,
|
|
79703
80150
|
destination_port: _builtins.int,
|
|
79704
80151
|
source_data_ipv4_prefix_list_id: _builtins.str,
|
|
79705
80152
|
source_data_ipv4_prefix_list_version: _builtins.int,
|
|
79706
80153
|
source_ip: _builtins.str,
|
|
80154
|
+
source_ip_variable: _builtins.str,
|
|
79707
80155
|
source_ports: _builtins.str,
|
|
79708
80156
|
type: _builtins.str):
|
|
79709
80157
|
"""
|
|
79710
80158
|
:param _builtins.str destination_data_ipv4_prefix_list_id: Destination data IPv4 prefix list ID
|
|
79711
80159
|
:param _builtins.int destination_data_ipv4_prefix_list_version: Destination data IPv4 prefix list version
|
|
79712
80160
|
:param _builtins.str destination_ip: Destination IP prefix
|
|
80161
|
+
:param _builtins.str destination_ip_variable: Destination IP prefix variable
|
|
79713
80162
|
:param _builtins.int destination_port: Destination port, only `22` and `161` supported
|
|
79714
80163
|
:param _builtins.str source_data_ipv4_prefix_list_id: Source data IPv4 prefix list ID
|
|
79715
80164
|
:param _builtins.int source_data_ipv4_prefix_list_version: Source data IPv4 prefix list version
|
|
79716
80165
|
:param _builtins.str source_ip: Source IP prefix
|
|
80166
|
+
:param _builtins.str source_ip_variable: Source IP prefix variable
|
|
79717
80167
|
:param _builtins.str source_ports: Source ports. Single value (0-65535) or ranges separated by spaces.
|
|
79718
80168
|
:param _builtins.str type: Type of match entry
|
|
79719
80169
|
"""
|
|
79720
80170
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_id", destination_data_ipv4_prefix_list_id)
|
|
79721
80171
|
pulumi.set(__self__, "destination_data_ipv4_prefix_list_version", destination_data_ipv4_prefix_list_version)
|
|
79722
80172
|
pulumi.set(__self__, "destination_ip", destination_ip)
|
|
80173
|
+
pulumi.set(__self__, "destination_ip_variable", destination_ip_variable)
|
|
79723
80174
|
pulumi.set(__self__, "destination_port", destination_port)
|
|
79724
80175
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_id", source_data_ipv4_prefix_list_id)
|
|
79725
80176
|
pulumi.set(__self__, "source_data_ipv4_prefix_list_version", source_data_ipv4_prefix_list_version)
|
|
79726
80177
|
pulumi.set(__self__, "source_ip", source_ip)
|
|
80178
|
+
pulumi.set(__self__, "source_ip_variable", source_ip_variable)
|
|
79727
80179
|
pulumi.set(__self__, "source_ports", source_ports)
|
|
79728
80180
|
pulumi.set(__self__, "type", type)
|
|
79729
80181
|
|
|
@@ -79751,6 +80203,14 @@ class GetIpv4DeviceAclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79751
80203
|
"""
|
|
79752
80204
|
return pulumi.get(self, "destination_ip")
|
|
79753
80205
|
|
|
80206
|
+
@_builtins.property
|
|
80207
|
+
@pulumi.getter(name="destinationIpVariable")
|
|
80208
|
+
def destination_ip_variable(self) -> _builtins.str:
|
|
80209
|
+
"""
|
|
80210
|
+
Destination IP prefix variable
|
|
80211
|
+
"""
|
|
80212
|
+
return pulumi.get(self, "destination_ip_variable")
|
|
80213
|
+
|
|
79754
80214
|
@_builtins.property
|
|
79755
80215
|
@pulumi.getter(name="destinationPort")
|
|
79756
80216
|
def destination_port(self) -> _builtins.int:
|
|
@@ -79783,6 +80243,14 @@ class GetIpv4DeviceAclPolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
79783
80243
|
"""
|
|
79784
80244
|
return pulumi.get(self, "source_ip")
|
|
79785
80245
|
|
|
80246
|
+
@_builtins.property
|
|
80247
|
+
@pulumi.getter(name="sourceIpVariable")
|
|
80248
|
+
def source_ip_variable(self) -> _builtins.str:
|
|
80249
|
+
"""
|
|
80250
|
+
Source IP prefix variable
|
|
80251
|
+
"""
|
|
80252
|
+
return pulumi.get(self, "source_ip_variable")
|
|
80253
|
+
|
|
79786
80254
|
@_builtins.property
|
|
79787
80255
|
@pulumi.getter(name="sourcePorts")
|
|
79788
80256
|
def source_ports(self) -> _builtins.str:
|
|
@@ -80899,6 +81367,86 @@ class GetOtherUcseFeatureInterfaceResult(dict):
|
|
|
80899
81367
|
return pulumi.get(self, "ucse_interface_vpn_variable")
|
|
80900
81368
|
|
|
80901
81369
|
|
|
81370
|
+
@pulumi.output_type
|
|
81371
|
+
class GetPolicyGroupDeviceResult(dict):
|
|
81372
|
+
def __init__(__self__, *,
|
|
81373
|
+
deploy: _builtins.bool,
|
|
81374
|
+
id: _builtins.str,
|
|
81375
|
+
variables: Sequence['outputs.GetPolicyGroupDeviceVariableResult']):
|
|
81376
|
+
"""
|
|
81377
|
+
:param _builtins.bool deploy: Deploy to device if enabled.
|
|
81378
|
+
:param _builtins.str id: Device ID
|
|
81379
|
+
:param Sequence['GetPolicyGroupDeviceVariableArgs'] variables: List of variables
|
|
81380
|
+
"""
|
|
81381
|
+
pulumi.set(__self__, "deploy", deploy)
|
|
81382
|
+
pulumi.set(__self__, "id", id)
|
|
81383
|
+
pulumi.set(__self__, "variables", variables)
|
|
81384
|
+
|
|
81385
|
+
@_builtins.property
|
|
81386
|
+
@pulumi.getter
|
|
81387
|
+
def deploy(self) -> _builtins.bool:
|
|
81388
|
+
"""
|
|
81389
|
+
Deploy to device if enabled.
|
|
81390
|
+
"""
|
|
81391
|
+
return pulumi.get(self, "deploy")
|
|
81392
|
+
|
|
81393
|
+
@_builtins.property
|
|
81394
|
+
@pulumi.getter
|
|
81395
|
+
def id(self) -> _builtins.str:
|
|
81396
|
+
"""
|
|
81397
|
+
Device ID
|
|
81398
|
+
"""
|
|
81399
|
+
return pulumi.get(self, "id")
|
|
81400
|
+
|
|
81401
|
+
@_builtins.property
|
|
81402
|
+
@pulumi.getter
|
|
81403
|
+
def variables(self) -> Sequence['outputs.GetPolicyGroupDeviceVariableResult']:
|
|
81404
|
+
"""
|
|
81405
|
+
List of variables
|
|
81406
|
+
"""
|
|
81407
|
+
return pulumi.get(self, "variables")
|
|
81408
|
+
|
|
81409
|
+
|
|
81410
|
+
@pulumi.output_type
|
|
81411
|
+
class GetPolicyGroupDeviceVariableResult(dict):
|
|
81412
|
+
def __init__(__self__, *,
|
|
81413
|
+
list_values: Sequence[_builtins.str],
|
|
81414
|
+
name: _builtins.str,
|
|
81415
|
+
value: _builtins.str):
|
|
81416
|
+
"""
|
|
81417
|
+
:param Sequence[_builtins.str] list_values: Use this instead of `value` in case value is of type `List`.
|
|
81418
|
+
:param _builtins.str name: Variable name
|
|
81419
|
+
:param _builtins.str value: Variable value
|
|
81420
|
+
"""
|
|
81421
|
+
pulumi.set(__self__, "list_values", list_values)
|
|
81422
|
+
pulumi.set(__self__, "name", name)
|
|
81423
|
+
pulumi.set(__self__, "value", value)
|
|
81424
|
+
|
|
81425
|
+
@_builtins.property
|
|
81426
|
+
@pulumi.getter(name="listValues")
|
|
81427
|
+
def list_values(self) -> Sequence[_builtins.str]:
|
|
81428
|
+
"""
|
|
81429
|
+
Use this instead of `value` in case value is of type `List`.
|
|
81430
|
+
"""
|
|
81431
|
+
return pulumi.get(self, "list_values")
|
|
81432
|
+
|
|
81433
|
+
@_builtins.property
|
|
81434
|
+
@pulumi.getter
|
|
81435
|
+
def name(self) -> _builtins.str:
|
|
81436
|
+
"""
|
|
81437
|
+
Variable name
|
|
81438
|
+
"""
|
|
81439
|
+
return pulumi.get(self, "name")
|
|
81440
|
+
|
|
81441
|
+
@_builtins.property
|
|
81442
|
+
@pulumi.getter
|
|
81443
|
+
def value(self) -> _builtins.str:
|
|
81444
|
+
"""
|
|
81445
|
+
Variable value
|
|
81446
|
+
"""
|
|
81447
|
+
return pulumi.get(self, "value")
|
|
81448
|
+
|
|
81449
|
+
|
|
80902
81450
|
@pulumi.output_type
|
|
80903
81451
|
class GetPolicyObjectAppProbeClassEntryResult(dict):
|
|
80904
81452
|
def __init__(__self__, *,
|
|
@@ -81962,6 +82510,7 @@ class GetRoutePolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
81962
82510
|
atomic_aggregate: _builtins.bool,
|
|
81963
82511
|
community: _builtins.str,
|
|
81964
82512
|
community_additive: _builtins.bool,
|
|
82513
|
+
community_variable: _builtins.str,
|
|
81965
82514
|
local_preference: _builtins.int,
|
|
81966
82515
|
metric: _builtins.int,
|
|
81967
82516
|
metric_type: _builtins.str,
|
|
@@ -81980,6 +82529,7 @@ class GetRoutePolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
81980
82529
|
:param _builtins.bool atomic_aggregate: Atomic aggregate
|
|
81981
82530
|
:param _builtins.str community: Community value, e.g. `1000:10000` or `internet` or `local-AS`
|
|
81982
82531
|
:param _builtins.bool community_additive: Community additive
|
|
82532
|
+
:param _builtins.str community_variable: Community variable
|
|
81983
82533
|
:param _builtins.int local_preference: Local preference
|
|
81984
82534
|
:param _builtins.int metric: Metric
|
|
81985
82535
|
:param _builtins.str metric_type: Metric type
|
|
@@ -81998,6 +82548,7 @@ class GetRoutePolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
81998
82548
|
pulumi.set(__self__, "atomic_aggregate", atomic_aggregate)
|
|
81999
82549
|
pulumi.set(__self__, "community", community)
|
|
82000
82550
|
pulumi.set(__self__, "community_additive", community_additive)
|
|
82551
|
+
pulumi.set(__self__, "community_variable", community_variable)
|
|
82001
82552
|
pulumi.set(__self__, "local_preference", local_preference)
|
|
82002
82553
|
pulumi.set(__self__, "metric", metric)
|
|
82003
82554
|
pulumi.set(__self__, "metric_type", metric_type)
|
|
@@ -82065,6 +82616,14 @@ class GetRoutePolicyDefinitionSequenceActionEntryResult(dict):
|
|
|
82065
82616
|
"""
|
|
82066
82617
|
return pulumi.get(self, "community_additive")
|
|
82067
82618
|
|
|
82619
|
+
@_builtins.property
|
|
82620
|
+
@pulumi.getter(name="communityVariable")
|
|
82621
|
+
def community_variable(self) -> _builtins.str:
|
|
82622
|
+
"""
|
|
82623
|
+
Community variable
|
|
82624
|
+
"""
|
|
82625
|
+
return pulumi.get(self, "community_variable")
|
|
82626
|
+
|
|
82068
82627
|
@_builtins.property
|
|
82069
82628
|
@pulumi.getter(name="localPreference")
|
|
82070
82629
|
def local_preference(self) -> _builtins.int:
|
|
@@ -82155,6 +82714,7 @@ class GetRoutePolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
82155
82714
|
community_list_match_flag: _builtins.str,
|
|
82156
82715
|
community_list_versions: Sequence[_builtins.str],
|
|
82157
82716
|
expanded_community_list_id: _builtins.str,
|
|
82717
|
+
expanded_community_list_variable: _builtins.str,
|
|
82158
82718
|
expanded_community_list_version: _builtins.int,
|
|
82159
82719
|
extended_community_list_id: _builtins.str,
|
|
82160
82720
|
extended_community_list_version: _builtins.int,
|
|
@@ -82176,6 +82736,7 @@ class GetRoutePolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
82176
82736
|
:param _builtins.str community_list_match_flag: Community list match flag
|
|
82177
82737
|
:param Sequence[_builtins.str] community_list_versions: Community list versions
|
|
82178
82738
|
:param _builtins.str expanded_community_list_id: Expanded community list ID
|
|
82739
|
+
:param _builtins.str expanded_community_list_variable: Expanded community list variable
|
|
82179
82740
|
:param _builtins.int expanded_community_list_version: Expanded community list version
|
|
82180
82741
|
:param _builtins.str extended_community_list_id: Extended community list ID
|
|
82181
82742
|
:param _builtins.int extended_community_list_version: Extended community list version
|
|
@@ -82197,6 +82758,7 @@ class GetRoutePolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
82197
82758
|
pulumi.set(__self__, "community_list_match_flag", community_list_match_flag)
|
|
82198
82759
|
pulumi.set(__self__, "community_list_versions", community_list_versions)
|
|
82199
82760
|
pulumi.set(__self__, "expanded_community_list_id", expanded_community_list_id)
|
|
82761
|
+
pulumi.set(__self__, "expanded_community_list_variable", expanded_community_list_variable)
|
|
82200
82762
|
pulumi.set(__self__, "expanded_community_list_version", expanded_community_list_version)
|
|
82201
82763
|
pulumi.set(__self__, "extended_community_list_id", extended_community_list_id)
|
|
82202
82764
|
pulumi.set(__self__, "extended_community_list_version", extended_community_list_version)
|
|
@@ -82260,6 +82822,14 @@ class GetRoutePolicyDefinitionSequenceMatchEntryResult(dict):
|
|
|
82260
82822
|
"""
|
|
82261
82823
|
return pulumi.get(self, "expanded_community_list_id")
|
|
82262
82824
|
|
|
82825
|
+
@_builtins.property
|
|
82826
|
+
@pulumi.getter(name="expandedCommunityListVariable")
|
|
82827
|
+
def expanded_community_list_variable(self) -> _builtins.str:
|
|
82828
|
+
"""
|
|
82829
|
+
Expanded community list variable
|
|
82830
|
+
"""
|
|
82831
|
+
return pulumi.get(self, "expanded_community_list_variable")
|
|
82832
|
+
|
|
82263
82833
|
@_builtins.property
|
|
82264
82834
|
@pulumi.getter(name="expandedCommunityListVersion")
|
|
82265
82835
|
def expanded_community_list_version(self) -> _builtins.int:
|
|
@@ -84351,7 +84921,8 @@ class GetServiceLanVpnFeatureIpv4ImportRouteTargetResult(dict):
|
|
|
84351
84921
|
@pulumi.output_type
|
|
84352
84922
|
class GetServiceLanVpnFeatureIpv4StaticRouteResult(dict):
|
|
84353
84923
|
def __init__(__self__, *,
|
|
84354
|
-
|
|
84924
|
+
dhcp: _builtins.bool,
|
|
84925
|
+
gateway: _builtins.str,
|
|
84355
84926
|
network_address: _builtins.str,
|
|
84356
84927
|
network_address_variable: _builtins.str,
|
|
84357
84928
|
next_hop_with_trackers: Sequence['outputs.GetServiceLanVpnFeatureIpv4StaticRouteNextHopWithTrackerResult'],
|
|
@@ -84361,7 +84932,8 @@ class GetServiceLanVpnFeatureIpv4StaticRouteResult(dict):
|
|
|
84361
84932
|
subnet_mask_variable: _builtins.str,
|
|
84362
84933
|
vpn: _builtins.bool):
|
|
84363
84934
|
"""
|
|
84364
|
-
:param _builtins.bool
|
|
84935
|
+
:param _builtins.bool dhcp: IPv4 Route Gateway DHCP
|
|
84936
|
+
:param _builtins.str gateway: Gateway type
|
|
84365
84937
|
:param _builtins.str network_address: IP Address
|
|
84366
84938
|
:param _builtins.str network_address_variable: Variable name
|
|
84367
84939
|
:param Sequence['GetServiceLanVpnFeatureIpv4StaticRouteNextHopWithTrackerArgs'] next_hop_with_trackers: IPv4 Route Gateway Next Hop with Tracker
|
|
@@ -84371,7 +84943,8 @@ class GetServiceLanVpnFeatureIpv4StaticRouteResult(dict):
|
|
|
84371
84943
|
:param _builtins.str subnet_mask_variable: Variable name
|
|
84372
84944
|
:param _builtins.bool vpn: IPv4 Route Gateway VPN
|
|
84373
84945
|
"""
|
|
84374
|
-
pulumi.set(__self__, "
|
|
84946
|
+
pulumi.set(__self__, "dhcp", dhcp)
|
|
84947
|
+
pulumi.set(__self__, "gateway", gateway)
|
|
84375
84948
|
pulumi.set(__self__, "network_address", network_address)
|
|
84376
84949
|
pulumi.set(__self__, "network_address_variable", network_address_variable)
|
|
84377
84950
|
pulumi.set(__self__, "next_hop_with_trackers", next_hop_with_trackers)
|
|
@@ -84382,12 +84955,20 @@ class GetServiceLanVpnFeatureIpv4StaticRouteResult(dict):
|
|
|
84382
84955
|
pulumi.set(__self__, "vpn", vpn)
|
|
84383
84956
|
|
|
84384
84957
|
@_builtins.property
|
|
84385
|
-
@pulumi.getter
|
|
84386
|
-
def
|
|
84958
|
+
@pulumi.getter
|
|
84959
|
+
def dhcp(self) -> _builtins.bool:
|
|
84387
84960
|
"""
|
|
84388
84961
|
IPv4 Route Gateway DHCP
|
|
84389
84962
|
"""
|
|
84390
|
-
return pulumi.get(self, "
|
|
84963
|
+
return pulumi.get(self, "dhcp")
|
|
84964
|
+
|
|
84965
|
+
@_builtins.property
|
|
84966
|
+
@pulumi.getter
|
|
84967
|
+
def gateway(self) -> _builtins.str:
|
|
84968
|
+
"""
|
|
84969
|
+
Gateway type
|
|
84970
|
+
"""
|
|
84971
|
+
return pulumi.get(self, "gateway")
|
|
84391
84972
|
|
|
84392
84973
|
@_builtins.property
|
|
84393
84974
|
@pulumi.getter(name="networkAddress")
|
|
@@ -84624,6 +85205,7 @@ class GetServiceLanVpnFeatureIpv6ImportRouteTargetResult(dict):
|
|
|
84624
85205
|
@pulumi.output_type
|
|
84625
85206
|
class GetServiceLanVpnFeatureIpv6StaticRouteResult(dict):
|
|
84626
85207
|
def __init__(__self__, *,
|
|
85208
|
+
gateway: _builtins.str,
|
|
84627
85209
|
nat: _builtins.str,
|
|
84628
85210
|
nat_variable: _builtins.str,
|
|
84629
85211
|
next_hops: Sequence['outputs.GetServiceLanVpnFeatureIpv6StaticRouteNextHopResult'],
|
|
@@ -84631,6 +85213,7 @@ class GetServiceLanVpnFeatureIpv6StaticRouteResult(dict):
|
|
|
84631
85213
|
prefix: _builtins.str,
|
|
84632
85214
|
prefix_variable: _builtins.str):
|
|
84633
85215
|
"""
|
|
85216
|
+
:param _builtins.str gateway: Gateway type
|
|
84634
85217
|
:param _builtins.str nat: IPv6 Nat
|
|
84635
85218
|
:param _builtins.str nat_variable: Variable name
|
|
84636
85219
|
:param Sequence['GetServiceLanVpnFeatureIpv6StaticRouteNextHopArgs'] next_hops: IPv6 Route Gateway Next Hop
|
|
@@ -84638,6 +85221,7 @@ class GetServiceLanVpnFeatureIpv6StaticRouteResult(dict):
|
|
|
84638
85221
|
:param _builtins.str prefix: Prefix
|
|
84639
85222
|
:param _builtins.str prefix_variable: Variable name
|
|
84640
85223
|
"""
|
|
85224
|
+
pulumi.set(__self__, "gateway", gateway)
|
|
84641
85225
|
pulumi.set(__self__, "nat", nat)
|
|
84642
85226
|
pulumi.set(__self__, "nat_variable", nat_variable)
|
|
84643
85227
|
pulumi.set(__self__, "next_hops", next_hops)
|
|
@@ -84645,6 +85229,14 @@ class GetServiceLanVpnFeatureIpv6StaticRouteResult(dict):
|
|
|
84645
85229
|
pulumi.set(__self__, "prefix", prefix)
|
|
84646
85230
|
pulumi.set(__self__, "prefix_variable", prefix_variable)
|
|
84647
85231
|
|
|
85232
|
+
@_builtins.property
|
|
85233
|
+
@pulumi.getter
|
|
85234
|
+
def gateway(self) -> _builtins.str:
|
|
85235
|
+
"""
|
|
85236
|
+
Gateway type
|
|
85237
|
+
"""
|
|
85238
|
+
return pulumi.get(self, "gateway")
|
|
85239
|
+
|
|
84648
85240
|
@_builtins.property
|
|
84649
85241
|
@pulumi.getter
|
|
84650
85242
|
def nat(self) -> _builtins.str:
|
|
@@ -88613,65 +89205,105 @@ class GetServiceRoutingBgpFeatureIpv4NeighborResult(dict):
|
|
|
88613
89205
|
@pulumi.output_type
|
|
88614
89206
|
class GetServiceRoutingBgpFeatureIpv4NeighborAddressFamilyResult(dict):
|
|
88615
89207
|
def __init__(__self__, *,
|
|
89208
|
+
disable_peer_max_number_of_prefixes: _builtins.int,
|
|
89209
|
+
disable_peer_max_number_of_prefixes_variable: _builtins.str,
|
|
89210
|
+
disable_peer_threshold: _builtins.int,
|
|
89211
|
+
disable_peer_threshold_variable: _builtins.str,
|
|
88616
89212
|
family_type: _builtins.str,
|
|
88617
89213
|
in_route_policy_id: _builtins.str,
|
|
88618
|
-
max_number_of_prefixes: _builtins.int,
|
|
88619
|
-
max_number_of_prefixes_variable: _builtins.str,
|
|
88620
89214
|
out_route_policy_id: _builtins.str,
|
|
88621
89215
|
policy_type: _builtins.str,
|
|
88622
89216
|
restart_interval: _builtins.int,
|
|
88623
89217
|
restart_interval_variable: _builtins.str,
|
|
88624
|
-
|
|
88625
|
-
|
|
89218
|
+
restart_max_number_of_prefixes: _builtins.int,
|
|
89219
|
+
restart_max_number_of_prefixes_variable: _builtins.str,
|
|
89220
|
+
restart_threshold: _builtins.int,
|
|
89221
|
+
restart_threshold_variable: _builtins.str,
|
|
89222
|
+
warning_message_max_number_of_prefixes: _builtins.int,
|
|
89223
|
+
warning_message_max_number_of_prefixes_variable: _builtins.str,
|
|
89224
|
+
warning_message_threshold: _builtins.int,
|
|
89225
|
+
warning_message_threshold_variable: _builtins.str):
|
|
88626
89226
|
"""
|
|
89227
|
+
:param _builtins.int disable_peer_max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer
|
|
89228
|
+
:param _builtins.str disable_peer_max_number_of_prefixes_variable: Variable name
|
|
89229
|
+
:param _builtins.int disable_peer_threshold: Set threshold(1 to 100) at which to generate a warning message
|
|
89230
|
+
:param _builtins.str disable_peer_threshold_variable: Variable name
|
|
88627
89231
|
: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
89232
|
:param _builtins.str policy_type: Neighbor received maximum prefix policy is disabled.
|
|
88631
89233
|
:param _builtins.int restart_interval: Set the restart interval(minutes) when to restart BGP connection if threshold is exceeded
|
|
88632
89234
|
:param _builtins.str restart_interval_variable: Variable name
|
|
88633
|
-
:param _builtins.int
|
|
88634
|
-
:param _builtins.str
|
|
89235
|
+
:param _builtins.int restart_max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer
|
|
89236
|
+
:param _builtins.str restart_max_number_of_prefixes_variable: Variable name
|
|
89237
|
+
:param _builtins.int restart_threshold: Set threshold(1 to 100) at which to generate a warning message
|
|
89238
|
+
:param _builtins.str restart_threshold_variable: Variable name
|
|
89239
|
+
:param _builtins.int warning_message_max_number_of_prefixes: Set maximum number of prefixes accepted from BGP peer
|
|
89240
|
+
:param _builtins.str warning_message_max_number_of_prefixes_variable: Variable name
|
|
89241
|
+
:param _builtins.int warning_message_threshold: Set threshold(1 to 100) at which to generate a warning message
|
|
89242
|
+
:param _builtins.str warning_message_threshold_variable: Variable name
|
|
88635
89243
|
"""
|
|
89244
|
+
pulumi.set(__self__, "disable_peer_max_number_of_prefixes", disable_peer_max_number_of_prefixes)
|
|
89245
|
+
pulumi.set(__self__, "disable_peer_max_number_of_prefixes_variable", disable_peer_max_number_of_prefixes_variable)
|
|
89246
|
+
pulumi.set(__self__, "disable_peer_threshold", disable_peer_threshold)
|
|
89247
|
+
pulumi.set(__self__, "disable_peer_threshold_variable", disable_peer_threshold_variable)
|
|
88636
89248
|
pulumi.set(__self__, "family_type", family_type)
|
|
88637
89249
|
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
89250
|
pulumi.set(__self__, "out_route_policy_id", out_route_policy_id)
|
|
88641
89251
|
pulumi.set(__self__, "policy_type", policy_type)
|
|
88642
89252
|
pulumi.set(__self__, "restart_interval", restart_interval)
|
|
88643
89253
|
pulumi.set(__self__, "restart_interval_variable", restart_interval_variable)
|
|
88644
|
-
pulumi.set(__self__, "
|
|
88645
|
-
pulumi.set(__self__, "
|
|
89254
|
+
pulumi.set(__self__, "restart_max_number_of_prefixes", restart_max_number_of_prefixes)
|
|
89255
|
+
pulumi.set(__self__, "restart_max_number_of_prefixes_variable", restart_max_number_of_prefixes_variable)
|
|
89256
|
+
pulumi.set(__self__, "restart_threshold", restart_threshold)
|
|
89257
|
+
pulumi.set(__self__, "restart_threshold_variable", restart_threshold_variable)
|
|
89258
|
+
pulumi.set(__self__, "warning_message_max_number_of_prefixes", warning_message_max_number_of_prefixes)
|
|
89259
|
+
pulumi.set(__self__, "warning_message_max_number_of_prefixes_variable", warning_message_max_number_of_prefixes_variable)
|
|
89260
|
+
pulumi.set(__self__, "warning_message_threshold", warning_message_threshold)
|
|
89261
|
+
pulumi.set(__self__, "warning_message_threshold_variable", warning_message_threshold_variable)
|
|
88646
89262
|
|
|
88647
89263
|
@_builtins.property
|
|
88648
|
-
@pulumi.getter(name="
|
|
88649
|
-
def
|
|
89264
|
+
@pulumi.getter(name="disablePeerMaxNumberOfPrefixes")
|
|
89265
|
+
def disable_peer_max_number_of_prefixes(self) -> _builtins.int:
|
|
88650
89266
|
"""
|
|
88651
|
-
Set
|
|
89267
|
+
Set maximum number of prefixes accepted from BGP peer
|
|
88652
89268
|
"""
|
|
88653
|
-
return pulumi.get(self, "
|
|
89269
|
+
return pulumi.get(self, "disable_peer_max_number_of_prefixes")
|
|
88654
89270
|
|
|
88655
89271
|
@_builtins.property
|
|
88656
|
-
@pulumi.getter(name="
|
|
88657
|
-
def
|
|
88658
|
-
|
|
89272
|
+
@pulumi.getter(name="disablePeerMaxNumberOfPrefixesVariable")
|
|
89273
|
+
def disable_peer_max_number_of_prefixes_variable(self) -> _builtins.str:
|
|
89274
|
+
"""
|
|
89275
|
+
Variable name
|
|
89276
|
+
"""
|
|
89277
|
+
return pulumi.get(self, "disable_peer_max_number_of_prefixes_variable")
|
|
88659
89278
|
|
|
88660
89279
|
@_builtins.property
|
|
88661
|
-
@pulumi.getter(name="
|
|
88662
|
-
def
|
|
89280
|
+
@pulumi.getter(name="disablePeerThreshold")
|
|
89281
|
+
def disable_peer_threshold(self) -> _builtins.int:
|
|
88663
89282
|
"""
|
|
88664
|
-
Set
|
|
89283
|
+
Set threshold(1 to 100) at which to generate a warning message
|
|
88665
89284
|
"""
|
|
88666
|
-
return pulumi.get(self, "
|
|
89285
|
+
return pulumi.get(self, "disable_peer_threshold")
|
|
88667
89286
|
|
|
88668
89287
|
@_builtins.property
|
|
88669
|
-
@pulumi.getter(name="
|
|
88670
|
-
def
|
|
89288
|
+
@pulumi.getter(name="disablePeerThresholdVariable")
|
|
89289
|
+
def disable_peer_threshold_variable(self) -> _builtins.str:
|
|
88671
89290
|
"""
|
|
88672
89291
|
Variable name
|
|
88673
89292
|
"""
|
|
88674
|
-
return pulumi.get(self, "
|
|
89293
|
+
return pulumi.get(self, "disable_peer_threshold_variable")
|
|
89294
|
+
|
|
89295
|
+
@_builtins.property
|
|
89296
|
+
@pulumi.getter(name="familyType")
|
|
89297
|
+
def family_type(self) -> _builtins.str:
|
|
89298
|
+
"""
|
|
89299
|
+
Set IPv4 unicast address family
|
|
89300
|
+
"""
|
|
89301
|
+
return pulumi.get(self, "family_type")
|
|
89302
|
+
|
|
89303
|
+
@_builtins.property
|
|
89304
|
+
@pulumi.getter(name="inRoutePolicyId")
|
|
89305
|
+
def in_route_policy_id(self) -> _builtins.str:
|
|
89306
|
+
return pulumi.get(self, "in_route_policy_id")
|
|
88675
89307
|
|
|
88676
89308
|
@_builtins.property
|
|
88677
89309
|
@pulumi.getter(name="outRoutePolicyId")
|
|
@@ -88703,20 +89335,68 @@ class GetServiceRoutingBgpFeatureIpv4NeighborAddressFamilyResult(dict):
|
|
|
88703
89335
|
return pulumi.get(self, "restart_interval_variable")
|
|
88704
89336
|
|
|
88705
89337
|
@_builtins.property
|
|
88706
|
-
@pulumi.getter
|
|
88707
|
-
def
|
|
89338
|
+
@pulumi.getter(name="restartMaxNumberOfPrefixes")
|
|
89339
|
+
def restart_max_number_of_prefixes(self) -> _builtins.int:
|
|
89340
|
+
"""
|
|
89341
|
+
Set maximum number of prefixes accepted from BGP peer
|
|
89342
|
+
"""
|
|
89343
|
+
return pulumi.get(self, "restart_max_number_of_prefixes")
|
|
89344
|
+
|
|
89345
|
+
@_builtins.property
|
|
89346
|
+
@pulumi.getter(name="restartMaxNumberOfPrefixesVariable")
|
|
89347
|
+
def restart_max_number_of_prefixes_variable(self) -> _builtins.str:
|
|
89348
|
+
"""
|
|
89349
|
+
Variable name
|
|
89350
|
+
"""
|
|
89351
|
+
return pulumi.get(self, "restart_max_number_of_prefixes_variable")
|
|
89352
|
+
|
|
89353
|
+
@_builtins.property
|
|
89354
|
+
@pulumi.getter(name="restartThreshold")
|
|
89355
|
+
def restart_threshold(self) -> _builtins.int:
|
|
88708
89356
|
"""
|
|
88709
89357
|
Set threshold(1 to 100) at which to generate a warning message
|
|
88710
89358
|
"""
|
|
88711
|
-
return pulumi.get(self, "
|
|
89359
|
+
return pulumi.get(self, "restart_threshold")
|
|
88712
89360
|
|
|
88713
89361
|
@_builtins.property
|
|
88714
|
-
@pulumi.getter(name="
|
|
88715
|
-
def
|
|
89362
|
+
@pulumi.getter(name="restartThresholdVariable")
|
|
89363
|
+
def restart_threshold_variable(self) -> _builtins.str:
|
|
88716
89364
|
"""
|
|
88717
89365
|
Variable name
|
|
88718
89366
|
"""
|
|
88719
|
-
return pulumi.get(self, "
|
|
89367
|
+
return pulumi.get(self, "restart_threshold_variable")
|
|
89368
|
+
|
|
89369
|
+
@_builtins.property
|
|
89370
|
+
@pulumi.getter(name="warningMessageMaxNumberOfPrefixes")
|
|
89371
|
+
def warning_message_max_number_of_prefixes(self) -> _builtins.int:
|
|
89372
|
+
"""
|
|
89373
|
+
Set maximum number of prefixes accepted from BGP peer
|
|
89374
|
+
"""
|
|
89375
|
+
return pulumi.get(self, "warning_message_max_number_of_prefixes")
|
|
89376
|
+
|
|
89377
|
+
@_builtins.property
|
|
89378
|
+
@pulumi.getter(name="warningMessageMaxNumberOfPrefixesVariable")
|
|
89379
|
+
def warning_message_max_number_of_prefixes_variable(self) -> _builtins.str:
|
|
89380
|
+
"""
|
|
89381
|
+
Variable name
|
|
89382
|
+
"""
|
|
89383
|
+
return pulumi.get(self, "warning_message_max_number_of_prefixes_variable")
|
|
89384
|
+
|
|
89385
|
+
@_builtins.property
|
|
89386
|
+
@pulumi.getter(name="warningMessageThreshold")
|
|
89387
|
+
def warning_message_threshold(self) -> _builtins.int:
|
|
89388
|
+
"""
|
|
89389
|
+
Set threshold(1 to 100) at which to generate a warning message
|
|
89390
|
+
"""
|
|
89391
|
+
return pulumi.get(self, "warning_message_threshold")
|
|
89392
|
+
|
|
89393
|
+
@_builtins.property
|
|
89394
|
+
@pulumi.getter(name="warningMessageThresholdVariable")
|
|
89395
|
+
def warning_message_threshold_variable(self) -> _builtins.str:
|
|
89396
|
+
"""
|
|
89397
|
+
Variable name
|
|
89398
|
+
"""
|
|
89399
|
+
return pulumi.get(self, "warning_message_threshold_variable")
|
|
88720
89400
|
|
|
88721
89401
|
|
|
88722
89402
|
@pulumi.output_type
|
|
@@ -88767,14 +89447,17 @@ class GetServiceRoutingBgpFeatureIpv4RedistributeResult(dict):
|
|
|
88767
89447
|
def __init__(__self__, *,
|
|
88768
89448
|
protocol: _builtins.str,
|
|
88769
89449
|
protocol_variable: _builtins.str,
|
|
88770
|
-
route_policy_id: _builtins.str
|
|
89450
|
+
route_policy_id: _builtins.str,
|
|
89451
|
+
translate_rib_metric: _builtins.bool):
|
|
88771
89452
|
"""
|
|
88772
89453
|
:param _builtins.str protocol: Set the protocol to redistribute routes from
|
|
88773
89454
|
:param _builtins.str protocol_variable: Variable name
|
|
89455
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
88774
89456
|
"""
|
|
88775
89457
|
pulumi.set(__self__, "protocol", protocol)
|
|
88776
89458
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
88777
89459
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
89460
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
88778
89461
|
|
|
88779
89462
|
@_builtins.property
|
|
88780
89463
|
@pulumi.getter
|
|
@@ -88797,6 +89480,14 @@ class GetServiceRoutingBgpFeatureIpv4RedistributeResult(dict):
|
|
|
88797
89480
|
def route_policy_id(self) -> _builtins.str:
|
|
88798
89481
|
return pulumi.get(self, "route_policy_id")
|
|
88799
89482
|
|
|
89483
|
+
@_builtins.property
|
|
89484
|
+
@pulumi.getter(name="translateRibMetric")
|
|
89485
|
+
def translate_rib_metric(self) -> _builtins.bool:
|
|
89486
|
+
"""
|
|
89487
|
+
Translate Rib Metric
|
|
89488
|
+
"""
|
|
89489
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
89490
|
+
|
|
88800
89491
|
|
|
88801
89492
|
@pulumi.output_type
|
|
88802
89493
|
class GetServiceRoutingBgpFeatureIpv6AggregateAddressResult(dict):
|
|
@@ -89362,14 +90053,17 @@ class GetServiceRoutingBgpFeatureIpv6RedistributeResult(dict):
|
|
|
89362
90053
|
def __init__(__self__, *,
|
|
89363
90054
|
protocol: _builtins.str,
|
|
89364
90055
|
protocol_variable: _builtins.str,
|
|
89365
|
-
route_policy_id: _builtins.str
|
|
90056
|
+
route_policy_id: _builtins.str,
|
|
90057
|
+
translate_rib_metric: _builtins.bool):
|
|
89366
90058
|
"""
|
|
89367
90059
|
:param _builtins.str protocol: Set the protocol to redistribute routes from
|
|
89368
90060
|
:param _builtins.str protocol_variable: Variable name
|
|
90061
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
89369
90062
|
"""
|
|
89370
90063
|
pulumi.set(__self__, "protocol", protocol)
|
|
89371
90064
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
89372
90065
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
90066
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
89373
90067
|
|
|
89374
90068
|
@_builtins.property
|
|
89375
90069
|
@pulumi.getter
|
|
@@ -89392,6 +90086,14 @@ class GetServiceRoutingBgpFeatureIpv6RedistributeResult(dict):
|
|
|
89392
90086
|
def route_policy_id(self) -> _builtins.str:
|
|
89393
90087
|
return pulumi.get(self, "route_policy_id")
|
|
89394
90088
|
|
|
90089
|
+
@_builtins.property
|
|
90090
|
+
@pulumi.getter(name="translateRibMetric")
|
|
90091
|
+
def translate_rib_metric(self) -> _builtins.bool:
|
|
90092
|
+
"""
|
|
90093
|
+
Translate Rib Metric
|
|
90094
|
+
"""
|
|
90095
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
90096
|
+
|
|
89395
90097
|
|
|
89396
90098
|
@pulumi.output_type
|
|
89397
90099
|
class GetServiceRoutingEigrpFeatureInterfaceResult(dict):
|
|
@@ -90063,18 +90765,21 @@ class GetServiceRoutingOspfFeatureRedistributeResult(dict):
|
|
|
90063
90765
|
nat_dia_variable: _builtins.str,
|
|
90064
90766
|
protocol: _builtins.str,
|
|
90065
90767
|
protocol_variable: _builtins.str,
|
|
90066
|
-
route_policy_id: _builtins.str
|
|
90768
|
+
route_policy_id: _builtins.str,
|
|
90769
|
+
translate_rib_metric: _builtins.bool):
|
|
90067
90770
|
"""
|
|
90068
90771
|
:param _builtins.bool nat_dia: Enable NAT DIA for redistributed routes
|
|
90069
90772
|
:param _builtins.str nat_dia_variable: Variable name
|
|
90070
90773
|
:param _builtins.str protocol: Set the protocol
|
|
90071
90774
|
:param _builtins.str protocol_variable: Variable name
|
|
90775
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
90072
90776
|
"""
|
|
90073
90777
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
90074
90778
|
pulumi.set(__self__, "nat_dia_variable", nat_dia_variable)
|
|
90075
90779
|
pulumi.set(__self__, "protocol", protocol)
|
|
90076
90780
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
90077
90781
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
90782
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
90078
90783
|
|
|
90079
90784
|
@_builtins.property
|
|
90080
90785
|
@pulumi.getter(name="natDia")
|
|
@@ -90113,6 +90818,14 @@ class GetServiceRoutingOspfFeatureRedistributeResult(dict):
|
|
|
90113
90818
|
def route_policy_id(self) -> _builtins.str:
|
|
90114
90819
|
return pulumi.get(self, "route_policy_id")
|
|
90115
90820
|
|
|
90821
|
+
@_builtins.property
|
|
90822
|
+
@pulumi.getter(name="translateRibMetric")
|
|
90823
|
+
def translate_rib_metric(self) -> _builtins.bool:
|
|
90824
|
+
"""
|
|
90825
|
+
Translate Rib Metric
|
|
90826
|
+
"""
|
|
90827
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
90828
|
+
|
|
90116
90829
|
|
|
90117
90830
|
@pulumi.output_type
|
|
90118
90831
|
class GetServiceRoutingOspfFeatureRouterLsaResult(dict):
|
|
@@ -90570,18 +91283,21 @@ class GetServiceRoutingOspfv3Ipv4FeatureRedistributeResult(dict):
|
|
|
90570
91283
|
nat_dia_variable: _builtins.str,
|
|
90571
91284
|
protocol: _builtins.str,
|
|
90572
91285
|
protocol_variable: _builtins.str,
|
|
90573
|
-
route_policy_id: _builtins.str
|
|
91286
|
+
route_policy_id: _builtins.str,
|
|
91287
|
+
translate_rib_metric: _builtins.bool):
|
|
90574
91288
|
"""
|
|
90575
91289
|
:param _builtins.bool nat_dia: Enable NAT DIA for redistributed routes
|
|
90576
91290
|
:param _builtins.str nat_dia_variable: Variable name
|
|
90577
91291
|
:param _builtins.str protocol: Set the protocol
|
|
90578
91292
|
:param _builtins.str protocol_variable: Variable name
|
|
91293
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
90579
91294
|
"""
|
|
90580
91295
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
90581
91296
|
pulumi.set(__self__, "nat_dia_variable", nat_dia_variable)
|
|
90582
91297
|
pulumi.set(__self__, "protocol", protocol)
|
|
90583
91298
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
90584
91299
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
91300
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
90585
91301
|
|
|
90586
91302
|
@_builtins.property
|
|
90587
91303
|
@pulumi.getter(name="natDia")
|
|
@@ -90620,6 +91336,14 @@ class GetServiceRoutingOspfv3Ipv4FeatureRedistributeResult(dict):
|
|
|
90620
91336
|
def route_policy_id(self) -> _builtins.str:
|
|
90621
91337
|
return pulumi.get(self, "route_policy_id")
|
|
90622
91338
|
|
|
91339
|
+
@_builtins.property
|
|
91340
|
+
@pulumi.getter(name="translateRibMetric")
|
|
91341
|
+
def translate_rib_metric(self) -> _builtins.bool:
|
|
91342
|
+
"""
|
|
91343
|
+
Translate Rib Metric
|
|
91344
|
+
"""
|
|
91345
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
91346
|
+
|
|
90623
91347
|
|
|
90624
91348
|
@pulumi.output_type
|
|
90625
91349
|
class GetServiceRoutingOspfv3Ipv6FeatureAreaResult(dict):
|
|
@@ -91021,14 +91745,17 @@ class GetServiceRoutingOspfv3Ipv6FeatureRedistributeResult(dict):
|
|
|
91021
91745
|
def __init__(__self__, *,
|
|
91022
91746
|
protocol: _builtins.str,
|
|
91023
91747
|
protocol_variable: _builtins.str,
|
|
91024
|
-
route_policy_id: _builtins.str
|
|
91748
|
+
route_policy_id: _builtins.str,
|
|
91749
|
+
translate_rib_metric: _builtins.bool):
|
|
91025
91750
|
"""
|
|
91026
91751
|
:param _builtins.str protocol: Set the protocol
|
|
91027
91752
|
:param _builtins.str protocol_variable: Variable name
|
|
91753
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
91028
91754
|
"""
|
|
91029
91755
|
pulumi.set(__self__, "protocol", protocol)
|
|
91030
91756
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
91031
91757
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
91758
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
91032
91759
|
|
|
91033
91760
|
@_builtins.property
|
|
91034
91761
|
@pulumi.getter
|
|
@@ -91051,6 +91778,14 @@ class GetServiceRoutingOspfv3Ipv6FeatureRedistributeResult(dict):
|
|
|
91051
91778
|
def route_policy_id(self) -> _builtins.str:
|
|
91052
91779
|
return pulumi.get(self, "route_policy_id")
|
|
91053
91780
|
|
|
91781
|
+
@_builtins.property
|
|
91782
|
+
@pulumi.getter(name="translateRibMetric")
|
|
91783
|
+
def translate_rib_metric(self) -> _builtins.bool:
|
|
91784
|
+
"""
|
|
91785
|
+
Translate Rib Metric
|
|
91786
|
+
"""
|
|
91787
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
91788
|
+
|
|
91054
91789
|
|
|
91055
91790
|
@pulumi.output_type
|
|
91056
91791
|
class GetServiceSwitchportFeatureInterfaceResult(dict):
|
|
@@ -95101,17 +95836,17 @@ class GetTlsSslDecryptionPolicyDefinitionUrlRuleResult(dict):
|
|
|
95101
95836
|
rule_name: _builtins.str,
|
|
95102
95837
|
target_vpns: Sequence[_builtins.str],
|
|
95103
95838
|
tls_ssl_profile_policy_id: _builtins.str,
|
|
95104
|
-
|
|
95839
|
+
tls_ssl_profile_policy_version: _builtins.int):
|
|
95105
95840
|
"""
|
|
95106
95841
|
:param _builtins.str rule_name: Country
|
|
95107
95842
|
:param Sequence[_builtins.str] target_vpns: List of VPN IDs
|
|
95108
95843
|
:param _builtins.str tls_ssl_profile_policy_id: TLS SSL Profile Policy ID
|
|
95109
|
-
:param _builtins.int
|
|
95844
|
+
:param _builtins.int tls_ssl_profile_policy_version: TLS SSL Profile Policy version
|
|
95110
95845
|
"""
|
|
95111
95846
|
pulumi.set(__self__, "rule_name", rule_name)
|
|
95112
95847
|
pulumi.set(__self__, "target_vpns", target_vpns)
|
|
95113
95848
|
pulumi.set(__self__, "tls_ssl_profile_policy_id", tls_ssl_profile_policy_id)
|
|
95114
|
-
pulumi.set(__self__, "
|
|
95849
|
+
pulumi.set(__self__, "tls_ssl_profile_policy_version", tls_ssl_profile_policy_version)
|
|
95115
95850
|
|
|
95116
95851
|
@_builtins.property
|
|
95117
95852
|
@pulumi.getter(name="ruleName")
|
|
@@ -95138,12 +95873,12 @@ class GetTlsSslDecryptionPolicyDefinitionUrlRuleResult(dict):
|
|
|
95138
95873
|
return pulumi.get(self, "tls_ssl_profile_policy_id")
|
|
95139
95874
|
|
|
95140
95875
|
@_builtins.property
|
|
95141
|
-
@pulumi.getter(name="
|
|
95142
|
-
def
|
|
95876
|
+
@pulumi.getter(name="tlsSslProfilePolicyVersion")
|
|
95877
|
+
def tls_ssl_profile_policy_version(self) -> _builtins.int:
|
|
95143
95878
|
"""
|
|
95144
95879
|
TLS SSL Profile Policy version
|
|
95145
95880
|
"""
|
|
95146
|
-
return pulumi.get(self, "
|
|
95881
|
+
return pulumi.get(self, "tls_ssl_profile_policy_version")
|
|
95147
95882
|
|
|
95148
95883
|
|
|
95149
95884
|
@pulumi.output_type
|
|
@@ -95509,7 +96244,7 @@ class GetTrafficDataPolicyDefinitionSequenceActionEntrySetParameterResult(dict):
|
|
|
95509
96244
|
next_hop_loose: _builtins.bool,
|
|
95510
96245
|
policer_list_id: _builtins.str,
|
|
95511
96246
|
policer_list_version: _builtins.int,
|
|
95512
|
-
|
|
96247
|
+
preferred_color_group_list_id: _builtins.str,
|
|
95513
96248
|
preferred_color_group_list_version: _builtins.int,
|
|
95514
96249
|
service_tloc_color: _builtins.str,
|
|
95515
96250
|
service_tloc_encapsulation: _builtins.str,
|
|
@@ -95537,7 +96272,7 @@ class GetTrafficDataPolicyDefinitionSequenceActionEntrySetParameterResult(dict):
|
|
|
95537
96272
|
:param _builtins.bool next_hop_loose: Use routing table entry to forward the packet in case Next-hop is not available
|
|
95538
96273
|
:param _builtins.str policer_list_id: Policer list ID
|
|
95539
96274
|
:param _builtins.int policer_list_version: Policer list version
|
|
95540
|
-
:param _builtins.str
|
|
96275
|
+
:param _builtins.str preferred_color_group_list_id: Preferred color group list ID
|
|
95541
96276
|
:param _builtins.int preferred_color_group_list_version: Preferred color group list version
|
|
95542
96277
|
:param _builtins.str service_tloc_color: Service TLOC color
|
|
95543
96278
|
:param _builtins.str service_tloc_encapsulation: Service TLOC encapsulation
|
|
@@ -95565,7 +96300,7 @@ class GetTrafficDataPolicyDefinitionSequenceActionEntrySetParameterResult(dict):
|
|
|
95565
96300
|
pulumi.set(__self__, "next_hop_loose", next_hop_loose)
|
|
95566
96301
|
pulumi.set(__self__, "policer_list_id", policer_list_id)
|
|
95567
96302
|
pulumi.set(__self__, "policer_list_version", policer_list_version)
|
|
95568
|
-
pulumi.set(__self__, "
|
|
96303
|
+
pulumi.set(__self__, "preferred_color_group_list_id", preferred_color_group_list_id)
|
|
95569
96304
|
pulumi.set(__self__, "preferred_color_group_list_version", preferred_color_group_list_version)
|
|
95570
96305
|
pulumi.set(__self__, "service_tloc_color", service_tloc_color)
|
|
95571
96306
|
pulumi.set(__self__, "service_tloc_encapsulation", service_tloc_encapsulation)
|
|
@@ -95657,12 +96392,12 @@ class GetTrafficDataPolicyDefinitionSequenceActionEntrySetParameterResult(dict):
|
|
|
95657
96392
|
return pulumi.get(self, "policer_list_version")
|
|
95658
96393
|
|
|
95659
96394
|
@_builtins.property
|
|
95660
|
-
@pulumi.getter(name="
|
|
95661
|
-
def
|
|
96395
|
+
@pulumi.getter(name="preferredColorGroupListId")
|
|
96396
|
+
def preferred_color_group_list_id(self) -> _builtins.str:
|
|
95662
96397
|
"""
|
|
95663
96398
|
Preferred color group list ID
|
|
95664
96399
|
"""
|
|
95665
|
-
return pulumi.get(self, "
|
|
96400
|
+
return pulumi.get(self, "preferred_color_group_list_id")
|
|
95666
96401
|
|
|
95667
96402
|
@_builtins.property
|
|
95668
96403
|
@pulumi.getter(name="preferredColorGroupListVersion")
|