pulumi-sdwan 0.2.2__py3-none-any.whl → 0.2.3a1733310312__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 +40 -0
- pulumi_sdwan/_inputs.py +300 -29
- pulumi_sdwan/get_service_dhcp_server_feature.py +443 -0
- pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature.py +178 -0
- pulumi_sdwan/get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature.py +178 -0
- pulumi_sdwan/get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature.py +178 -0
- pulumi_sdwan/outputs.py +386 -30
- pulumi_sdwan/pulumi-plugin.json +1 -1
- pulumi_sdwan/service_dhcp_server_feature.py +1261 -0
- pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature.py +335 -0
- pulumi_sdwan/service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature.py +335 -0
- pulumi_sdwan/service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature.py +335 -0
- pulumi_sdwan/vpn_interface_cellular_feature_template.py +7 -7
- {pulumi_sdwan-0.2.2.dist-info → pulumi_sdwan-0.2.3a1733310312.dist-info}/METADATA +1 -1
- {pulumi_sdwan-0.2.2.dist-info → pulumi_sdwan-0.2.3a1733310312.dist-info}/RECORD +17 -9
- {pulumi_sdwan-0.2.2.dist-info → pulumi_sdwan-0.2.3a1733310312.dist-info}/WHEEL +0 -0
- {pulumi_sdwan-0.2.2.dist-info → pulumi_sdwan-0.2.3a1733310312.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,178 @@
|
|
|
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
|
+
'GetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult',
|
|
19
|
+
'AwaitableGetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult',
|
|
20
|
+
'get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature',
|
|
21
|
+
'get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, feature_profile_id=None, id=None, service_dhcp_server_feature_id=None, service_lan_vpn_feature_id=None, service_lan_vpn_interface_ipsec_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_dhcp_server_feature_id and not isinstance(service_dhcp_server_feature_id, str):
|
|
37
|
+
raise TypeError("Expected argument 'service_dhcp_server_feature_id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "service_dhcp_server_feature_id", service_dhcp_server_feature_id)
|
|
39
|
+
if service_lan_vpn_feature_id and not isinstance(service_lan_vpn_feature_id, str):
|
|
40
|
+
raise TypeError("Expected argument 'service_lan_vpn_feature_id' to be a str")
|
|
41
|
+
pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
|
|
42
|
+
if service_lan_vpn_interface_ipsec_feature_id and not isinstance(service_lan_vpn_interface_ipsec_feature_id, str):
|
|
43
|
+
raise TypeError("Expected argument 'service_lan_vpn_interface_ipsec_feature_id' to be a str")
|
|
44
|
+
pulumi.set(__self__, "service_lan_vpn_interface_ipsec_feature_id", service_lan_vpn_interface_ipsec_feature_id)
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
@pulumi.getter(name="featureProfileId")
|
|
48
|
+
def feature_profile_id(self) -> str:
|
|
49
|
+
"""
|
|
50
|
+
Feature Profile ID
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "feature_profile_id")
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter
|
|
56
|
+
def id(self) -> str:
|
|
57
|
+
"""
|
|
58
|
+
The id of the object
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "id")
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter(name="serviceDhcpServerFeatureId")
|
|
64
|
+
def service_dhcp_server_feature_id(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Service DHCP Server Feature ID
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "service_dhcp_server_feature_id")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="serviceLanVpnFeatureId")
|
|
72
|
+
def service_lan_vpn_feature_id(self) -> str:
|
|
73
|
+
"""
|
|
74
|
+
Service LAN VPN Feature ID
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "service_lan_vpn_feature_id")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="serviceLanVpnInterfaceIpsecFeatureId")
|
|
80
|
+
def service_lan_vpn_interface_ipsec_feature_id(self) -> str:
|
|
81
|
+
"""
|
|
82
|
+
Service LAN VPN Interface IPSec Feature ID
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "service_lan_vpn_interface_ipsec_feature_id")
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class AwaitableGetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult(GetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult):
|
|
88
|
+
# pylint: disable=using-constant-test
|
|
89
|
+
def __await__(self):
|
|
90
|
+
if False:
|
|
91
|
+
yield self
|
|
92
|
+
return GetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult(
|
|
93
|
+
feature_profile_id=self.feature_profile_id,
|
|
94
|
+
id=self.id,
|
|
95
|
+
service_dhcp_server_feature_id=self.service_dhcp_server_feature_id,
|
|
96
|
+
service_lan_vpn_feature_id=self.service_lan_vpn_feature_id,
|
|
97
|
+
service_lan_vpn_interface_ipsec_feature_id=self.service_lan_vpn_interface_ipsec_feature_id)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature(feature_profile_id: Optional[str] = None,
|
|
101
|
+
id: Optional[str] = None,
|
|
102
|
+
service_lan_vpn_feature_id: Optional[str] = None,
|
|
103
|
+
service_lan_vpn_interface_ipsec_feature_id: Optional[str] = None,
|
|
104
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult:
|
|
105
|
+
"""
|
|
106
|
+
This data source can read the Service LAN VPN Interface IPSec Feature Associate DHCP Server Feature .
|
|
107
|
+
|
|
108
|
+
## Example Usage
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
import pulumi
|
|
112
|
+
import pulumi_sdwan as sdwan
|
|
113
|
+
|
|
114
|
+
example = sdwan.get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
115
|
+
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
116
|
+
service_lan_vpn_interface_ipsec_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
117
|
+
id="f6b2c44c-693c-4763-b010-895aa3d236bd")
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
:param str feature_profile_id: Feature Profile ID
|
|
122
|
+
:param str id: The id of the object
|
|
123
|
+
:param str service_lan_vpn_feature_id: Service LAN VPN Feature ID
|
|
124
|
+
:param str service_lan_vpn_interface_ipsec_feature_id: Service LAN VPN Interface IPSec Feature ID
|
|
125
|
+
"""
|
|
126
|
+
__args__ = dict()
|
|
127
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
128
|
+
__args__['id'] = id
|
|
129
|
+
__args__['serviceLanVpnFeatureId'] = service_lan_vpn_feature_id
|
|
130
|
+
__args__['serviceLanVpnInterfaceIpsecFeatureId'] = service_lan_vpn_interface_ipsec_feature_id
|
|
131
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
132
|
+
__ret__ = pulumi.runtime.invoke('sdwan:index/getServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature:getServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature', __args__, opts=opts, typ=GetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult).value
|
|
133
|
+
|
|
134
|
+
return AwaitableGetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult(
|
|
135
|
+
feature_profile_id=pulumi.get(__ret__, 'feature_profile_id'),
|
|
136
|
+
id=pulumi.get(__ret__, 'id'),
|
|
137
|
+
service_dhcp_server_feature_id=pulumi.get(__ret__, 'service_dhcp_server_feature_id'),
|
|
138
|
+
service_lan_vpn_feature_id=pulumi.get(__ret__, 'service_lan_vpn_feature_id'),
|
|
139
|
+
service_lan_vpn_interface_ipsec_feature_id=pulumi.get(__ret__, 'service_lan_vpn_interface_ipsec_feature_id'))
|
|
140
|
+
def get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
|
|
141
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
142
|
+
service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
|
|
143
|
+
service_lan_vpn_interface_ipsec_feature_id: Optional[pulumi.Input[str]] = None,
|
|
144
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult]:
|
|
145
|
+
"""
|
|
146
|
+
This data source can read the Service LAN VPN Interface IPSec Feature Associate DHCP Server Feature .
|
|
147
|
+
|
|
148
|
+
## Example Usage
|
|
149
|
+
|
|
150
|
+
```python
|
|
151
|
+
import pulumi
|
|
152
|
+
import pulumi_sdwan as sdwan
|
|
153
|
+
|
|
154
|
+
example = sdwan.get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
155
|
+
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
156
|
+
service_lan_vpn_interface_ipsec_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
157
|
+
id="f6b2c44c-693c-4763-b010-895aa3d236bd")
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
:param str feature_profile_id: Feature Profile ID
|
|
162
|
+
:param str id: The id of the object
|
|
163
|
+
:param str service_lan_vpn_feature_id: Service LAN VPN Feature ID
|
|
164
|
+
:param str service_lan_vpn_interface_ipsec_feature_id: Service LAN VPN Interface IPSec Feature ID
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
168
|
+
__args__['id'] = id
|
|
169
|
+
__args__['serviceLanVpnFeatureId'] = service_lan_vpn_feature_id
|
|
170
|
+
__args__['serviceLanVpnInterfaceIpsecFeatureId'] = service_lan_vpn_interface_ipsec_feature_id
|
|
171
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
172
|
+
__ret__ = pulumi.runtime.invoke_output('sdwan:index/getServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature:getServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature', __args__, opts=opts, typ=GetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult)
|
|
173
|
+
return __ret__.apply(lambda __response__: GetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResult(
|
|
174
|
+
feature_profile_id=pulumi.get(__response__, 'feature_profile_id'),
|
|
175
|
+
id=pulumi.get(__response__, 'id'),
|
|
176
|
+
service_dhcp_server_feature_id=pulumi.get(__response__, 'service_dhcp_server_feature_id'),
|
|
177
|
+
service_lan_vpn_feature_id=pulumi.get(__response__, 'service_lan_vpn_feature_id'),
|
|
178
|
+
service_lan_vpn_interface_ipsec_feature_id=pulumi.get(__response__, 'service_lan_vpn_interface_ipsec_feature_id')))
|
|
@@ -0,0 +1,178 @@
|
|
|
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
|
+
'GetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult',
|
|
19
|
+
'AwaitableGetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult',
|
|
20
|
+
'get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature',
|
|
21
|
+
'get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeature.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, feature_profile_id=None, id=None, service_dhcp_server_feature_id=None, service_lan_vpn_feature_id=None, service_lan_vpn_interface_svi_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_dhcp_server_feature_id and not isinstance(service_dhcp_server_feature_id, str):
|
|
37
|
+
raise TypeError("Expected argument 'service_dhcp_server_feature_id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "service_dhcp_server_feature_id", service_dhcp_server_feature_id)
|
|
39
|
+
if service_lan_vpn_feature_id and not isinstance(service_lan_vpn_feature_id, str):
|
|
40
|
+
raise TypeError("Expected argument 'service_lan_vpn_feature_id' to be a str")
|
|
41
|
+
pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
|
|
42
|
+
if service_lan_vpn_interface_svi_feature_id and not isinstance(service_lan_vpn_interface_svi_feature_id, str):
|
|
43
|
+
raise TypeError("Expected argument 'service_lan_vpn_interface_svi_feature_id' to be a str")
|
|
44
|
+
pulumi.set(__self__, "service_lan_vpn_interface_svi_feature_id", service_lan_vpn_interface_svi_feature_id)
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
@pulumi.getter(name="featureProfileId")
|
|
48
|
+
def feature_profile_id(self) -> str:
|
|
49
|
+
"""
|
|
50
|
+
Feature Profile ID
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "feature_profile_id")
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter
|
|
56
|
+
def id(self) -> str:
|
|
57
|
+
"""
|
|
58
|
+
The id of the object
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "id")
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter(name="serviceDhcpServerFeatureId")
|
|
64
|
+
def service_dhcp_server_feature_id(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Service DHCP Server Feature ID
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "service_dhcp_server_feature_id")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="serviceLanVpnFeatureId")
|
|
72
|
+
def service_lan_vpn_feature_id(self) -> str:
|
|
73
|
+
"""
|
|
74
|
+
Service LAN VPN Feature ID
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "service_lan_vpn_feature_id")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="serviceLanVpnInterfaceSviFeatureId")
|
|
80
|
+
def service_lan_vpn_interface_svi_feature_id(self) -> str:
|
|
81
|
+
"""
|
|
82
|
+
Service LAN VPN Interface SVI Feature ID
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "service_lan_vpn_interface_svi_feature_id")
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class AwaitableGetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult(GetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult):
|
|
88
|
+
# pylint: disable=using-constant-test
|
|
89
|
+
def __await__(self):
|
|
90
|
+
if False:
|
|
91
|
+
yield self
|
|
92
|
+
return GetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult(
|
|
93
|
+
feature_profile_id=self.feature_profile_id,
|
|
94
|
+
id=self.id,
|
|
95
|
+
service_dhcp_server_feature_id=self.service_dhcp_server_feature_id,
|
|
96
|
+
service_lan_vpn_feature_id=self.service_lan_vpn_feature_id,
|
|
97
|
+
service_lan_vpn_interface_svi_feature_id=self.service_lan_vpn_interface_svi_feature_id)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature(feature_profile_id: Optional[str] = None,
|
|
101
|
+
id: Optional[str] = None,
|
|
102
|
+
service_lan_vpn_feature_id: Optional[str] = None,
|
|
103
|
+
service_lan_vpn_interface_svi_feature_id: Optional[str] = None,
|
|
104
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult:
|
|
105
|
+
"""
|
|
106
|
+
This data source can read the Service LAN VPN Interface SVI Feature Associate DHCP Server Feature .
|
|
107
|
+
|
|
108
|
+
## Example Usage
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
import pulumi
|
|
112
|
+
import pulumi_sdwan as sdwan
|
|
113
|
+
|
|
114
|
+
example = sdwan.get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
115
|
+
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
116
|
+
service_lan_vpn_interface_svi_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
117
|
+
id="f6b2c44c-693c-4763-b010-895aa3d236bd")
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
:param str feature_profile_id: Feature Profile ID
|
|
122
|
+
:param str id: The id of the object
|
|
123
|
+
:param str service_lan_vpn_feature_id: Service LAN VPN Feature ID
|
|
124
|
+
:param str service_lan_vpn_interface_svi_feature_id: Service LAN VPN Interface SVI Feature ID
|
|
125
|
+
"""
|
|
126
|
+
__args__ = dict()
|
|
127
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
128
|
+
__args__['id'] = id
|
|
129
|
+
__args__['serviceLanVpnFeatureId'] = service_lan_vpn_feature_id
|
|
130
|
+
__args__['serviceLanVpnInterfaceSviFeatureId'] = service_lan_vpn_interface_svi_feature_id
|
|
131
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
132
|
+
__ret__ = pulumi.runtime.invoke('sdwan:index/getServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeature:getServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeature', __args__, opts=opts, typ=GetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult).value
|
|
133
|
+
|
|
134
|
+
return AwaitableGetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult(
|
|
135
|
+
feature_profile_id=pulumi.get(__ret__, 'feature_profile_id'),
|
|
136
|
+
id=pulumi.get(__ret__, 'id'),
|
|
137
|
+
service_dhcp_server_feature_id=pulumi.get(__ret__, 'service_dhcp_server_feature_id'),
|
|
138
|
+
service_lan_vpn_feature_id=pulumi.get(__ret__, 'service_lan_vpn_feature_id'),
|
|
139
|
+
service_lan_vpn_interface_svi_feature_id=pulumi.get(__ret__, 'service_lan_vpn_interface_svi_feature_id'))
|
|
140
|
+
def get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
|
|
141
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
142
|
+
service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
|
|
143
|
+
service_lan_vpn_interface_svi_feature_id: Optional[pulumi.Input[str]] = None,
|
|
144
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult]:
|
|
145
|
+
"""
|
|
146
|
+
This data source can read the Service LAN VPN Interface SVI Feature Associate DHCP Server Feature .
|
|
147
|
+
|
|
148
|
+
## Example Usage
|
|
149
|
+
|
|
150
|
+
```python
|
|
151
|
+
import pulumi
|
|
152
|
+
import pulumi_sdwan as sdwan
|
|
153
|
+
|
|
154
|
+
example = sdwan.get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
155
|
+
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
156
|
+
service_lan_vpn_interface_svi_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
157
|
+
id="f6b2c44c-693c-4763-b010-895aa3d236bd")
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
:param str feature_profile_id: Feature Profile ID
|
|
162
|
+
:param str id: The id of the object
|
|
163
|
+
:param str service_lan_vpn_feature_id: Service LAN VPN Feature ID
|
|
164
|
+
:param str service_lan_vpn_interface_svi_feature_id: Service LAN VPN Interface SVI Feature ID
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
168
|
+
__args__['id'] = id
|
|
169
|
+
__args__['serviceLanVpnFeatureId'] = service_lan_vpn_feature_id
|
|
170
|
+
__args__['serviceLanVpnInterfaceSviFeatureId'] = service_lan_vpn_interface_svi_feature_id
|
|
171
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
172
|
+
__ret__ = pulumi.runtime.invoke_output('sdwan:index/getServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeature:getServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeature', __args__, opts=opts, typ=GetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult)
|
|
173
|
+
return __ret__.apply(lambda __response__: GetServiceLanVpnInterfaceSviFeatureAssociateDhcpServerFeatureResult(
|
|
174
|
+
feature_profile_id=pulumi.get(__response__, 'feature_profile_id'),
|
|
175
|
+
id=pulumi.get(__response__, 'id'),
|
|
176
|
+
service_dhcp_server_feature_id=pulumi.get(__response__, 'service_dhcp_server_feature_id'),
|
|
177
|
+
service_lan_vpn_feature_id=pulumi.get(__response__, 'service_lan_vpn_feature_id'),
|
|
178
|
+
service_lan_vpn_interface_svi_feature_id=pulumi.get(__response__, 'service_lan_vpn_interface_svi_feature_id')))
|