pulumi-sdwan 0.4.0a1755056572__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/_inputs.py +120 -5
- pulumi_sdwan/cisco_system_feature_template.py +47 -0
- pulumi_sdwan/get_cisco_system_feature_template.py +15 -1
- pulumi_sdwan/localized_policy.py +40 -40
- pulumi_sdwan/outputs.py +145 -10
- pulumi_sdwan/pulumi-plugin.json +1 -1
- {pulumi_sdwan-0.4.0a1755056572.dist-info → pulumi_sdwan-0.4.1.dist-info}/METADATA +1 -1
- {pulumi_sdwan-0.4.0a1755056572.dist-info → pulumi_sdwan-0.4.1.dist-info}/RECORD +10 -10
- {pulumi_sdwan-0.4.0a1755056572.dist-info → pulumi_sdwan-0.4.1.dist-info}/WHEEL +0 -0
- {pulumi_sdwan-0.4.0a1755056572.dist-info → pulumi_sdwan-0.4.1.dist-info}/top_level.txt +0 -0
pulumi_sdwan/_inputs.py
CHANGED
|
@@ -51184,6 +51184,11 @@ if not MYPY:
|
|
|
51184
51184
|
Variable name
|
|
51185
51185
|
"""
|
|
51186
51186
|
route_policy_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
51187
|
+
translate_rib_metric: NotRequired[pulumi.Input[_builtins.bool]]
|
|
51188
|
+
"""
|
|
51189
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
51190
|
+
- Default value: `false`
|
|
51191
|
+
"""
|
|
51187
51192
|
elif False:
|
|
51188
51193
|
ServiceRoutingBgpFeatureIpv4RedistributeArgsDict: TypeAlias = Mapping[str, Any]
|
|
51189
51194
|
|
|
@@ -51192,11 +51197,14 @@ class ServiceRoutingBgpFeatureIpv4RedistributeArgs:
|
|
|
51192
51197
|
def __init__(__self__, *,
|
|
51193
51198
|
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
51194
51199
|
protocol_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
51195
|
-
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None
|
|
51200
|
+
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
51201
|
+
translate_rib_metric: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
51196
51202
|
"""
|
|
51197
51203
|
:param pulumi.Input[_builtins.str] protocol: Set the protocol to redistribute routes from
|
|
51198
51204
|
- Choices: `static`, `connected`, `omp`, `nat`, `ospf`, `ospfv3`, `eigrp`
|
|
51199
51205
|
:param pulumi.Input[_builtins.str] protocol_variable: Variable name
|
|
51206
|
+
:param pulumi.Input[_builtins.bool] translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
51207
|
+
- Default value: `false`
|
|
51200
51208
|
"""
|
|
51201
51209
|
if protocol is not None:
|
|
51202
51210
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -51204,6 +51212,8 @@ class ServiceRoutingBgpFeatureIpv4RedistributeArgs:
|
|
|
51204
51212
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
51205
51213
|
if route_policy_id is not None:
|
|
51206
51214
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
51215
|
+
if translate_rib_metric is not None:
|
|
51216
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
51207
51217
|
|
|
51208
51218
|
@_builtins.property
|
|
51209
51219
|
@pulumi.getter
|
|
@@ -51239,6 +51249,19 @@ class ServiceRoutingBgpFeatureIpv4RedistributeArgs:
|
|
|
51239
51249
|
def route_policy_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
51240
51250
|
pulumi.set(self, "route_policy_id", value)
|
|
51241
51251
|
|
|
51252
|
+
@_builtins.property
|
|
51253
|
+
@pulumi.getter(name="translateRibMetric")
|
|
51254
|
+
def translate_rib_metric(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
51255
|
+
"""
|
|
51256
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
51257
|
+
- Default value: `false`
|
|
51258
|
+
"""
|
|
51259
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
51260
|
+
|
|
51261
|
+
@translate_rib_metric.setter
|
|
51262
|
+
def translate_rib_metric(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
51263
|
+
pulumi.set(self, "translate_rib_metric", value)
|
|
51264
|
+
|
|
51242
51265
|
|
|
51243
51266
|
if not MYPY:
|
|
51244
51267
|
class ServiceRoutingBgpFeatureIpv6AggregateAddressArgsDict(TypedDict):
|
|
@@ -52320,6 +52343,11 @@ if not MYPY:
|
|
|
52320
52343
|
Variable name
|
|
52321
52344
|
"""
|
|
52322
52345
|
route_policy_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
52346
|
+
translate_rib_metric: NotRequired[pulumi.Input[_builtins.bool]]
|
|
52347
|
+
"""
|
|
52348
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
52349
|
+
- Default value: `false`
|
|
52350
|
+
"""
|
|
52323
52351
|
elif False:
|
|
52324
52352
|
ServiceRoutingBgpFeatureIpv6RedistributeArgsDict: TypeAlias = Mapping[str, Any]
|
|
52325
52353
|
|
|
@@ -52328,11 +52356,14 @@ class ServiceRoutingBgpFeatureIpv6RedistributeArgs:
|
|
|
52328
52356
|
def __init__(__self__, *,
|
|
52329
52357
|
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
52330
52358
|
protocol_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
52331
|
-
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None
|
|
52359
|
+
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
52360
|
+
translate_rib_metric: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
52332
52361
|
"""
|
|
52333
52362
|
:param pulumi.Input[_builtins.str] protocol: Set the protocol to redistribute routes from
|
|
52334
52363
|
- Choices: `static`, `connected`, `ospf`, `omp`
|
|
52335
52364
|
:param pulumi.Input[_builtins.str] protocol_variable: Variable name
|
|
52365
|
+
:param pulumi.Input[_builtins.bool] translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
52366
|
+
- Default value: `false`
|
|
52336
52367
|
"""
|
|
52337
52368
|
if protocol is not None:
|
|
52338
52369
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -52340,6 +52371,8 @@ class ServiceRoutingBgpFeatureIpv6RedistributeArgs:
|
|
|
52340
52371
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
52341
52372
|
if route_policy_id is not None:
|
|
52342
52373
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
52374
|
+
if translate_rib_metric is not None:
|
|
52375
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
52343
52376
|
|
|
52344
52377
|
@_builtins.property
|
|
52345
52378
|
@pulumi.getter
|
|
@@ -52375,6 +52408,19 @@ class ServiceRoutingBgpFeatureIpv6RedistributeArgs:
|
|
|
52375
52408
|
def route_policy_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
52376
52409
|
pulumi.set(self, "route_policy_id", value)
|
|
52377
52410
|
|
|
52411
|
+
@_builtins.property
|
|
52412
|
+
@pulumi.getter(name="translateRibMetric")
|
|
52413
|
+
def translate_rib_metric(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
52414
|
+
"""
|
|
52415
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
52416
|
+
- Default value: `false`
|
|
52417
|
+
"""
|
|
52418
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
52419
|
+
|
|
52420
|
+
@translate_rib_metric.setter
|
|
52421
|
+
def translate_rib_metric(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
52422
|
+
pulumi.set(self, "translate_rib_metric", value)
|
|
52423
|
+
|
|
52378
52424
|
|
|
52379
52425
|
if not MYPY:
|
|
52380
52426
|
class ServiceRoutingEigrpFeatureInterfaceArgsDict(TypedDict):
|
|
@@ -53681,6 +53727,11 @@ if not MYPY:
|
|
|
53681
53727
|
Variable name
|
|
53682
53728
|
"""
|
|
53683
53729
|
route_policy_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
53730
|
+
translate_rib_metric: NotRequired[pulumi.Input[_builtins.bool]]
|
|
53731
|
+
"""
|
|
53732
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
53733
|
+
- Default value: `false`
|
|
53734
|
+
"""
|
|
53684
53735
|
elif False:
|
|
53685
53736
|
ServiceRoutingOspfFeatureRedistributeArgsDict: TypeAlias = Mapping[str, Any]
|
|
53686
53737
|
|
|
@@ -53691,7 +53742,8 @@ class ServiceRoutingOspfFeatureRedistributeArgs:
|
|
|
53691
53742
|
nat_dia_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
53692
53743
|
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
53693
53744
|
protocol_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
53694
|
-
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None
|
|
53745
|
+
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
53746
|
+
translate_rib_metric: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
53695
53747
|
"""
|
|
53696
53748
|
:param pulumi.Input[_builtins.bool] nat_dia: Enable NAT DIA for redistributed routes
|
|
53697
53749
|
- Default value: `true`
|
|
@@ -53699,6 +53751,8 @@ class ServiceRoutingOspfFeatureRedistributeArgs:
|
|
|
53699
53751
|
:param pulumi.Input[_builtins.str] protocol: Set the protocol
|
|
53700
53752
|
- Choices: `static`, `connected`, `bgp`, `omp`, `nat`, `eigrp`
|
|
53701
53753
|
:param pulumi.Input[_builtins.str] protocol_variable: Variable name
|
|
53754
|
+
:param pulumi.Input[_builtins.bool] translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
53755
|
+
- Default value: `false`
|
|
53702
53756
|
"""
|
|
53703
53757
|
if nat_dia is not None:
|
|
53704
53758
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
@@ -53710,6 +53764,8 @@ class ServiceRoutingOspfFeatureRedistributeArgs:
|
|
|
53710
53764
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
53711
53765
|
if route_policy_id is not None:
|
|
53712
53766
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
53767
|
+
if translate_rib_metric is not None:
|
|
53768
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
53713
53769
|
|
|
53714
53770
|
@_builtins.property
|
|
53715
53771
|
@pulumi.getter(name="natDia")
|
|
@@ -53770,6 +53826,19 @@ class ServiceRoutingOspfFeatureRedistributeArgs:
|
|
|
53770
53826
|
def route_policy_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
53771
53827
|
pulumi.set(self, "route_policy_id", value)
|
|
53772
53828
|
|
|
53829
|
+
@_builtins.property
|
|
53830
|
+
@pulumi.getter(name="translateRibMetric")
|
|
53831
|
+
def translate_rib_metric(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
53832
|
+
"""
|
|
53833
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
53834
|
+
- Default value: `false`
|
|
53835
|
+
"""
|
|
53836
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
53837
|
+
|
|
53838
|
+
@translate_rib_metric.setter
|
|
53839
|
+
def translate_rib_metric(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
53840
|
+
pulumi.set(self, "translate_rib_metric", value)
|
|
53841
|
+
|
|
53773
53842
|
|
|
53774
53843
|
if not MYPY:
|
|
53775
53844
|
class ServiceRoutingOspfFeatureRouterLsaArgsDict(TypedDict):
|
|
@@ -54664,6 +54733,11 @@ if not MYPY:
|
|
|
54664
54733
|
Variable name
|
|
54665
54734
|
"""
|
|
54666
54735
|
route_policy_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
54736
|
+
translate_rib_metric: NotRequired[pulumi.Input[_builtins.bool]]
|
|
54737
|
+
"""
|
|
54738
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
54739
|
+
- Default value: `false`
|
|
54740
|
+
"""
|
|
54667
54741
|
elif False:
|
|
54668
54742
|
ServiceRoutingOspfv3Ipv4FeatureRedistributeArgsDict: TypeAlias = Mapping[str, Any]
|
|
54669
54743
|
|
|
@@ -54674,7 +54748,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistributeArgs:
|
|
|
54674
54748
|
nat_dia_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
54675
54749
|
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
54676
54750
|
protocol_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
54677
|
-
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None
|
|
54751
|
+
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
54752
|
+
translate_rib_metric: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
54678
54753
|
"""
|
|
54679
54754
|
:param pulumi.Input[_builtins.bool] nat_dia: Enable NAT DIA for redistributed routes
|
|
54680
54755
|
- Default value: `true`
|
|
@@ -54682,6 +54757,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistributeArgs:
|
|
|
54682
54757
|
:param pulumi.Input[_builtins.str] protocol: Set the protocol
|
|
54683
54758
|
- Choices: `connected`, `static`, `omp`, `nat-route`, `bgp`, `eigrp`
|
|
54684
54759
|
:param pulumi.Input[_builtins.str] protocol_variable: Variable name
|
|
54760
|
+
:param pulumi.Input[_builtins.bool] translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
54761
|
+
- Default value: `false`
|
|
54685
54762
|
"""
|
|
54686
54763
|
if nat_dia is not None:
|
|
54687
54764
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
@@ -54693,6 +54770,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistributeArgs:
|
|
|
54693
54770
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
54694
54771
|
if route_policy_id is not None:
|
|
54695
54772
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
54773
|
+
if translate_rib_metric is not None:
|
|
54774
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
54696
54775
|
|
|
54697
54776
|
@_builtins.property
|
|
54698
54777
|
@pulumi.getter(name="natDia")
|
|
@@ -54753,6 +54832,19 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistributeArgs:
|
|
|
54753
54832
|
def route_policy_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
54754
54833
|
pulumi.set(self, "route_policy_id", value)
|
|
54755
54834
|
|
|
54835
|
+
@_builtins.property
|
|
54836
|
+
@pulumi.getter(name="translateRibMetric")
|
|
54837
|
+
def translate_rib_metric(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
54838
|
+
"""
|
|
54839
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
54840
|
+
- Default value: `false`
|
|
54841
|
+
"""
|
|
54842
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
54843
|
+
|
|
54844
|
+
@translate_rib_metric.setter
|
|
54845
|
+
def translate_rib_metric(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
54846
|
+
pulumi.set(self, "translate_rib_metric", value)
|
|
54847
|
+
|
|
54756
54848
|
|
|
54757
54849
|
if not MYPY:
|
|
54758
54850
|
class ServiceRoutingOspfv3Ipv6FeatureAreaArgsDict(TypedDict):
|
|
@@ -55527,6 +55619,11 @@ if not MYPY:
|
|
|
55527
55619
|
Variable name
|
|
55528
55620
|
"""
|
|
55529
55621
|
route_policy_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
55622
|
+
translate_rib_metric: NotRequired[pulumi.Input[_builtins.bool]]
|
|
55623
|
+
"""
|
|
55624
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
55625
|
+
- Default value: `false`
|
|
55626
|
+
"""
|
|
55530
55627
|
elif False:
|
|
55531
55628
|
ServiceRoutingOspfv3Ipv6FeatureRedistributeArgsDict: TypeAlias = Mapping[str, Any]
|
|
55532
55629
|
|
|
@@ -55535,11 +55632,14 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistributeArgs:
|
|
|
55535
55632
|
def __init__(__self__, *,
|
|
55536
55633
|
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
55537
55634
|
protocol_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
55538
|
-
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None
|
|
55635
|
+
route_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
55636
|
+
translate_rib_metric: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
55539
55637
|
"""
|
|
55540
55638
|
:param pulumi.Input[_builtins.str] protocol: Set the protocol
|
|
55541
55639
|
- Choices: `connected`, `static`, `omp`, `bgp`, `eigrp`
|
|
55542
55640
|
:param pulumi.Input[_builtins.str] protocol_variable: Variable name
|
|
55641
|
+
:param pulumi.Input[_builtins.bool] translate_rib_metric: Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
55642
|
+
- Default value: `false`
|
|
55543
55643
|
"""
|
|
55544
55644
|
if protocol is not None:
|
|
55545
55645
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -55547,6 +55647,8 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistributeArgs:
|
|
|
55547
55647
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
55548
55648
|
if route_policy_id is not None:
|
|
55549
55649
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
55650
|
+
if translate_rib_metric is not None:
|
|
55651
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
55550
55652
|
|
|
55551
55653
|
@_builtins.property
|
|
55552
55654
|
@pulumi.getter
|
|
@@ -55582,6 +55684,19 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistributeArgs:
|
|
|
55582
55684
|
def route_policy_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
55583
55685
|
pulumi.set(self, "route_policy_id", value)
|
|
55584
55686
|
|
|
55687
|
+
@_builtins.property
|
|
55688
|
+
@pulumi.getter(name="translateRibMetric")
|
|
55689
|
+
def translate_rib_metric(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
55690
|
+
"""
|
|
55691
|
+
Translate Rib Metric, Attribute conditional on `protocol` being equal to `omp`
|
|
55692
|
+
- Default value: `false`
|
|
55693
|
+
"""
|
|
55694
|
+
return pulumi.get(self, "translate_rib_metric")
|
|
55695
|
+
|
|
55696
|
+
@translate_rib_metric.setter
|
|
55697
|
+
def translate_rib_metric(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
55698
|
+
pulumi.set(self, "translate_rib_metric", value)
|
|
55699
|
+
|
|
55585
55700
|
|
|
55586
55701
|
if not MYPY:
|
|
55587
55702
|
class ServiceSwitchportFeatureInterfaceArgsDict(TypedDict):
|
|
@@ -39,6 +39,7 @@ class CiscoSystemFeatureTemplateArgs:
|
|
|
39
39
|
device_groups_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
40
40
|
enable_mrf_migration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
41
41
|
enhanced_app_aware_routing: Optional[pulumi.Input[_builtins.str]] = None,
|
|
42
|
+
enhanced_app_aware_routing_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
42
43
|
geo_fencing: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
43
44
|
geo_fencing_range: Optional[pulumi.Input[_builtins.int]] = None,
|
|
44
45
|
geo_fencing_range_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -117,6 +118,7 @@ class CiscoSystemFeatureTemplateArgs:
|
|
|
117
118
|
:param pulumi.Input[_builtins.str] device_groups_variable: Variable name
|
|
118
119
|
:param pulumi.Input[_builtins.str] enable_mrf_migration: Enable migration mode to Multi-Region Fabric - Choices: `enabled`, `enabled-from-bgp-core`
|
|
119
120
|
:param pulumi.Input[_builtins.str] enhanced_app_aware_routing: Enhanced App Aware Routing - Choices: `disabled`, `aggressive`, `moderate`, `conservative` - Default value: `disabled`
|
|
121
|
+
:param pulumi.Input[_builtins.str] enhanced_app_aware_routing_variable: Variable name
|
|
120
122
|
:param pulumi.Input[_builtins.bool] geo_fencing: Enable Geo fencing - Default value: `false`
|
|
121
123
|
:param pulumi.Input[_builtins.int] geo_fencing_range: Set the device’s geo fencing range - Range: `100`-`10000` - Default value: `100`
|
|
122
124
|
:param pulumi.Input[_builtins.str] geo_fencing_range_variable: Variable name
|
|
@@ -280,6 +282,8 @@ class CiscoSystemFeatureTemplateArgs:
|
|
|
280
282
|
pulumi.set(__self__, "enable_mrf_migration", enable_mrf_migration)
|
|
281
283
|
if enhanced_app_aware_routing is not None:
|
|
282
284
|
pulumi.set(__self__, "enhanced_app_aware_routing", enhanced_app_aware_routing)
|
|
285
|
+
if enhanced_app_aware_routing_variable is not None:
|
|
286
|
+
pulumi.set(__self__, "enhanced_app_aware_routing_variable", enhanced_app_aware_routing_variable)
|
|
283
287
|
if geo_fencing is not None:
|
|
284
288
|
pulumi.set(__self__, "geo_fencing", geo_fencing)
|
|
285
289
|
if geo_fencing_range is not None:
|
|
@@ -610,6 +614,18 @@ class CiscoSystemFeatureTemplateArgs:
|
|
|
610
614
|
def enhanced_app_aware_routing(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
611
615
|
pulumi.set(self, "enhanced_app_aware_routing", value)
|
|
612
616
|
|
|
617
|
+
@_builtins.property
|
|
618
|
+
@pulumi.getter(name="enhancedAppAwareRoutingVariable")
|
|
619
|
+
def enhanced_app_aware_routing_variable(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
620
|
+
"""
|
|
621
|
+
Variable name
|
|
622
|
+
"""
|
|
623
|
+
return pulumi.get(self, "enhanced_app_aware_routing_variable")
|
|
624
|
+
|
|
625
|
+
@enhanced_app_aware_routing_variable.setter
|
|
626
|
+
def enhanced_app_aware_routing_variable(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
627
|
+
pulumi.set(self, "enhanced_app_aware_routing_variable", value)
|
|
628
|
+
|
|
613
629
|
@_builtins.property
|
|
614
630
|
@pulumi.getter(name="geoFencing")
|
|
615
631
|
def geo_fencing(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
@@ -1365,6 +1381,7 @@ class _CiscoSystemFeatureTemplateState:
|
|
|
1365
1381
|
device_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1366
1382
|
enable_mrf_migration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1367
1383
|
enhanced_app_aware_routing: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1384
|
+
enhanced_app_aware_routing_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1368
1385
|
geo_fencing: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1369
1386
|
geo_fencing_range: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1370
1387
|
geo_fencing_range_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -1445,6 +1462,7 @@ class _CiscoSystemFeatureTemplateState:
|
|
|
1445
1462
|
`vedge-C8500L-8S4X`, `vedge-C8200-1N-4T`, `vedge-C8200L-1N-4T`
|
|
1446
1463
|
:param pulumi.Input[_builtins.str] enable_mrf_migration: Enable migration mode to Multi-Region Fabric - Choices: `enabled`, `enabled-from-bgp-core`
|
|
1447
1464
|
:param pulumi.Input[_builtins.str] enhanced_app_aware_routing: Enhanced App Aware Routing - Choices: `disabled`, `aggressive`, `moderate`, `conservative` - Default value: `disabled`
|
|
1465
|
+
:param pulumi.Input[_builtins.str] enhanced_app_aware_routing_variable: Variable name
|
|
1448
1466
|
:param pulumi.Input[_builtins.bool] geo_fencing: Enable Geo fencing - Default value: `false`
|
|
1449
1467
|
:param pulumi.Input[_builtins.int] geo_fencing_range: Set the device’s geo fencing range - Range: `100`-`10000` - Default value: `100`
|
|
1450
1468
|
:param pulumi.Input[_builtins.str] geo_fencing_range_variable: Variable name
|
|
@@ -1612,6 +1630,8 @@ class _CiscoSystemFeatureTemplateState:
|
|
|
1612
1630
|
pulumi.set(__self__, "enable_mrf_migration", enable_mrf_migration)
|
|
1613
1631
|
if enhanced_app_aware_routing is not None:
|
|
1614
1632
|
pulumi.set(__self__, "enhanced_app_aware_routing", enhanced_app_aware_routing)
|
|
1633
|
+
if enhanced_app_aware_routing_variable is not None:
|
|
1634
|
+
pulumi.set(__self__, "enhanced_app_aware_routing_variable", enhanced_app_aware_routing_variable)
|
|
1615
1635
|
if geo_fencing is not None:
|
|
1616
1636
|
pulumi.set(__self__, "geo_fencing", geo_fencing)
|
|
1617
1637
|
if geo_fencing_range is not None:
|
|
@@ -1946,6 +1966,18 @@ class _CiscoSystemFeatureTemplateState:
|
|
|
1946
1966
|
def enhanced_app_aware_routing(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1947
1967
|
pulumi.set(self, "enhanced_app_aware_routing", value)
|
|
1948
1968
|
|
|
1969
|
+
@_builtins.property
|
|
1970
|
+
@pulumi.getter(name="enhancedAppAwareRoutingVariable")
|
|
1971
|
+
def enhanced_app_aware_routing_variable(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1972
|
+
"""
|
|
1973
|
+
Variable name
|
|
1974
|
+
"""
|
|
1975
|
+
return pulumi.get(self, "enhanced_app_aware_routing_variable")
|
|
1976
|
+
|
|
1977
|
+
@enhanced_app_aware_routing_variable.setter
|
|
1978
|
+
def enhanced_app_aware_routing_variable(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1979
|
+
pulumi.set(self, "enhanced_app_aware_routing_variable", value)
|
|
1980
|
+
|
|
1949
1981
|
@_builtins.property
|
|
1950
1982
|
@pulumi.getter(name="geoFencing")
|
|
1951
1983
|
def geo_fencing(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
@@ -2728,6 +2760,7 @@ class CiscoSystemFeatureTemplate(pulumi.CustomResource):
|
|
|
2728
2760
|
device_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
2729
2761
|
enable_mrf_migration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2730
2762
|
enhanced_app_aware_routing: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2763
|
+
enhanced_app_aware_routing_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2731
2764
|
geo_fencing: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
2732
2765
|
geo_fencing_range: Optional[pulumi.Input[_builtins.int]] = None,
|
|
2733
2766
|
geo_fencing_range_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -2819,6 +2852,7 @@ class CiscoSystemFeatureTemplate(pulumi.CustomResource):
|
|
|
2819
2852
|
`vedge-C8500L-8S4X`, `vedge-C8200-1N-4T`, `vedge-C8200L-1N-4T`
|
|
2820
2853
|
:param pulumi.Input[_builtins.str] enable_mrf_migration: Enable migration mode to Multi-Region Fabric - Choices: `enabled`, `enabled-from-bgp-core`
|
|
2821
2854
|
:param pulumi.Input[_builtins.str] enhanced_app_aware_routing: Enhanced App Aware Routing - Choices: `disabled`, `aggressive`, `moderate`, `conservative` - Default value: `disabled`
|
|
2855
|
+
:param pulumi.Input[_builtins.str] enhanced_app_aware_routing_variable: Variable name
|
|
2822
2856
|
:param pulumi.Input[_builtins.bool] geo_fencing: Enable Geo fencing - Default value: `false`
|
|
2823
2857
|
:param pulumi.Input[_builtins.int] geo_fencing_range: Set the device’s geo fencing range - Range: `100`-`10000` - Default value: `100`
|
|
2824
2858
|
:param pulumi.Input[_builtins.str] geo_fencing_range_variable: Variable name
|
|
@@ -2999,6 +3033,7 @@ class CiscoSystemFeatureTemplate(pulumi.CustomResource):
|
|
|
2999
3033
|
device_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
3000
3034
|
enable_mrf_migration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3001
3035
|
enhanced_app_aware_routing: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3036
|
+
enhanced_app_aware_routing_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3002
3037
|
geo_fencing: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
3003
3038
|
geo_fencing_range: Optional[pulumi.Input[_builtins.int]] = None,
|
|
3004
3039
|
geo_fencing_range_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -3085,6 +3120,7 @@ class CiscoSystemFeatureTemplate(pulumi.CustomResource):
|
|
|
3085
3120
|
__props__.__dict__["device_types"] = device_types
|
|
3086
3121
|
__props__.__dict__["enable_mrf_migration"] = enable_mrf_migration
|
|
3087
3122
|
__props__.__dict__["enhanced_app_aware_routing"] = enhanced_app_aware_routing
|
|
3123
|
+
__props__.__dict__["enhanced_app_aware_routing_variable"] = enhanced_app_aware_routing_variable
|
|
3088
3124
|
__props__.__dict__["geo_fencing"] = geo_fencing
|
|
3089
3125
|
__props__.__dict__["geo_fencing_range"] = geo_fencing_range
|
|
3090
3126
|
__props__.__dict__["geo_fencing_range_variable"] = geo_fencing_range_variable
|
|
@@ -3170,6 +3206,7 @@ class CiscoSystemFeatureTemplate(pulumi.CustomResource):
|
|
|
3170
3206
|
device_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
3171
3207
|
enable_mrf_migration: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3172
3208
|
enhanced_app_aware_routing: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3209
|
+
enhanced_app_aware_routing_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3173
3210
|
geo_fencing: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
3174
3211
|
geo_fencing_range: Optional[pulumi.Input[_builtins.int]] = None,
|
|
3175
3212
|
geo_fencing_range_variable: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -3255,6 +3292,7 @@ class CiscoSystemFeatureTemplate(pulumi.CustomResource):
|
|
|
3255
3292
|
`vedge-C8500L-8S4X`, `vedge-C8200-1N-4T`, `vedge-C8200L-1N-4T`
|
|
3256
3293
|
:param pulumi.Input[_builtins.str] enable_mrf_migration: Enable migration mode to Multi-Region Fabric - Choices: `enabled`, `enabled-from-bgp-core`
|
|
3257
3294
|
:param pulumi.Input[_builtins.str] enhanced_app_aware_routing: Enhanced App Aware Routing - Choices: `disabled`, `aggressive`, `moderate`, `conservative` - Default value: `disabled`
|
|
3295
|
+
:param pulumi.Input[_builtins.str] enhanced_app_aware_routing_variable: Variable name
|
|
3258
3296
|
:param pulumi.Input[_builtins.bool] geo_fencing: Enable Geo fencing - Default value: `false`
|
|
3259
3297
|
:param pulumi.Input[_builtins.int] geo_fencing_range: Set the device’s geo fencing range - Range: `100`-`10000` - Default value: `100`
|
|
3260
3298
|
:param pulumi.Input[_builtins.str] geo_fencing_range_variable: Variable name
|
|
@@ -3408,6 +3446,7 @@ class CiscoSystemFeatureTemplate(pulumi.CustomResource):
|
|
|
3408
3446
|
__props__.__dict__["device_types"] = device_types
|
|
3409
3447
|
__props__.__dict__["enable_mrf_migration"] = enable_mrf_migration
|
|
3410
3448
|
__props__.__dict__["enhanced_app_aware_routing"] = enhanced_app_aware_routing
|
|
3449
|
+
__props__.__dict__["enhanced_app_aware_routing_variable"] = enhanced_app_aware_routing_variable
|
|
3411
3450
|
__props__.__dict__["geo_fencing"] = geo_fencing
|
|
3412
3451
|
__props__.__dict__["geo_fencing_range"] = geo_fencing_range
|
|
3413
3452
|
__props__.__dict__["geo_fencing_range_variable"] = geo_fencing_range_variable
|
|
@@ -3614,6 +3653,14 @@ class CiscoSystemFeatureTemplate(pulumi.CustomResource):
|
|
|
3614
3653
|
"""
|
|
3615
3654
|
return pulumi.get(self, "enhanced_app_aware_routing")
|
|
3616
3655
|
|
|
3656
|
+
@_builtins.property
|
|
3657
|
+
@pulumi.getter(name="enhancedAppAwareRoutingVariable")
|
|
3658
|
+
def enhanced_app_aware_routing_variable(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
3659
|
+
"""
|
|
3660
|
+
Variable name
|
|
3661
|
+
"""
|
|
3662
|
+
return pulumi.get(self, "enhanced_app_aware_routing_variable")
|
|
3663
|
+
|
|
3617
3664
|
@_builtins.property
|
|
3618
3665
|
@pulumi.getter(name="geoFencing")
|
|
3619
3666
|
def geo_fencing(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
@@ -27,7 +27,7 @@ class GetCiscoSystemFeatureTemplateResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getCiscoSystemFeatureTemplate.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, admin_tech_on_failure=None, admin_tech_on_failure_variable=None, affinity_group_number=None, affinity_group_number_variable=None, affinity_group_preference_variable=None, affinity_group_preferences=None, console_baud_rate=None, console_baud_rate_variable=None, control_session_pps=None, control_session_pps_variable=None, controller_group_list_variable=None, controller_group_lists=None, description=None, device_groups=None, device_groups_variable=None, device_types=None, enable_mrf_migration=None, enhanced_app_aware_routing=None, geo_fencing=None, geo_fencing_range=None, geo_fencing_range_variable=None, geo_fencing_sms=None, geo_fencing_sms_phone_numbers=None, hostname=None, hostname_variable=None, id=None, idle_timeout=None, idle_timeout_variable=None, latitude=None, latitude_variable=None, location=None, location_variable=None, longitude=None, longitude_variable=None, max_omp_sessions=None, max_omp_sessions_variable=None, migration_bgp_community=None, multi_tenant=None, multi_tenant_variable=None, name=None, object_trackers=None, on_demand_tunnel=None, on_demand_tunnel_idle_timeout=None, on_demand_tunnel_idle_timeout_variable=None, on_demand_tunnel_variable=None, overlay_id=None, overlay_id_variable=None, port_hopping=None, port_hopping_variable=None, port_offset=None, port_offset_variable=None, region_id=None, region_id_variable=None, role=None, role_variable=None, secondary_region_id=None, secondary_region_id_variable=None, site_id=None, site_id_variable=None, system_description=None, system_description_variable=None, system_ip=None, system_ip_variable=None, template_type=None, timezone=None, timezone_variable=None, track_default_gateway=None, track_default_gateway_variable=None, track_interface_tag=None, track_interface_tag_variable=None, track_transport=None, track_transport_variable=None, trackers=None, transport_gateway=None, transport_gateway_variable=None, version=None):
|
|
30
|
+
def __init__(__self__, admin_tech_on_failure=None, admin_tech_on_failure_variable=None, affinity_group_number=None, affinity_group_number_variable=None, affinity_group_preference_variable=None, affinity_group_preferences=None, console_baud_rate=None, console_baud_rate_variable=None, control_session_pps=None, control_session_pps_variable=None, controller_group_list_variable=None, controller_group_lists=None, description=None, device_groups=None, device_groups_variable=None, device_types=None, enable_mrf_migration=None, enhanced_app_aware_routing=None, enhanced_app_aware_routing_variable=None, geo_fencing=None, geo_fencing_range=None, geo_fencing_range_variable=None, geo_fencing_sms=None, geo_fencing_sms_phone_numbers=None, hostname=None, hostname_variable=None, id=None, idle_timeout=None, idle_timeout_variable=None, latitude=None, latitude_variable=None, location=None, location_variable=None, longitude=None, longitude_variable=None, max_omp_sessions=None, max_omp_sessions_variable=None, migration_bgp_community=None, multi_tenant=None, multi_tenant_variable=None, name=None, object_trackers=None, on_demand_tunnel=None, on_demand_tunnel_idle_timeout=None, on_demand_tunnel_idle_timeout_variable=None, on_demand_tunnel_variable=None, overlay_id=None, overlay_id_variable=None, port_hopping=None, port_hopping_variable=None, port_offset=None, port_offset_variable=None, region_id=None, region_id_variable=None, role=None, role_variable=None, secondary_region_id=None, secondary_region_id_variable=None, site_id=None, site_id_variable=None, system_description=None, system_description_variable=None, system_ip=None, system_ip_variable=None, template_type=None, timezone=None, timezone_variable=None, track_default_gateway=None, track_default_gateway_variable=None, track_interface_tag=None, track_interface_tag_variable=None, track_transport=None, track_transport_variable=None, trackers=None, transport_gateway=None, transport_gateway_variable=None, version=None):
|
|
31
31
|
if admin_tech_on_failure and not isinstance(admin_tech_on_failure, bool):
|
|
32
32
|
raise TypeError("Expected argument 'admin_tech_on_failure' to be a bool")
|
|
33
33
|
pulumi.set(__self__, "admin_tech_on_failure", admin_tech_on_failure)
|
|
@@ -82,6 +82,9 @@ class GetCiscoSystemFeatureTemplateResult:
|
|
|
82
82
|
if enhanced_app_aware_routing and not isinstance(enhanced_app_aware_routing, str):
|
|
83
83
|
raise TypeError("Expected argument 'enhanced_app_aware_routing' to be a str")
|
|
84
84
|
pulumi.set(__self__, "enhanced_app_aware_routing", enhanced_app_aware_routing)
|
|
85
|
+
if enhanced_app_aware_routing_variable and not isinstance(enhanced_app_aware_routing_variable, str):
|
|
86
|
+
raise TypeError("Expected argument 'enhanced_app_aware_routing_variable' to be a str")
|
|
87
|
+
pulumi.set(__self__, "enhanced_app_aware_routing_variable", enhanced_app_aware_routing_variable)
|
|
85
88
|
if geo_fencing and not isinstance(geo_fencing, bool):
|
|
86
89
|
raise TypeError("Expected argument 'geo_fencing' to be a bool")
|
|
87
90
|
pulumi.set(__self__, "geo_fencing", geo_fencing)
|
|
@@ -401,6 +404,14 @@ class GetCiscoSystemFeatureTemplateResult:
|
|
|
401
404
|
"""
|
|
402
405
|
return pulumi.get(self, "enhanced_app_aware_routing")
|
|
403
406
|
|
|
407
|
+
@_builtins.property
|
|
408
|
+
@pulumi.getter(name="enhancedAppAwareRoutingVariable")
|
|
409
|
+
def enhanced_app_aware_routing_variable(self) -> _builtins.str:
|
|
410
|
+
"""
|
|
411
|
+
Variable name
|
|
412
|
+
"""
|
|
413
|
+
return pulumi.get(self, "enhanced_app_aware_routing_variable")
|
|
414
|
+
|
|
404
415
|
@_builtins.property
|
|
405
416
|
@pulumi.getter(name="geoFencing")
|
|
406
417
|
def geo_fencing(self) -> _builtins.bool:
|
|
@@ -890,6 +901,7 @@ class AwaitableGetCiscoSystemFeatureTemplateResult(GetCiscoSystemFeatureTemplate
|
|
|
890
901
|
device_types=self.device_types,
|
|
891
902
|
enable_mrf_migration=self.enable_mrf_migration,
|
|
892
903
|
enhanced_app_aware_routing=self.enhanced_app_aware_routing,
|
|
904
|
+
enhanced_app_aware_routing_variable=self.enhanced_app_aware_routing_variable,
|
|
893
905
|
geo_fencing=self.geo_fencing,
|
|
894
906
|
geo_fencing_range=self.geo_fencing_range,
|
|
895
907
|
geo_fencing_range_variable=self.geo_fencing_range_variable,
|
|
@@ -994,6 +1006,7 @@ def get_cisco_system_feature_template(id: Optional[_builtins.str] = None,
|
|
|
994
1006
|
device_types=pulumi.get(__ret__, 'device_types'),
|
|
995
1007
|
enable_mrf_migration=pulumi.get(__ret__, 'enable_mrf_migration'),
|
|
996
1008
|
enhanced_app_aware_routing=pulumi.get(__ret__, 'enhanced_app_aware_routing'),
|
|
1009
|
+
enhanced_app_aware_routing_variable=pulumi.get(__ret__, 'enhanced_app_aware_routing_variable'),
|
|
997
1010
|
geo_fencing=pulumi.get(__ret__, 'geo_fencing'),
|
|
998
1011
|
geo_fencing_range=pulumi.get(__ret__, 'geo_fencing_range'),
|
|
999
1012
|
geo_fencing_range_variable=pulumi.get(__ret__, 'geo_fencing_range_variable'),
|
|
@@ -1095,6 +1108,7 @@ def get_cisco_system_feature_template_output(id: Optional[pulumi.Input[Optional[
|
|
|
1095
1108
|
device_types=pulumi.get(__response__, 'device_types'),
|
|
1096
1109
|
enable_mrf_migration=pulumi.get(__response__, 'enable_mrf_migration'),
|
|
1097
1110
|
enhanced_app_aware_routing=pulumi.get(__response__, 'enhanced_app_aware_routing'),
|
|
1111
|
+
enhanced_app_aware_routing_variable=pulumi.get(__response__, 'enhanced_app_aware_routing_variable'),
|
|
1098
1112
|
geo_fencing=pulumi.get(__response__, 'geo_fencing'),
|
|
1099
1113
|
geo_fencing_range=pulumi.get(__response__, 'geo_fencing_range'),
|
|
1100
1114
|
geo_fencing_range_variable=pulumi.get(__response__, 'geo_fencing_range_variable'),
|
pulumi_sdwan/localized_policy.py
CHANGED
|
@@ -37,14 +37,14 @@ class LocalizedPolicyArgs:
|
|
|
37
37
|
"""
|
|
38
38
|
The set of arguments for constructing a LocalizedPolicy resource.
|
|
39
39
|
:param pulumi.Input[_builtins.str] description: The description of the localized policy
|
|
40
|
-
:param pulumi.Input[_builtins.bool] application_visibility_ipv4: IPv4 application visibility
|
|
41
|
-
:param pulumi.Input[_builtins.bool] application_visibility_ipv6: IPv6 application visibility
|
|
40
|
+
:param pulumi.Input[_builtins.bool] application_visibility_ipv4: IPv4 application visibility - Default value: `false`
|
|
41
|
+
:param pulumi.Input[_builtins.bool] application_visibility_ipv6: IPv6 application visibility - Default value: `false`
|
|
42
42
|
:param pulumi.Input[_builtins.bool] cloud_qos: Cloud QoS
|
|
43
43
|
:param pulumi.Input[_builtins.bool] cloud_qos_service_side: Cloud QoS service side
|
|
44
44
|
:param pulumi.Input[Sequence[pulumi.Input['LocalizedPolicyDefinitionArgs']]] definitions: List of policy definitions
|
|
45
|
-
:param pulumi.Input[_builtins.bool] flow_visibility_ipv4: IPv4 flow visibility
|
|
46
|
-
:param pulumi.Input[_builtins.bool] flow_visibility_ipv6: IPv6 flow visibility
|
|
47
|
-
:param pulumi.Input[_builtins.bool] implicit_acl_logging: Implicit ACL logging
|
|
45
|
+
:param pulumi.Input[_builtins.bool] flow_visibility_ipv4: IPv4 flow visibility - Default value: `false`
|
|
46
|
+
:param pulumi.Input[_builtins.bool] flow_visibility_ipv6: IPv6 flow visibility - Default value: `false`
|
|
47
|
+
:param pulumi.Input[_builtins.bool] implicit_acl_logging: Implicit ACL logging - Default value: `false`
|
|
48
48
|
:param pulumi.Input[_builtins.int] ipv4_visibility_cache_entries: IPv4 visibility cache entries - Range: `16`-`2000000`
|
|
49
49
|
:param pulumi.Input[_builtins.int] ipv6_visibility_cache_entries: IPv6 visibility cache entries - Range: `16`-`2000000`
|
|
50
50
|
:param pulumi.Input[_builtins.int] log_frequency: Log frequency - Range: `1`-`2147483647`
|
|
@@ -92,7 +92,7 @@ class LocalizedPolicyArgs:
|
|
|
92
92
|
@pulumi.getter(name="applicationVisibilityIpv4")
|
|
93
93
|
def application_visibility_ipv4(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
94
94
|
"""
|
|
95
|
-
IPv4 application visibility
|
|
95
|
+
IPv4 application visibility - Default value: `false`
|
|
96
96
|
"""
|
|
97
97
|
return pulumi.get(self, "application_visibility_ipv4")
|
|
98
98
|
|
|
@@ -104,7 +104,7 @@ class LocalizedPolicyArgs:
|
|
|
104
104
|
@pulumi.getter(name="applicationVisibilityIpv6")
|
|
105
105
|
def application_visibility_ipv6(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
106
106
|
"""
|
|
107
|
-
IPv6 application visibility
|
|
107
|
+
IPv6 application visibility - Default value: `false`
|
|
108
108
|
"""
|
|
109
109
|
return pulumi.get(self, "application_visibility_ipv6")
|
|
110
110
|
|
|
@@ -152,7 +152,7 @@ class LocalizedPolicyArgs:
|
|
|
152
152
|
@pulumi.getter(name="flowVisibilityIpv4")
|
|
153
153
|
def flow_visibility_ipv4(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
154
154
|
"""
|
|
155
|
-
IPv4 flow visibility
|
|
155
|
+
IPv4 flow visibility - Default value: `false`
|
|
156
156
|
"""
|
|
157
157
|
return pulumi.get(self, "flow_visibility_ipv4")
|
|
158
158
|
|
|
@@ -164,7 +164,7 @@ class LocalizedPolicyArgs:
|
|
|
164
164
|
@pulumi.getter(name="flowVisibilityIpv6")
|
|
165
165
|
def flow_visibility_ipv6(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
166
166
|
"""
|
|
167
|
-
IPv6 flow visibility
|
|
167
|
+
IPv6 flow visibility - Default value: `false`
|
|
168
168
|
"""
|
|
169
169
|
return pulumi.get(self, "flow_visibility_ipv6")
|
|
170
170
|
|
|
@@ -176,7 +176,7 @@ class LocalizedPolicyArgs:
|
|
|
176
176
|
@pulumi.getter(name="implicitAclLogging")
|
|
177
177
|
def implicit_acl_logging(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
178
178
|
"""
|
|
179
|
-
Implicit ACL logging
|
|
179
|
+
Implicit ACL logging - Default value: `false`
|
|
180
180
|
"""
|
|
181
181
|
return pulumi.get(self, "implicit_acl_logging")
|
|
182
182
|
|
|
@@ -252,15 +252,15 @@ class _LocalizedPolicyState:
|
|
|
252
252
|
version: Optional[pulumi.Input[_builtins.int]] = None):
|
|
253
253
|
"""
|
|
254
254
|
Input properties used for looking up and filtering LocalizedPolicy resources.
|
|
255
|
-
:param pulumi.Input[_builtins.bool] application_visibility_ipv4: IPv4 application visibility
|
|
256
|
-
:param pulumi.Input[_builtins.bool] application_visibility_ipv6: IPv6 application visibility
|
|
255
|
+
:param pulumi.Input[_builtins.bool] application_visibility_ipv4: IPv4 application visibility - Default value: `false`
|
|
256
|
+
:param pulumi.Input[_builtins.bool] application_visibility_ipv6: IPv6 application visibility - Default value: `false`
|
|
257
257
|
:param pulumi.Input[_builtins.bool] cloud_qos: Cloud QoS
|
|
258
258
|
:param pulumi.Input[_builtins.bool] cloud_qos_service_side: Cloud QoS service side
|
|
259
259
|
:param pulumi.Input[Sequence[pulumi.Input['LocalizedPolicyDefinitionArgs']]] definitions: List of policy definitions
|
|
260
260
|
:param pulumi.Input[_builtins.str] description: The description of the localized policy
|
|
261
|
-
:param pulumi.Input[_builtins.bool] flow_visibility_ipv4: IPv4 flow visibility
|
|
262
|
-
:param pulumi.Input[_builtins.bool] flow_visibility_ipv6: IPv6 flow visibility
|
|
263
|
-
:param pulumi.Input[_builtins.bool] implicit_acl_logging: Implicit ACL logging
|
|
261
|
+
:param pulumi.Input[_builtins.bool] flow_visibility_ipv4: IPv4 flow visibility - Default value: `false`
|
|
262
|
+
:param pulumi.Input[_builtins.bool] flow_visibility_ipv6: IPv6 flow visibility - Default value: `false`
|
|
263
|
+
:param pulumi.Input[_builtins.bool] implicit_acl_logging: Implicit ACL logging - Default value: `false`
|
|
264
264
|
:param pulumi.Input[_builtins.int] ipv4_visibility_cache_entries: IPv4 visibility cache entries - Range: `16`-`2000000`
|
|
265
265
|
:param pulumi.Input[_builtins.int] ipv6_visibility_cache_entries: IPv6 visibility cache entries - Range: `16`-`2000000`
|
|
266
266
|
:param pulumi.Input[_builtins.int] log_frequency: Log frequency - Range: `1`-`2147483647`
|
|
@@ -300,7 +300,7 @@ class _LocalizedPolicyState:
|
|
|
300
300
|
@pulumi.getter(name="applicationVisibilityIpv4")
|
|
301
301
|
def application_visibility_ipv4(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
302
302
|
"""
|
|
303
|
-
IPv4 application visibility
|
|
303
|
+
IPv4 application visibility - Default value: `false`
|
|
304
304
|
"""
|
|
305
305
|
return pulumi.get(self, "application_visibility_ipv4")
|
|
306
306
|
|
|
@@ -312,7 +312,7 @@ class _LocalizedPolicyState:
|
|
|
312
312
|
@pulumi.getter(name="applicationVisibilityIpv6")
|
|
313
313
|
def application_visibility_ipv6(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
314
314
|
"""
|
|
315
|
-
IPv6 application visibility
|
|
315
|
+
IPv6 application visibility - Default value: `false`
|
|
316
316
|
"""
|
|
317
317
|
return pulumi.get(self, "application_visibility_ipv6")
|
|
318
318
|
|
|
@@ -372,7 +372,7 @@ class _LocalizedPolicyState:
|
|
|
372
372
|
@pulumi.getter(name="flowVisibilityIpv4")
|
|
373
373
|
def flow_visibility_ipv4(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
374
374
|
"""
|
|
375
|
-
IPv4 flow visibility
|
|
375
|
+
IPv4 flow visibility - Default value: `false`
|
|
376
376
|
"""
|
|
377
377
|
return pulumi.get(self, "flow_visibility_ipv4")
|
|
378
378
|
|
|
@@ -384,7 +384,7 @@ class _LocalizedPolicyState:
|
|
|
384
384
|
@pulumi.getter(name="flowVisibilityIpv6")
|
|
385
385
|
def flow_visibility_ipv6(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
386
386
|
"""
|
|
387
|
-
IPv6 flow visibility
|
|
387
|
+
IPv6 flow visibility - Default value: `false`
|
|
388
388
|
"""
|
|
389
389
|
return pulumi.get(self, "flow_visibility_ipv6")
|
|
390
390
|
|
|
@@ -396,7 +396,7 @@ class _LocalizedPolicyState:
|
|
|
396
396
|
@pulumi.getter(name="implicitAclLogging")
|
|
397
397
|
def implicit_acl_logging(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
398
398
|
"""
|
|
399
|
-
Implicit ACL logging
|
|
399
|
+
Implicit ACL logging - Default value: `false`
|
|
400
400
|
"""
|
|
401
401
|
return pulumi.get(self, "implicit_acl_logging")
|
|
402
402
|
|
|
@@ -523,15 +523,15 @@ class LocalizedPolicy(pulumi.CustomResource):
|
|
|
523
523
|
|
|
524
524
|
:param str resource_name: The name of the resource.
|
|
525
525
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
526
|
-
:param pulumi.Input[_builtins.bool] application_visibility_ipv4: IPv4 application visibility
|
|
527
|
-
:param pulumi.Input[_builtins.bool] application_visibility_ipv6: IPv6 application visibility
|
|
526
|
+
:param pulumi.Input[_builtins.bool] application_visibility_ipv4: IPv4 application visibility - Default value: `false`
|
|
527
|
+
:param pulumi.Input[_builtins.bool] application_visibility_ipv6: IPv6 application visibility - Default value: `false`
|
|
528
528
|
:param pulumi.Input[_builtins.bool] cloud_qos: Cloud QoS
|
|
529
529
|
:param pulumi.Input[_builtins.bool] cloud_qos_service_side: Cloud QoS service side
|
|
530
530
|
:param pulumi.Input[Sequence[pulumi.Input[Union['LocalizedPolicyDefinitionArgs', 'LocalizedPolicyDefinitionArgsDict']]]] definitions: List of policy definitions
|
|
531
531
|
:param pulumi.Input[_builtins.str] description: The description of the localized policy
|
|
532
|
-
:param pulumi.Input[_builtins.bool] flow_visibility_ipv4: IPv4 flow visibility
|
|
533
|
-
:param pulumi.Input[_builtins.bool] flow_visibility_ipv6: IPv6 flow visibility
|
|
534
|
-
:param pulumi.Input[_builtins.bool] implicit_acl_logging: Implicit ACL logging
|
|
532
|
+
:param pulumi.Input[_builtins.bool] flow_visibility_ipv4: IPv4 flow visibility - Default value: `false`
|
|
533
|
+
:param pulumi.Input[_builtins.bool] flow_visibility_ipv6: IPv6 flow visibility - Default value: `false`
|
|
534
|
+
:param pulumi.Input[_builtins.bool] implicit_acl_logging: Implicit ACL logging - Default value: `false`
|
|
535
535
|
:param pulumi.Input[_builtins.int] ipv4_visibility_cache_entries: IPv4 visibility cache entries - Range: `16`-`2000000`
|
|
536
536
|
:param pulumi.Input[_builtins.int] ipv6_visibility_cache_entries: IPv6 visibility cache entries - Range: `16`-`2000000`
|
|
537
537
|
:param pulumi.Input[_builtins.int] log_frequency: Log frequency - Range: `1`-`2147483647`
|
|
@@ -663,15 +663,15 @@ class LocalizedPolicy(pulumi.CustomResource):
|
|
|
663
663
|
:param str resource_name: The unique name of the resulting resource.
|
|
664
664
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
665
665
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
666
|
-
:param pulumi.Input[_builtins.bool] application_visibility_ipv4: IPv4 application visibility
|
|
667
|
-
:param pulumi.Input[_builtins.bool] application_visibility_ipv6: IPv6 application visibility
|
|
666
|
+
:param pulumi.Input[_builtins.bool] application_visibility_ipv4: IPv4 application visibility - Default value: `false`
|
|
667
|
+
:param pulumi.Input[_builtins.bool] application_visibility_ipv6: IPv6 application visibility - Default value: `false`
|
|
668
668
|
:param pulumi.Input[_builtins.bool] cloud_qos: Cloud QoS
|
|
669
669
|
:param pulumi.Input[_builtins.bool] cloud_qos_service_side: Cloud QoS service side
|
|
670
670
|
:param pulumi.Input[Sequence[pulumi.Input[Union['LocalizedPolicyDefinitionArgs', 'LocalizedPolicyDefinitionArgsDict']]]] definitions: List of policy definitions
|
|
671
671
|
:param pulumi.Input[_builtins.str] description: The description of the localized policy
|
|
672
|
-
:param pulumi.Input[_builtins.bool] flow_visibility_ipv4: IPv4 flow visibility
|
|
673
|
-
:param pulumi.Input[_builtins.bool] flow_visibility_ipv6: IPv6 flow visibility
|
|
674
|
-
:param pulumi.Input[_builtins.bool] implicit_acl_logging: Implicit ACL logging
|
|
672
|
+
:param pulumi.Input[_builtins.bool] flow_visibility_ipv4: IPv4 flow visibility - Default value: `false`
|
|
673
|
+
:param pulumi.Input[_builtins.bool] flow_visibility_ipv6: IPv6 flow visibility - Default value: `false`
|
|
674
|
+
:param pulumi.Input[_builtins.bool] implicit_acl_logging: Implicit ACL logging - Default value: `false`
|
|
675
675
|
:param pulumi.Input[_builtins.int] ipv4_visibility_cache_entries: IPv4 visibility cache entries - Range: `16`-`2000000`
|
|
676
676
|
:param pulumi.Input[_builtins.int] ipv6_visibility_cache_entries: IPv6 visibility cache entries - Range: `16`-`2000000`
|
|
677
677
|
:param pulumi.Input[_builtins.int] log_frequency: Log frequency - Range: `1`-`2147483647`
|
|
@@ -700,17 +700,17 @@ class LocalizedPolicy(pulumi.CustomResource):
|
|
|
700
700
|
|
|
701
701
|
@_builtins.property
|
|
702
702
|
@pulumi.getter(name="applicationVisibilityIpv4")
|
|
703
|
-
def application_visibility_ipv4(self) -> pulumi.Output[
|
|
703
|
+
def application_visibility_ipv4(self) -> pulumi.Output[_builtins.bool]:
|
|
704
704
|
"""
|
|
705
|
-
IPv4 application visibility
|
|
705
|
+
IPv4 application visibility - Default value: `false`
|
|
706
706
|
"""
|
|
707
707
|
return pulumi.get(self, "application_visibility_ipv4")
|
|
708
708
|
|
|
709
709
|
@_builtins.property
|
|
710
710
|
@pulumi.getter(name="applicationVisibilityIpv6")
|
|
711
|
-
def application_visibility_ipv6(self) -> pulumi.Output[
|
|
711
|
+
def application_visibility_ipv6(self) -> pulumi.Output[_builtins.bool]:
|
|
712
712
|
"""
|
|
713
|
-
IPv6 application visibility
|
|
713
|
+
IPv6 application visibility - Default value: `false`
|
|
714
714
|
"""
|
|
715
715
|
return pulumi.get(self, "application_visibility_ipv6")
|
|
716
716
|
|
|
@@ -748,25 +748,25 @@ class LocalizedPolicy(pulumi.CustomResource):
|
|
|
748
748
|
|
|
749
749
|
@_builtins.property
|
|
750
750
|
@pulumi.getter(name="flowVisibilityIpv4")
|
|
751
|
-
def flow_visibility_ipv4(self) -> pulumi.Output[
|
|
751
|
+
def flow_visibility_ipv4(self) -> pulumi.Output[_builtins.bool]:
|
|
752
752
|
"""
|
|
753
|
-
IPv4 flow visibility
|
|
753
|
+
IPv4 flow visibility - Default value: `false`
|
|
754
754
|
"""
|
|
755
755
|
return pulumi.get(self, "flow_visibility_ipv4")
|
|
756
756
|
|
|
757
757
|
@_builtins.property
|
|
758
758
|
@pulumi.getter(name="flowVisibilityIpv6")
|
|
759
|
-
def flow_visibility_ipv6(self) -> pulumi.Output[
|
|
759
|
+
def flow_visibility_ipv6(self) -> pulumi.Output[_builtins.bool]:
|
|
760
760
|
"""
|
|
761
|
-
IPv6 flow visibility
|
|
761
|
+
IPv6 flow visibility - Default value: `false`
|
|
762
762
|
"""
|
|
763
763
|
return pulumi.get(self, "flow_visibility_ipv6")
|
|
764
764
|
|
|
765
765
|
@_builtins.property
|
|
766
766
|
@pulumi.getter(name="implicitAclLogging")
|
|
767
|
-
def implicit_acl_logging(self) -> pulumi.Output[
|
|
767
|
+
def implicit_acl_logging(self) -> pulumi.Output[_builtins.bool]:
|
|
768
768
|
"""
|
|
769
|
-
Implicit ACL logging
|
|
769
|
+
Implicit ACL logging - Default value: `false`
|
|
770
770
|
"""
|
|
771
771
|
return pulumi.get(self, "implicit_acl_logging")
|
|
772
772
|
|
pulumi_sdwan/outputs.py
CHANGED
|
@@ -38699,6 +38699,8 @@ class ServiceRoutingBgpFeatureIpv4Redistribute(dict):
|
|
|
38699
38699
|
suggest = "protocol_variable"
|
|
38700
38700
|
elif key == "routePolicyId":
|
|
38701
38701
|
suggest = "route_policy_id"
|
|
38702
|
+
elif key == "translateRibMetric":
|
|
38703
|
+
suggest = "translate_rib_metric"
|
|
38702
38704
|
|
|
38703
38705
|
if suggest:
|
|
38704
38706
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingBgpFeatureIpv4Redistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -38714,11 +38716,14 @@ class ServiceRoutingBgpFeatureIpv4Redistribute(dict):
|
|
|
38714
38716
|
def __init__(__self__, *,
|
|
38715
38717
|
protocol: Optional[_builtins.str] = None,
|
|
38716
38718
|
protocol_variable: Optional[_builtins.str] = None,
|
|
38717
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
38719
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
38720
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
38718
38721
|
"""
|
|
38719
38722
|
:param _builtins.str protocol: Set the protocol to redistribute routes from
|
|
38720
38723
|
- Choices: `static`, `connected`, `omp`, `nat`, `ospf`, `ospfv3`, `eigrp`
|
|
38721
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`
|
|
38722
38727
|
"""
|
|
38723
38728
|
if protocol is not None:
|
|
38724
38729
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -38726,6 +38731,8 @@ class ServiceRoutingBgpFeatureIpv4Redistribute(dict):
|
|
|
38726
38731
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
38727
38732
|
if route_policy_id is not None:
|
|
38728
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)
|
|
38729
38736
|
|
|
38730
38737
|
@_builtins.property
|
|
38731
38738
|
@pulumi.getter
|
|
@@ -38749,6 +38756,15 @@ class ServiceRoutingBgpFeatureIpv4Redistribute(dict):
|
|
|
38749
38756
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
38750
38757
|
return pulumi.get(self, "route_policy_id")
|
|
38751
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
|
+
|
|
38752
38768
|
|
|
38753
38769
|
@pulumi.output_type
|
|
38754
38770
|
class ServiceRoutingBgpFeatureIpv6AggregateAddress(dict):
|
|
@@ -39551,6 +39567,8 @@ class ServiceRoutingBgpFeatureIpv6Redistribute(dict):
|
|
|
39551
39567
|
suggest = "protocol_variable"
|
|
39552
39568
|
elif key == "routePolicyId":
|
|
39553
39569
|
suggest = "route_policy_id"
|
|
39570
|
+
elif key == "translateRibMetric":
|
|
39571
|
+
suggest = "translate_rib_metric"
|
|
39554
39572
|
|
|
39555
39573
|
if suggest:
|
|
39556
39574
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingBgpFeatureIpv6Redistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -39566,11 +39584,14 @@ class ServiceRoutingBgpFeatureIpv6Redistribute(dict):
|
|
|
39566
39584
|
def __init__(__self__, *,
|
|
39567
39585
|
protocol: Optional[_builtins.str] = None,
|
|
39568
39586
|
protocol_variable: Optional[_builtins.str] = None,
|
|
39569
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
39587
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
39588
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
39570
39589
|
"""
|
|
39571
39590
|
:param _builtins.str protocol: Set the protocol to redistribute routes from
|
|
39572
39591
|
- Choices: `static`, `connected`, `ospf`, `omp`
|
|
39573
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`
|
|
39574
39595
|
"""
|
|
39575
39596
|
if protocol is not None:
|
|
39576
39597
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -39578,6 +39599,8 @@ class ServiceRoutingBgpFeatureIpv6Redistribute(dict):
|
|
|
39578
39599
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
39579
39600
|
if route_policy_id is not None:
|
|
39580
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)
|
|
39581
39604
|
|
|
39582
39605
|
@_builtins.property
|
|
39583
39606
|
@pulumi.getter
|
|
@@ -39601,6 +39624,15 @@ class ServiceRoutingBgpFeatureIpv6Redistribute(dict):
|
|
|
39601
39624
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
39602
39625
|
return pulumi.get(self, "route_policy_id")
|
|
39603
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
|
+
|
|
39604
39636
|
|
|
39605
39637
|
@pulumi.output_type
|
|
39606
39638
|
class ServiceRoutingEigrpFeatureInterface(dict):
|
|
@@ -40601,6 +40633,8 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40601
40633
|
suggest = "protocol_variable"
|
|
40602
40634
|
elif key == "routePolicyId":
|
|
40603
40635
|
suggest = "route_policy_id"
|
|
40636
|
+
elif key == "translateRibMetric":
|
|
40637
|
+
suggest = "translate_rib_metric"
|
|
40604
40638
|
|
|
40605
40639
|
if suggest:
|
|
40606
40640
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingOspfFeatureRedistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -40618,7 +40652,8 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40618
40652
|
nat_dia_variable: Optional[_builtins.str] = None,
|
|
40619
40653
|
protocol: Optional[_builtins.str] = None,
|
|
40620
40654
|
protocol_variable: Optional[_builtins.str] = None,
|
|
40621
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
40655
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
40656
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
40622
40657
|
"""
|
|
40623
40658
|
:param _builtins.bool nat_dia: Enable NAT DIA for redistributed routes
|
|
40624
40659
|
- Default value: `true`
|
|
@@ -40626,6 +40661,8 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40626
40661
|
:param _builtins.str protocol: Set the protocol
|
|
40627
40662
|
- Choices: `static`, `connected`, `bgp`, `omp`, `nat`, `eigrp`
|
|
40628
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`
|
|
40629
40666
|
"""
|
|
40630
40667
|
if nat_dia is not None:
|
|
40631
40668
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
@@ -40637,6 +40674,8 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40637
40674
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
40638
40675
|
if route_policy_id is not None:
|
|
40639
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)
|
|
40640
40679
|
|
|
40641
40680
|
@_builtins.property
|
|
40642
40681
|
@pulumi.getter(name="natDia")
|
|
@@ -40677,6 +40716,15 @@ class ServiceRoutingOspfFeatureRedistribute(dict):
|
|
|
40677
40716
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
40678
40717
|
return pulumi.get(self, "route_policy_id")
|
|
40679
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
|
+
|
|
40680
40728
|
|
|
40681
40729
|
@pulumi.output_type
|
|
40682
40730
|
class ServiceRoutingOspfFeatureRouterLsa(dict):
|
|
@@ -41341,6 +41389,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
41341
41389
|
suggest = "protocol_variable"
|
|
41342
41390
|
elif key == "routePolicyId":
|
|
41343
41391
|
suggest = "route_policy_id"
|
|
41392
|
+
elif key == "translateRibMetric":
|
|
41393
|
+
suggest = "translate_rib_metric"
|
|
41344
41394
|
|
|
41345
41395
|
if suggest:
|
|
41346
41396
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingOspfv3Ipv4FeatureRedistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -41358,7 +41408,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
41358
41408
|
nat_dia_variable: Optional[_builtins.str] = None,
|
|
41359
41409
|
protocol: Optional[_builtins.str] = None,
|
|
41360
41410
|
protocol_variable: Optional[_builtins.str] = None,
|
|
41361
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
41411
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
41412
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
41362
41413
|
"""
|
|
41363
41414
|
:param _builtins.bool nat_dia: Enable NAT DIA for redistributed routes
|
|
41364
41415
|
- Default value: `true`
|
|
@@ -41366,6 +41417,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
41366
41417
|
:param _builtins.str protocol: Set the protocol
|
|
41367
41418
|
- Choices: `connected`, `static`, `omp`, `nat-route`, `bgp`, `eigrp`
|
|
41368
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`
|
|
41369
41422
|
"""
|
|
41370
41423
|
if nat_dia is not None:
|
|
41371
41424
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
@@ -41377,6 +41430,8 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
41377
41430
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
41378
41431
|
if route_policy_id is not None:
|
|
41379
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)
|
|
41380
41435
|
|
|
41381
41436
|
@_builtins.property
|
|
41382
41437
|
@pulumi.getter(name="natDia")
|
|
@@ -41417,6 +41472,15 @@ class ServiceRoutingOspfv3Ipv4FeatureRedistribute(dict):
|
|
|
41417
41472
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
41418
41473
|
return pulumi.get(self, "route_policy_id")
|
|
41419
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
|
+
|
|
41420
41484
|
|
|
41421
41485
|
@pulumi.output_type
|
|
41422
41486
|
class ServiceRoutingOspfv3Ipv6FeatureArea(dict):
|
|
@@ -41987,6 +42051,8 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistribute(dict):
|
|
|
41987
42051
|
suggest = "protocol_variable"
|
|
41988
42052
|
elif key == "routePolicyId":
|
|
41989
42053
|
suggest = "route_policy_id"
|
|
42054
|
+
elif key == "translateRibMetric":
|
|
42055
|
+
suggest = "translate_rib_metric"
|
|
41990
42056
|
|
|
41991
42057
|
if suggest:
|
|
41992
42058
|
pulumi.log.warn(f"Key '{key}' not found in ServiceRoutingOspfv3Ipv6FeatureRedistribute. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -42002,11 +42068,14 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistribute(dict):
|
|
|
42002
42068
|
def __init__(__self__, *,
|
|
42003
42069
|
protocol: Optional[_builtins.str] = None,
|
|
42004
42070
|
protocol_variable: Optional[_builtins.str] = None,
|
|
42005
|
-
route_policy_id: Optional[_builtins.str] = None
|
|
42071
|
+
route_policy_id: Optional[_builtins.str] = None,
|
|
42072
|
+
translate_rib_metric: Optional[_builtins.bool] = None):
|
|
42006
42073
|
"""
|
|
42007
42074
|
:param _builtins.str protocol: Set the protocol
|
|
42008
42075
|
- Choices: `connected`, `static`, `omp`, `bgp`, `eigrp`
|
|
42009
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`
|
|
42010
42079
|
"""
|
|
42011
42080
|
if protocol is not None:
|
|
42012
42081
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -42014,6 +42083,8 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistribute(dict):
|
|
|
42014
42083
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
42015
42084
|
if route_policy_id is not None:
|
|
42016
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)
|
|
42017
42088
|
|
|
42018
42089
|
@_builtins.property
|
|
42019
42090
|
@pulumi.getter
|
|
@@ -42037,6 +42108,15 @@ class ServiceRoutingOspfv3Ipv6FeatureRedistribute(dict):
|
|
|
42037
42108
|
def route_policy_id(self) -> Optional[_builtins.str]:
|
|
42038
42109
|
return pulumi.get(self, "route_policy_id")
|
|
42039
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
|
+
|
|
42040
42120
|
|
|
42041
42121
|
@pulumi.output_type
|
|
42042
42122
|
class ServiceSwitchportFeatureInterface(dict):
|
|
@@ -89367,14 +89447,17 @@ class GetServiceRoutingBgpFeatureIpv4RedistributeResult(dict):
|
|
|
89367
89447
|
def __init__(__self__, *,
|
|
89368
89448
|
protocol: _builtins.str,
|
|
89369
89449
|
protocol_variable: _builtins.str,
|
|
89370
|
-
route_policy_id: _builtins.str
|
|
89450
|
+
route_policy_id: _builtins.str,
|
|
89451
|
+
translate_rib_metric: _builtins.bool):
|
|
89371
89452
|
"""
|
|
89372
89453
|
:param _builtins.str protocol: Set the protocol to redistribute routes from
|
|
89373
89454
|
:param _builtins.str protocol_variable: Variable name
|
|
89455
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
89374
89456
|
"""
|
|
89375
89457
|
pulumi.set(__self__, "protocol", protocol)
|
|
89376
89458
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
89377
89459
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
89460
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
89378
89461
|
|
|
89379
89462
|
@_builtins.property
|
|
89380
89463
|
@pulumi.getter
|
|
@@ -89397,6 +89480,14 @@ class GetServiceRoutingBgpFeatureIpv4RedistributeResult(dict):
|
|
|
89397
89480
|
def route_policy_id(self) -> _builtins.str:
|
|
89398
89481
|
return pulumi.get(self, "route_policy_id")
|
|
89399
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
|
+
|
|
89400
89491
|
|
|
89401
89492
|
@pulumi.output_type
|
|
89402
89493
|
class GetServiceRoutingBgpFeatureIpv6AggregateAddressResult(dict):
|
|
@@ -89962,14 +90053,17 @@ class GetServiceRoutingBgpFeatureIpv6RedistributeResult(dict):
|
|
|
89962
90053
|
def __init__(__self__, *,
|
|
89963
90054
|
protocol: _builtins.str,
|
|
89964
90055
|
protocol_variable: _builtins.str,
|
|
89965
|
-
route_policy_id: _builtins.str
|
|
90056
|
+
route_policy_id: _builtins.str,
|
|
90057
|
+
translate_rib_metric: _builtins.bool):
|
|
89966
90058
|
"""
|
|
89967
90059
|
:param _builtins.str protocol: Set the protocol to redistribute routes from
|
|
89968
90060
|
:param _builtins.str protocol_variable: Variable name
|
|
90061
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
89969
90062
|
"""
|
|
89970
90063
|
pulumi.set(__self__, "protocol", protocol)
|
|
89971
90064
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
89972
90065
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
90066
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
89973
90067
|
|
|
89974
90068
|
@_builtins.property
|
|
89975
90069
|
@pulumi.getter
|
|
@@ -89992,6 +90086,14 @@ class GetServiceRoutingBgpFeatureIpv6RedistributeResult(dict):
|
|
|
89992
90086
|
def route_policy_id(self) -> _builtins.str:
|
|
89993
90087
|
return pulumi.get(self, "route_policy_id")
|
|
89994
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
|
+
|
|
89995
90097
|
|
|
89996
90098
|
@pulumi.output_type
|
|
89997
90099
|
class GetServiceRoutingEigrpFeatureInterfaceResult(dict):
|
|
@@ -90663,18 +90765,21 @@ class GetServiceRoutingOspfFeatureRedistributeResult(dict):
|
|
|
90663
90765
|
nat_dia_variable: _builtins.str,
|
|
90664
90766
|
protocol: _builtins.str,
|
|
90665
90767
|
protocol_variable: _builtins.str,
|
|
90666
|
-
route_policy_id: _builtins.str
|
|
90768
|
+
route_policy_id: _builtins.str,
|
|
90769
|
+
translate_rib_metric: _builtins.bool):
|
|
90667
90770
|
"""
|
|
90668
90771
|
:param _builtins.bool nat_dia: Enable NAT DIA for redistributed routes
|
|
90669
90772
|
:param _builtins.str nat_dia_variable: Variable name
|
|
90670
90773
|
:param _builtins.str protocol: Set the protocol
|
|
90671
90774
|
:param _builtins.str protocol_variable: Variable name
|
|
90775
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
90672
90776
|
"""
|
|
90673
90777
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
90674
90778
|
pulumi.set(__self__, "nat_dia_variable", nat_dia_variable)
|
|
90675
90779
|
pulumi.set(__self__, "protocol", protocol)
|
|
90676
90780
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
90677
90781
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
90782
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
90678
90783
|
|
|
90679
90784
|
@_builtins.property
|
|
90680
90785
|
@pulumi.getter(name="natDia")
|
|
@@ -90713,6 +90818,14 @@ class GetServiceRoutingOspfFeatureRedistributeResult(dict):
|
|
|
90713
90818
|
def route_policy_id(self) -> _builtins.str:
|
|
90714
90819
|
return pulumi.get(self, "route_policy_id")
|
|
90715
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
|
+
|
|
90716
90829
|
|
|
90717
90830
|
@pulumi.output_type
|
|
90718
90831
|
class GetServiceRoutingOspfFeatureRouterLsaResult(dict):
|
|
@@ -91170,18 +91283,21 @@ class GetServiceRoutingOspfv3Ipv4FeatureRedistributeResult(dict):
|
|
|
91170
91283
|
nat_dia_variable: _builtins.str,
|
|
91171
91284
|
protocol: _builtins.str,
|
|
91172
91285
|
protocol_variable: _builtins.str,
|
|
91173
|
-
route_policy_id: _builtins.str
|
|
91286
|
+
route_policy_id: _builtins.str,
|
|
91287
|
+
translate_rib_metric: _builtins.bool):
|
|
91174
91288
|
"""
|
|
91175
91289
|
:param _builtins.bool nat_dia: Enable NAT DIA for redistributed routes
|
|
91176
91290
|
:param _builtins.str nat_dia_variable: Variable name
|
|
91177
91291
|
:param _builtins.str protocol: Set the protocol
|
|
91178
91292
|
:param _builtins.str protocol_variable: Variable name
|
|
91293
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
91179
91294
|
"""
|
|
91180
91295
|
pulumi.set(__self__, "nat_dia", nat_dia)
|
|
91181
91296
|
pulumi.set(__self__, "nat_dia_variable", nat_dia_variable)
|
|
91182
91297
|
pulumi.set(__self__, "protocol", protocol)
|
|
91183
91298
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
91184
91299
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
91300
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
91185
91301
|
|
|
91186
91302
|
@_builtins.property
|
|
91187
91303
|
@pulumi.getter(name="natDia")
|
|
@@ -91220,6 +91336,14 @@ class GetServiceRoutingOspfv3Ipv4FeatureRedistributeResult(dict):
|
|
|
91220
91336
|
def route_policy_id(self) -> _builtins.str:
|
|
91221
91337
|
return pulumi.get(self, "route_policy_id")
|
|
91222
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
|
+
|
|
91223
91347
|
|
|
91224
91348
|
@pulumi.output_type
|
|
91225
91349
|
class GetServiceRoutingOspfv3Ipv6FeatureAreaResult(dict):
|
|
@@ -91621,14 +91745,17 @@ class GetServiceRoutingOspfv3Ipv6FeatureRedistributeResult(dict):
|
|
|
91621
91745
|
def __init__(__self__, *,
|
|
91622
91746
|
protocol: _builtins.str,
|
|
91623
91747
|
protocol_variable: _builtins.str,
|
|
91624
|
-
route_policy_id: _builtins.str
|
|
91748
|
+
route_policy_id: _builtins.str,
|
|
91749
|
+
translate_rib_metric: _builtins.bool):
|
|
91625
91750
|
"""
|
|
91626
91751
|
:param _builtins.str protocol: Set the protocol
|
|
91627
91752
|
:param _builtins.str protocol_variable: Variable name
|
|
91753
|
+
:param _builtins.bool translate_rib_metric: Translate Rib Metric
|
|
91628
91754
|
"""
|
|
91629
91755
|
pulumi.set(__self__, "protocol", protocol)
|
|
91630
91756
|
pulumi.set(__self__, "protocol_variable", protocol_variable)
|
|
91631
91757
|
pulumi.set(__self__, "route_policy_id", route_policy_id)
|
|
91758
|
+
pulumi.set(__self__, "translate_rib_metric", translate_rib_metric)
|
|
91632
91759
|
|
|
91633
91760
|
@_builtins.property
|
|
91634
91761
|
@pulumi.getter
|
|
@@ -91651,6 +91778,14 @@ class GetServiceRoutingOspfv3Ipv6FeatureRedistributeResult(dict):
|
|
|
91651
91778
|
def route_policy_id(self) -> _builtins.str:
|
|
91652
91779
|
return pulumi.get(self, "route_policy_id")
|
|
91653
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
|
+
|
|
91654
91789
|
|
|
91655
91790
|
@pulumi.output_type
|
|
91656
91791
|
class GetServiceSwitchportFeatureInterfaceResult(dict):
|
pulumi_sdwan/pulumi-plugin.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pulumi_sdwan/__init__.py,sha256=76ZnYZegFYIK5kX7HpU31xkA67WBHfAvkTp5gllKJms,78707
|
|
2
|
-
pulumi_sdwan/_inputs.py,sha256=
|
|
2
|
+
pulumi_sdwan/_inputs.py,sha256=DiiG5AL0EfvBEMjKHje3cIqfhTdETxMEjGORPmUaB7s,3435696
|
|
3
3
|
pulumi_sdwan/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_sdwan/activate_centralized_policy.py,sha256=HilRnj1vwOK5SdSDDXwrucUu7BCWy4w_VZorxd_6nsE,6667
|
|
5
5
|
pulumi_sdwan/advanced_inspection_profile_policy_definition.py,sha256=MOpmSEZ62TkeOkXc3z8rjom9OBV1_cfBYaGSiG1Uqtw,33170
|
|
@@ -37,7 +37,7 @@ pulumi_sdwan/cisco_secure_internet_gateway_feature_template.py,sha256=kxzw3I16f4
|
|
|
37
37
|
pulumi_sdwan/cisco_security_feature_template.py,sha256=j9zY8SejHrUnmBBatsrVL0FPqfg8FY60_aB19AQpTAM,51123
|
|
38
38
|
pulumi_sdwan/cisco_sig_credentials_feature_template.py,sha256=DtLkYDDpJwtjLLFBL_PEFBsnARs_qrsviTkQgUdo4sw,70439
|
|
39
39
|
pulumi_sdwan/cisco_snmp_feature_template.py,sha256=MpJheK9dGefPznqNMHK39ClOAUohoGqsDICNtsWsih4,41505
|
|
40
|
-
pulumi_sdwan/cisco_system_feature_template.py,sha256=
|
|
40
|
+
pulumi_sdwan/cisco_system_feature_template.py,sha256=ExA8gcj2MfnAzj6oKisjG1fYWEseWc9jngkW9r25Cgg,251077
|
|
41
41
|
pulumi_sdwan/cisco_thousandeyes_feature_template.py,sha256=8S0jT4qyV8ttRtexQlnYP3RKiuxqjZvZasRSxV8UdyU,19120
|
|
42
42
|
pulumi_sdwan/cisco_trustsec_feature_template.py,sha256=ZF3t_9TYvwebj2yMfteyMvk9_U8Ygv35mK10U0dFtB0,94612
|
|
43
43
|
pulumi_sdwan/cisco_vpn_feature_template.py,sha256=G7djlm47MayKaOV7o24-Y0qgtvXbHB3yG1jaCraEgs8,104141
|
|
@@ -100,7 +100,7 @@ pulumi_sdwan/get_cisco_secure_internet_gateway_feature_template.py,sha256=ALhZh-
|
|
|
100
100
|
pulumi_sdwan/get_cisco_security_feature_template.py,sha256=TBcWfJc5eRFxvwIl4KRj7ztyn5qNiaZQ8o6GysnbY8I,16520
|
|
101
101
|
pulumi_sdwan/get_cisco_sig_credentials_feature_template.py,sha256=MwHc1h7fvBJYzbJwN7qmu6vrxh9OZCm_dNj3Wp0XXT0,24075
|
|
102
102
|
pulumi_sdwan/get_cisco_snmp_feature_template.py,sha256=4RWq2qPCRy1VSFqmN3bY2zBHk2esN5NSx7BpwvVJ5NA,13043
|
|
103
|
-
pulumi_sdwan/get_cisco_system_feature_template.py,sha256
|
|
103
|
+
pulumi_sdwan/get_cisco_system_feature_template.py,sha256=z3aBVUI-F21zim0W66S28NzAmwnNn_0NhlxpviT8hZg,56776
|
|
104
104
|
pulumi_sdwan/get_cisco_thousandeyes_feature_template.py,sha256=wDU3pWmljOUNaEf2FHZvy2d4f-u_7fKJC6Dfjl_Li5Y,7653
|
|
105
105
|
pulumi_sdwan/get_cisco_trustsec_feature_template.py,sha256=GkvARlmdJKStTF1RHmq3ZnKTxgZq2ERmClks0r2WVuY,29923
|
|
106
106
|
pulumi_sdwan/get_cisco_vpn_feature_template.py,sha256=31lpDJRc3T7Vab_znLpI989UXudzgcbiJRgQeryNVDs,28517
|
|
@@ -311,14 +311,14 @@ pulumi_sdwan/ipv6_acl_policy_definition.py,sha256=MDsEi6iA35hqKUYuPyJZH-a7kZpeFK
|
|
|
311
311
|
pulumi_sdwan/ipv6_device_acl_policy_definition.py,sha256=LeIcHKeeFUll6jrXlZbQzYDvV4bLi3vtlWXRodj-JgA,16052
|
|
312
312
|
pulumi_sdwan/ipv6_prefix_list_policy_object.py,sha256=4_Z6RttlD09XIYi1V0jHvFno_BrBS08fO9iLQbJnHfM,11001
|
|
313
313
|
pulumi_sdwan/local_application_list_policy_object.py,sha256=fb8MgYeVEx92kfPvgCvRsYcryl6W0KgF2jnRRw6Wi2o,11205
|
|
314
|
-
pulumi_sdwan/localized_policy.py,sha256=
|
|
314
|
+
pulumi_sdwan/localized_policy.py,sha256=qhMwMXodo5hx1YfkqpAVxd3Dq26hHZ6-CwbxAtSNE6Y,38618
|
|
315
315
|
pulumi_sdwan/mesh_topology_policy_definition.py,sha256=aCyndifO8i6LUdoLLLtos2vsZFlJxbSpVGDY6exXEEs,17464
|
|
316
316
|
pulumi_sdwan/mirror_policy_object.py,sha256=0_G2tVrFidHKonuV4cnhVq0apO8_Y54A6Ft3Z20VkQc,12131
|
|
317
317
|
pulumi_sdwan/object_group_policy_definition.py,sha256=OM0jwK9UXiEgOPgVokilO2q_IuKdlSGxMMK4PB-ye8A,39148
|
|
318
318
|
pulumi_sdwan/other_feature_profile.py,sha256=1m2yRZhkGhQoQuJ61XetEdlBq1o-XSo-0f6rs0X9sj8,8943
|
|
319
319
|
pulumi_sdwan/other_thousandeyes_feature.py,sha256=Dluk1b4ndo-2t6X-er00oMuqv1eUqnJIxDKQyO7Pk3Q,15589
|
|
320
320
|
pulumi_sdwan/other_ucse_feature.py,sha256=YXiwVU6SIKWc1RG9Z50X673BnnT5roVwU7IFxN95DA8,44553
|
|
321
|
-
pulumi_sdwan/outputs.py,sha256=
|
|
321
|
+
pulumi_sdwan/outputs.py,sha256=7TH5xc3O6R4wPNBhs0BIHdHWaQifnu6j2Z5cfKVO6co,4114262
|
|
322
322
|
pulumi_sdwan/policer_policy_object.py,sha256=eH8RjDLyGlOqVCQjfRmVb3oDXUnniMufIPKr3HDu8Ms,13954
|
|
323
323
|
pulumi_sdwan/policy_group.py,sha256=JpkcNs0qeH9y_FMvkVS8axh6EOZoO6tTycjAD9ymnEM,18598
|
|
324
324
|
pulumi_sdwan/policy_object_app_probe_class.py,sha256=puc60jFdLsTftaZOYDENJANatk7mHI2-9pq3Isfg-SU,14987
|
|
@@ -355,7 +355,7 @@ pulumi_sdwan/port_list_policy_object.py,sha256=vR7-u_oKTc2VTdoF9HzM2aovK6tPAiquV
|
|
|
355
355
|
pulumi_sdwan/preferred_color_group_policy_object.py,sha256=fB3LHOXCUzkjOwHcKowoEA70LL9Wr0Da8CYgElErRow,24850
|
|
356
356
|
pulumi_sdwan/protocol_list_policy_object.py,sha256=15AQou90SuIeUTKppG2WnuRnCCg1nclca-7w2sjy1d8,10777
|
|
357
357
|
pulumi_sdwan/provider.py,sha256=qydO2dhjckHRA_ra5k5Bz1D78xwMlbVNqyUpDDwcjAI,11270
|
|
358
|
-
pulumi_sdwan/pulumi-plugin.json,sha256=
|
|
358
|
+
pulumi_sdwan/pulumi-plugin.json,sha256=D0jDUMsMXuiA5ZxYVQO1zHqBYnEaZ4Fqt44Xv9Ifl2I,64
|
|
359
359
|
pulumi_sdwan/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
pulumi_sdwan/qos_map_policy_definition.py,sha256=KmHnKxssjreriz6PiLUV2TxfVbu0Y0AMsIkdf6PeeYQ,13608
|
|
361
361
|
pulumi_sdwan/region_list_policy_object.py,sha256=y_07M7LkOryBe7RTaofkwDI_MWBYlBrsKQr9ShxmA7Q,10123
|
|
@@ -476,7 +476,7 @@ pulumi_sdwan/zone_list_policy_object.py,sha256=oymxP5JTWybsbwgWHWGyLj-CnEUhqYm4Y
|
|
|
476
476
|
pulumi_sdwan/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
477
477
|
pulumi_sdwan/config/__init__.pyi,sha256=A99Vq3Axarc-3OpaAeZL1mZKXaGPM83tOf8cEpHJ-8c,1233
|
|
478
478
|
pulumi_sdwan/config/vars.py,sha256=27nOOM00J0jfjqKU9y9bI3hlEcwHfcW1FDZlSvKYYx0,1866
|
|
479
|
-
pulumi_sdwan-0.4.
|
|
480
|
-
pulumi_sdwan-0.4.
|
|
481
|
-
pulumi_sdwan-0.4.
|
|
482
|
-
pulumi_sdwan-0.4.
|
|
479
|
+
pulumi_sdwan-0.4.1.dist-info/METADATA,sha256=VRFYhpAqv0unjBAe_27bcHgiX-fZPM7_-OtwIWYuzo8,1463
|
|
480
|
+
pulumi_sdwan-0.4.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
481
|
+
pulumi_sdwan-0.4.1.dist-info/top_level.txt,sha256=67dz2Uvzqj865TgEV7tb70GjrAWdDRK9MaWIVf-8GDM,13
|
|
482
|
+
pulumi_sdwan-0.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|