pulumi-sdwan 0.2.0a1730451699__py3-none-any.whl → 0.2.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.
Potentially problematic release.
This version of pulumi-sdwan might be problematic. Click here for more details.
- pulumi_sdwan/__init__.py +160 -0
- pulumi_sdwan/_inputs.py +78 -55
- pulumi_sdwan/get_service_lan_vpn_feature_associate_multicast_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_bgp_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_eigrp_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospf_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_interface_svi_feature.py +45 -1
- pulumi_sdwan/get_transport_cellular_controller_feature.py +302 -0
- pulumi_sdwan/get_transport_cellular_profile_feature.py +372 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_bgp_feature.py +156 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospf_feature.py +156 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +156 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +156 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature.py +45 -1
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature.py +45 -1
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_t1_e1_serial_feature.py +45 -1
- pulumi_sdwan/other_ucse_feature.py +51 -46
- pulumi_sdwan/outputs.py +83 -58
- pulumi_sdwan/pulumi-plugin.json +1 -1
- pulumi_sdwan/service_lan_vpn_feature_associate_multicast_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_bgp_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_eigrp_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospf_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_interface_svi_feature.py +136 -0
- pulumi_sdwan/system_remote_access_feature.py +17 -18
- pulumi_sdwan/transport_cellular_controller_feature.py +796 -0
- pulumi_sdwan/transport_cellular_profile_feature.py +1036 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_bgp_feature.py +285 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospf_feature.py +285 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +285 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +285 -0
- pulumi_sdwan/transport_wan_vpn_interface_cellular_feature.py +136 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py +136 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_t1_e1_serial_feature.py +140 -0
- {pulumi_sdwan-0.2.0a1730451699.dist-info → pulumi_sdwan-0.2.1.dist-info}/METADATA +5 -5
- {pulumi_sdwan-0.2.0a1730451699.dist-info → pulumi_sdwan-0.2.1.dist-info}/RECORD +50 -18
- {pulumi_sdwan-0.2.0a1730451699.dist-info → pulumi_sdwan-0.2.1.dist-info}/WHEEL +1 -1
- {pulumi_sdwan-0.2.0a1730451699.dist-info → pulumi_sdwan-0.2.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
'GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult',
|
|
19
|
+
'AwaitableGetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult',
|
|
20
|
+
'get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature',
|
|
21
|
+
'get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, feature_profile_id=None, id=None, service_lan_vpn_feature_id=None, service_routing_ospfv3_ipv4_feature_id=None):
|
|
30
|
+
if feature_profile_id and not isinstance(feature_profile_id, str):
|
|
31
|
+
raise TypeError("Expected argument 'feature_profile_id' to be a str")
|
|
32
|
+
pulumi.set(__self__, "feature_profile_id", feature_profile_id)
|
|
33
|
+
if id and not isinstance(id, str):
|
|
34
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
35
|
+
pulumi.set(__self__, "id", id)
|
|
36
|
+
if service_lan_vpn_feature_id and not isinstance(service_lan_vpn_feature_id, str):
|
|
37
|
+
raise TypeError("Expected argument 'service_lan_vpn_feature_id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
|
|
39
|
+
if service_routing_ospfv3_ipv4_feature_id and not isinstance(service_routing_ospfv3_ipv4_feature_id, str):
|
|
40
|
+
raise TypeError("Expected argument 'service_routing_ospfv3_ipv4_feature_id' to be a str")
|
|
41
|
+
pulumi.set(__self__, "service_routing_ospfv3_ipv4_feature_id", service_routing_ospfv3_ipv4_feature_id)
|
|
42
|
+
|
|
43
|
+
@property
|
|
44
|
+
@pulumi.getter(name="featureProfileId")
|
|
45
|
+
def feature_profile_id(self) -> str:
|
|
46
|
+
"""
|
|
47
|
+
Feature Profile ID
|
|
48
|
+
"""
|
|
49
|
+
return pulumi.get(self, "feature_profile_id")
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter
|
|
53
|
+
def id(self) -> str:
|
|
54
|
+
"""
|
|
55
|
+
The id of the object
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "id")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter(name="serviceLanVpnFeatureId")
|
|
61
|
+
def service_lan_vpn_feature_id(self) -> str:
|
|
62
|
+
"""
|
|
63
|
+
Service LAN VPN Feature ID
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "service_lan_vpn_feature_id")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter(name="serviceRoutingOspfv3Ipv4FeatureId")
|
|
69
|
+
def service_routing_ospfv3_ipv4_feature_id(self) -> str:
|
|
70
|
+
"""
|
|
71
|
+
Service Routing OSPFv3 IPv4 Feature ID
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "service_routing_ospfv3_ipv4_feature_id")
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
class AwaitableGetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult(GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult):
|
|
77
|
+
# pylint: disable=using-constant-test
|
|
78
|
+
def __await__(self):
|
|
79
|
+
if False:
|
|
80
|
+
yield self
|
|
81
|
+
return GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult(
|
|
82
|
+
feature_profile_id=self.feature_profile_id,
|
|
83
|
+
id=self.id,
|
|
84
|
+
service_lan_vpn_feature_id=self.service_lan_vpn_feature_id,
|
|
85
|
+
service_routing_ospfv3_ipv4_feature_id=self.service_routing_ospfv3_ipv4_feature_id)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
def get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature(feature_profile_id: Optional[str] = None,
|
|
89
|
+
id: Optional[str] = None,
|
|
90
|
+
service_lan_vpn_feature_id: Optional[str] = None,
|
|
91
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult:
|
|
92
|
+
"""
|
|
93
|
+
This data source can read the Service LAN VPN Feature Associate Routing OSPFv3 IPv4 Feature .
|
|
94
|
+
|
|
95
|
+
## Example Usage
|
|
96
|
+
|
|
97
|
+
```python
|
|
98
|
+
import pulumi
|
|
99
|
+
import pulumi_sdwan as sdwan
|
|
100
|
+
|
|
101
|
+
example = sdwan.get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
102
|
+
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
103
|
+
id="f6b2c44c-693c-4763-b010-895aa3d236bd")
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
:param str feature_profile_id: Feature Profile ID
|
|
108
|
+
:param str id: The id of the object
|
|
109
|
+
:param str service_lan_vpn_feature_id: Service LAN VPN Feature ID
|
|
110
|
+
"""
|
|
111
|
+
__args__ = dict()
|
|
112
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
113
|
+
__args__['id'] = id
|
|
114
|
+
__args__['serviceLanVpnFeatureId'] = service_lan_vpn_feature_id
|
|
115
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
116
|
+
__ret__ = pulumi.runtime.invoke('sdwan:index/getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature', __args__, opts=opts, typ=GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult).value
|
|
117
|
+
|
|
118
|
+
return AwaitableGetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult(
|
|
119
|
+
feature_profile_id=pulumi.get(__ret__, 'feature_profile_id'),
|
|
120
|
+
id=pulumi.get(__ret__, 'id'),
|
|
121
|
+
service_lan_vpn_feature_id=pulumi.get(__ret__, 'service_lan_vpn_feature_id'),
|
|
122
|
+
service_routing_ospfv3_ipv4_feature_id=pulumi.get(__ret__, 'service_routing_ospfv3_ipv4_feature_id'))
|
|
123
|
+
def get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
|
|
124
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
125
|
+
service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
|
|
126
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult]:
|
|
127
|
+
"""
|
|
128
|
+
This data source can read the Service LAN VPN Feature Associate Routing OSPFv3 IPv4 Feature .
|
|
129
|
+
|
|
130
|
+
## Example Usage
|
|
131
|
+
|
|
132
|
+
```python
|
|
133
|
+
import pulumi
|
|
134
|
+
import pulumi_sdwan as sdwan
|
|
135
|
+
|
|
136
|
+
example = sdwan.get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
137
|
+
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
138
|
+
id="f6b2c44c-693c-4763-b010-895aa3d236bd")
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
:param str feature_profile_id: Feature Profile ID
|
|
143
|
+
:param str id: The id of the object
|
|
144
|
+
:param str service_lan_vpn_feature_id: Service LAN VPN Feature ID
|
|
145
|
+
"""
|
|
146
|
+
__args__ = dict()
|
|
147
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
148
|
+
__args__['id'] = id
|
|
149
|
+
__args__['serviceLanVpnFeatureId'] = service_lan_vpn_feature_id
|
|
150
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
151
|
+
__ret__ = pulumi.runtime.invoke_output('sdwan:index/getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature', __args__, opts=opts, typ=GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult)
|
|
152
|
+
return __ret__.apply(lambda __response__: GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureResult(
|
|
153
|
+
feature_profile_id=pulumi.get(__response__, 'feature_profile_id'),
|
|
154
|
+
id=pulumi.get(__response__, 'id'),
|
|
155
|
+
service_lan_vpn_feature_id=pulumi.get(__response__, 'service_lan_vpn_feature_id'),
|
|
156
|
+
service_routing_ospfv3_ipv4_feature_id=pulumi.get(__response__, 'service_routing_ospfv3_ipv4_feature_id')))
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
'GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult',
|
|
19
|
+
'AwaitableGetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult',
|
|
20
|
+
'get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature',
|
|
21
|
+
'get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6Feature.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, feature_profile_id=None, id=None, service_lan_vpn_feature_id=None, service_routing_ospfv3_ipv6_feature_id=None):
|
|
30
|
+
if feature_profile_id and not isinstance(feature_profile_id, str):
|
|
31
|
+
raise TypeError("Expected argument 'feature_profile_id' to be a str")
|
|
32
|
+
pulumi.set(__self__, "feature_profile_id", feature_profile_id)
|
|
33
|
+
if id and not isinstance(id, str):
|
|
34
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
35
|
+
pulumi.set(__self__, "id", id)
|
|
36
|
+
if service_lan_vpn_feature_id and not isinstance(service_lan_vpn_feature_id, str):
|
|
37
|
+
raise TypeError("Expected argument 'service_lan_vpn_feature_id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
|
|
39
|
+
if service_routing_ospfv3_ipv6_feature_id and not isinstance(service_routing_ospfv3_ipv6_feature_id, str):
|
|
40
|
+
raise TypeError("Expected argument 'service_routing_ospfv3_ipv6_feature_id' to be a str")
|
|
41
|
+
pulumi.set(__self__, "service_routing_ospfv3_ipv6_feature_id", service_routing_ospfv3_ipv6_feature_id)
|
|
42
|
+
|
|
43
|
+
@property
|
|
44
|
+
@pulumi.getter(name="featureProfileId")
|
|
45
|
+
def feature_profile_id(self) -> str:
|
|
46
|
+
"""
|
|
47
|
+
Feature Profile ID
|
|
48
|
+
"""
|
|
49
|
+
return pulumi.get(self, "feature_profile_id")
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter
|
|
53
|
+
def id(self) -> str:
|
|
54
|
+
"""
|
|
55
|
+
The id of the object
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "id")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter(name="serviceLanVpnFeatureId")
|
|
61
|
+
def service_lan_vpn_feature_id(self) -> str:
|
|
62
|
+
"""
|
|
63
|
+
Service LAN VPN Feature ID
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "service_lan_vpn_feature_id")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter(name="serviceRoutingOspfv3Ipv6FeatureId")
|
|
69
|
+
def service_routing_ospfv3_ipv6_feature_id(self) -> str:
|
|
70
|
+
"""
|
|
71
|
+
Service Routing OSPFv3 IPv6 Feature ID
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "service_routing_ospfv3_ipv6_feature_id")
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
class AwaitableGetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult(GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult):
|
|
77
|
+
# pylint: disable=using-constant-test
|
|
78
|
+
def __await__(self):
|
|
79
|
+
if False:
|
|
80
|
+
yield self
|
|
81
|
+
return GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult(
|
|
82
|
+
feature_profile_id=self.feature_profile_id,
|
|
83
|
+
id=self.id,
|
|
84
|
+
service_lan_vpn_feature_id=self.service_lan_vpn_feature_id,
|
|
85
|
+
service_routing_ospfv3_ipv6_feature_id=self.service_routing_ospfv3_ipv6_feature_id)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
def get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature(feature_profile_id: Optional[str] = None,
|
|
89
|
+
id: Optional[str] = None,
|
|
90
|
+
service_lan_vpn_feature_id: Optional[str] = None,
|
|
91
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult:
|
|
92
|
+
"""
|
|
93
|
+
This data source can read the Service LAN VPN Feature Associate Routing OSPFv3 IPv6 Feature .
|
|
94
|
+
|
|
95
|
+
## Example Usage
|
|
96
|
+
|
|
97
|
+
```python
|
|
98
|
+
import pulumi
|
|
99
|
+
import pulumi_sdwan as sdwan
|
|
100
|
+
|
|
101
|
+
example = sdwan.get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
102
|
+
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
103
|
+
id="f6b2c44c-693c-4763-b010-895aa3d236bd")
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
:param str feature_profile_id: Feature Profile ID
|
|
108
|
+
:param str id: The id of the object
|
|
109
|
+
:param str service_lan_vpn_feature_id: Service LAN VPN Feature ID
|
|
110
|
+
"""
|
|
111
|
+
__args__ = dict()
|
|
112
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
113
|
+
__args__['id'] = id
|
|
114
|
+
__args__['serviceLanVpnFeatureId'] = service_lan_vpn_feature_id
|
|
115
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
116
|
+
__ret__ = pulumi.runtime.invoke('sdwan:index/getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6Feature:getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6Feature', __args__, opts=opts, typ=GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult).value
|
|
117
|
+
|
|
118
|
+
return AwaitableGetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult(
|
|
119
|
+
feature_profile_id=pulumi.get(__ret__, 'feature_profile_id'),
|
|
120
|
+
id=pulumi.get(__ret__, 'id'),
|
|
121
|
+
service_lan_vpn_feature_id=pulumi.get(__ret__, 'service_lan_vpn_feature_id'),
|
|
122
|
+
service_routing_ospfv3_ipv6_feature_id=pulumi.get(__ret__, 'service_routing_ospfv3_ipv6_feature_id'))
|
|
123
|
+
def get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
|
|
124
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
125
|
+
service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
|
|
126
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult]:
|
|
127
|
+
"""
|
|
128
|
+
This data source can read the Service LAN VPN Feature Associate Routing OSPFv3 IPv6 Feature .
|
|
129
|
+
|
|
130
|
+
## Example Usage
|
|
131
|
+
|
|
132
|
+
```python
|
|
133
|
+
import pulumi
|
|
134
|
+
import pulumi_sdwan as sdwan
|
|
135
|
+
|
|
136
|
+
example = sdwan.get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
137
|
+
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
138
|
+
id="f6b2c44c-693c-4763-b010-895aa3d236bd")
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
:param str feature_profile_id: Feature Profile ID
|
|
143
|
+
:param str id: The id of the object
|
|
144
|
+
:param str service_lan_vpn_feature_id: Service LAN VPN Feature ID
|
|
145
|
+
"""
|
|
146
|
+
__args__ = dict()
|
|
147
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
148
|
+
__args__['id'] = id
|
|
149
|
+
__args__['serviceLanVpnFeatureId'] = service_lan_vpn_feature_id
|
|
150
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
151
|
+
__ret__ = pulumi.runtime.invoke_output('sdwan:index/getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6Feature:getServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6Feature', __args__, opts=opts, typ=GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult)
|
|
152
|
+
return __ret__.apply(lambda __response__: GetServiceLanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureResult(
|
|
153
|
+
feature_profile_id=pulumi.get(__response__, 'feature_profile_id'),
|
|
154
|
+
id=pulumi.get(__response__, 'id'),
|
|
155
|
+
service_lan_vpn_feature_id=pulumi.get(__response__, 'service_lan_vpn_feature_id'),
|
|
156
|
+
service_routing_ospfv3_ipv6_feature_id=pulumi.get(__response__, 'service_routing_ospfv3_ipv6_feature_id')))
|
|
@@ -27,7 +27,19 @@ class GetServiceLanVpnInterfaceSviFeatureResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getServiceLanVpnInterfaceSviFeature.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, arp_timeout=None, arp_timeout_variable=None, arps=None, description=None, enable_dhcpv6=None, enable_dhcpv6_variable=None, feature_profile_id=None, icmp_redirect_disable=None, icmp_redirect_disable_variable=None, id=None, interface_description=None, interface_description_variable=None, interface_mtu=None, interface_mtu_variable=None, interface_name=None, interface_name_variable=None, ip_directed_broadcast=None, ip_directed_broadcast_variable=None, ip_mtu=None, ip_mtu_variable=None, ipv4_address=None, ipv4_address_variable=None, ipv4_dhcp_helpers=None, ipv4_dhcp_helpers_variable=None, ipv4_secondary_addresses=None, ipv4_subnet_mask=None, ipv4_subnet_mask_variable=None, ipv4_vrrps=None, ipv6_address=None, ipv6_address_variable=None, ipv6_dhcp_helpers=None, ipv6_secondary_addresses=None, ipv6_vrrps=None, name=None, service_lan_vpn_feature_id=None, shutdown=None, shutdown_variable=None, tcp_mss=None, tcp_mss_variable=None, version=None):
|
|
30
|
+
def __init__(__self__, acl_ipv4_egress_feature_id=None, acl_ipv4_ingress_feature_id=None, acl_ipv6_egress_feature_id=None, acl_ipv6_ingress_feature_id=None, arp_timeout=None, arp_timeout_variable=None, arps=None, description=None, enable_dhcpv6=None, enable_dhcpv6_variable=None, feature_profile_id=None, icmp_redirect_disable=None, icmp_redirect_disable_variable=None, id=None, interface_description=None, interface_description_variable=None, interface_mtu=None, interface_mtu_variable=None, interface_name=None, interface_name_variable=None, ip_directed_broadcast=None, ip_directed_broadcast_variable=None, ip_mtu=None, ip_mtu_variable=None, ipv4_address=None, ipv4_address_variable=None, ipv4_dhcp_helpers=None, ipv4_dhcp_helpers_variable=None, ipv4_secondary_addresses=None, ipv4_subnet_mask=None, ipv4_subnet_mask_variable=None, ipv4_vrrps=None, ipv6_address=None, ipv6_address_variable=None, ipv6_dhcp_helpers=None, ipv6_secondary_addresses=None, ipv6_vrrps=None, name=None, service_lan_vpn_feature_id=None, shutdown=None, shutdown_variable=None, tcp_mss=None, tcp_mss_variable=None, version=None):
|
|
31
|
+
if acl_ipv4_egress_feature_id and not isinstance(acl_ipv4_egress_feature_id, str):
|
|
32
|
+
raise TypeError("Expected argument 'acl_ipv4_egress_feature_id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "acl_ipv4_egress_feature_id", acl_ipv4_egress_feature_id)
|
|
34
|
+
if acl_ipv4_ingress_feature_id and not isinstance(acl_ipv4_ingress_feature_id, str):
|
|
35
|
+
raise TypeError("Expected argument 'acl_ipv4_ingress_feature_id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "acl_ipv4_ingress_feature_id", acl_ipv4_ingress_feature_id)
|
|
37
|
+
if acl_ipv6_egress_feature_id and not isinstance(acl_ipv6_egress_feature_id, str):
|
|
38
|
+
raise TypeError("Expected argument 'acl_ipv6_egress_feature_id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "acl_ipv6_egress_feature_id", acl_ipv6_egress_feature_id)
|
|
40
|
+
if acl_ipv6_ingress_feature_id and not isinstance(acl_ipv6_ingress_feature_id, str):
|
|
41
|
+
raise TypeError("Expected argument 'acl_ipv6_ingress_feature_id' to be a str")
|
|
42
|
+
pulumi.set(__self__, "acl_ipv6_ingress_feature_id", acl_ipv6_ingress_feature_id)
|
|
31
43
|
if arp_timeout and not isinstance(arp_timeout, int):
|
|
32
44
|
raise TypeError("Expected argument 'arp_timeout' to be a int")
|
|
33
45
|
pulumi.set(__self__, "arp_timeout", arp_timeout)
|
|
@@ -149,6 +161,26 @@ class GetServiceLanVpnInterfaceSviFeatureResult:
|
|
|
149
161
|
raise TypeError("Expected argument 'version' to be a int")
|
|
150
162
|
pulumi.set(__self__, "version", version)
|
|
151
163
|
|
|
164
|
+
@property
|
|
165
|
+
@pulumi.getter(name="aclIpv4EgressFeatureId")
|
|
166
|
+
def acl_ipv4_egress_feature_id(self) -> str:
|
|
167
|
+
return pulumi.get(self, "acl_ipv4_egress_feature_id")
|
|
168
|
+
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter(name="aclIpv4IngressFeatureId")
|
|
171
|
+
def acl_ipv4_ingress_feature_id(self) -> str:
|
|
172
|
+
return pulumi.get(self, "acl_ipv4_ingress_feature_id")
|
|
173
|
+
|
|
174
|
+
@property
|
|
175
|
+
@pulumi.getter(name="aclIpv6EgressFeatureId")
|
|
176
|
+
def acl_ipv6_egress_feature_id(self) -> str:
|
|
177
|
+
return pulumi.get(self, "acl_ipv6_egress_feature_id")
|
|
178
|
+
|
|
179
|
+
@property
|
|
180
|
+
@pulumi.getter(name="aclIpv6IngressFeatureId")
|
|
181
|
+
def acl_ipv6_ingress_feature_id(self) -> str:
|
|
182
|
+
return pulumi.get(self, "acl_ipv6_ingress_feature_id")
|
|
183
|
+
|
|
152
184
|
@property
|
|
153
185
|
@pulumi.getter(name="arpTimeout")
|
|
154
186
|
def arp_timeout(self) -> int:
|
|
@@ -476,6 +508,10 @@ class AwaitableGetServiceLanVpnInterfaceSviFeatureResult(GetServiceLanVpnInterfa
|
|
|
476
508
|
if False:
|
|
477
509
|
yield self
|
|
478
510
|
return GetServiceLanVpnInterfaceSviFeatureResult(
|
|
511
|
+
acl_ipv4_egress_feature_id=self.acl_ipv4_egress_feature_id,
|
|
512
|
+
acl_ipv4_ingress_feature_id=self.acl_ipv4_ingress_feature_id,
|
|
513
|
+
acl_ipv6_egress_feature_id=self.acl_ipv6_egress_feature_id,
|
|
514
|
+
acl_ipv6_ingress_feature_id=self.acl_ipv6_ingress_feature_id,
|
|
479
515
|
arp_timeout=self.arp_timeout,
|
|
480
516
|
arp_timeout_variable=self.arp_timeout_variable,
|
|
481
517
|
arps=self.arps,
|
|
@@ -549,6 +585,10 @@ def get_service_lan_vpn_interface_svi_feature(feature_profile_id: Optional[str]
|
|
|
549
585
|
__ret__ = pulumi.runtime.invoke('sdwan:index/getServiceLanVpnInterfaceSviFeature:getServiceLanVpnInterfaceSviFeature', __args__, opts=opts, typ=GetServiceLanVpnInterfaceSviFeatureResult).value
|
|
550
586
|
|
|
551
587
|
return AwaitableGetServiceLanVpnInterfaceSviFeatureResult(
|
|
588
|
+
acl_ipv4_egress_feature_id=pulumi.get(__ret__, 'acl_ipv4_egress_feature_id'),
|
|
589
|
+
acl_ipv4_ingress_feature_id=pulumi.get(__ret__, 'acl_ipv4_ingress_feature_id'),
|
|
590
|
+
acl_ipv6_egress_feature_id=pulumi.get(__ret__, 'acl_ipv6_egress_feature_id'),
|
|
591
|
+
acl_ipv6_ingress_feature_id=pulumi.get(__ret__, 'acl_ipv6_ingress_feature_id'),
|
|
552
592
|
arp_timeout=pulumi.get(__ret__, 'arp_timeout'),
|
|
553
593
|
arp_timeout_variable=pulumi.get(__ret__, 'arp_timeout_variable'),
|
|
554
594
|
arps=pulumi.get(__ret__, 'arps'),
|
|
@@ -619,6 +659,10 @@ def get_service_lan_vpn_interface_svi_feature_output(feature_profile_id: Optiona
|
|
|
619
659
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
620
660
|
__ret__ = pulumi.runtime.invoke_output('sdwan:index/getServiceLanVpnInterfaceSviFeature:getServiceLanVpnInterfaceSviFeature', __args__, opts=opts, typ=GetServiceLanVpnInterfaceSviFeatureResult)
|
|
621
661
|
return __ret__.apply(lambda __response__: GetServiceLanVpnInterfaceSviFeatureResult(
|
|
662
|
+
acl_ipv4_egress_feature_id=pulumi.get(__response__, 'acl_ipv4_egress_feature_id'),
|
|
663
|
+
acl_ipv4_ingress_feature_id=pulumi.get(__response__, 'acl_ipv4_ingress_feature_id'),
|
|
664
|
+
acl_ipv6_egress_feature_id=pulumi.get(__response__, 'acl_ipv6_egress_feature_id'),
|
|
665
|
+
acl_ipv6_ingress_feature_id=pulumi.get(__response__, 'acl_ipv6_ingress_feature_id'),
|
|
622
666
|
arp_timeout=pulumi.get(__response__, 'arp_timeout'),
|
|
623
667
|
arp_timeout_variable=pulumi.get(__response__, 'arp_timeout_variable'),
|
|
624
668
|
arps=pulumi.get(__response__, 'arps'),
|