pulumi-sdwan 0.3.0a1733293206__py3-none-any.whl → 0.3.0a1733379745__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.

@@ -0,0 +1,443 @@
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
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetServiceDhcpServerFeatureResult',
20
+ 'AwaitableGetServiceDhcpServerFeatureResult',
21
+ 'get_service_dhcp_server_feature',
22
+ 'get_service_dhcp_server_feature_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetServiceDhcpServerFeatureResult:
27
+ """
28
+ A collection of values returned by getServiceDhcpServerFeature.
29
+ """
30
+ def __init__(__self__, default_gateway=None, default_gateway_variable=None, description=None, dns_servers=None, dns_servers_variable=None, domain_name=None, domain_name_variable=None, exclude_variable=None, excludes=None, feature_profile_id=None, id=None, interface_mtu=None, interface_mtu_variable=None, lease_time=None, lease_time_variable=None, name=None, network_address=None, network_address_variable=None, option_codes=None, static_leases=None, subnet_mask=None, subnet_mask_variable=None, tftp_servers=None, tftp_servers_variable=None, version=None):
31
+ if default_gateway and not isinstance(default_gateway, str):
32
+ raise TypeError("Expected argument 'default_gateway' to be a str")
33
+ pulumi.set(__self__, "default_gateway", default_gateway)
34
+ if default_gateway_variable and not isinstance(default_gateway_variable, str):
35
+ raise TypeError("Expected argument 'default_gateway_variable' to be a str")
36
+ pulumi.set(__self__, "default_gateway_variable", default_gateway_variable)
37
+ if description and not isinstance(description, str):
38
+ raise TypeError("Expected argument 'description' to be a str")
39
+ pulumi.set(__self__, "description", description)
40
+ if dns_servers and not isinstance(dns_servers, list):
41
+ raise TypeError("Expected argument 'dns_servers' to be a list")
42
+ pulumi.set(__self__, "dns_servers", dns_servers)
43
+ if dns_servers_variable and not isinstance(dns_servers_variable, str):
44
+ raise TypeError("Expected argument 'dns_servers_variable' to be a str")
45
+ pulumi.set(__self__, "dns_servers_variable", dns_servers_variable)
46
+ if domain_name and not isinstance(domain_name, str):
47
+ raise TypeError("Expected argument 'domain_name' to be a str")
48
+ pulumi.set(__self__, "domain_name", domain_name)
49
+ if domain_name_variable and not isinstance(domain_name_variable, str):
50
+ raise TypeError("Expected argument 'domain_name_variable' to be a str")
51
+ pulumi.set(__self__, "domain_name_variable", domain_name_variable)
52
+ if exclude_variable and not isinstance(exclude_variable, str):
53
+ raise TypeError("Expected argument 'exclude_variable' to be a str")
54
+ pulumi.set(__self__, "exclude_variable", exclude_variable)
55
+ if excludes and not isinstance(excludes, list):
56
+ raise TypeError("Expected argument 'excludes' to be a list")
57
+ pulumi.set(__self__, "excludes", excludes)
58
+ if feature_profile_id and not isinstance(feature_profile_id, str):
59
+ raise TypeError("Expected argument 'feature_profile_id' to be a str")
60
+ pulumi.set(__self__, "feature_profile_id", feature_profile_id)
61
+ if id and not isinstance(id, str):
62
+ raise TypeError("Expected argument 'id' to be a str")
63
+ pulumi.set(__self__, "id", id)
64
+ if interface_mtu and not isinstance(interface_mtu, int):
65
+ raise TypeError("Expected argument 'interface_mtu' to be a int")
66
+ pulumi.set(__self__, "interface_mtu", interface_mtu)
67
+ if interface_mtu_variable and not isinstance(interface_mtu_variable, str):
68
+ raise TypeError("Expected argument 'interface_mtu_variable' to be a str")
69
+ pulumi.set(__self__, "interface_mtu_variable", interface_mtu_variable)
70
+ if lease_time and not isinstance(lease_time, int):
71
+ raise TypeError("Expected argument 'lease_time' to be a int")
72
+ pulumi.set(__self__, "lease_time", lease_time)
73
+ if lease_time_variable and not isinstance(lease_time_variable, str):
74
+ raise TypeError("Expected argument 'lease_time_variable' to be a str")
75
+ pulumi.set(__self__, "lease_time_variable", lease_time_variable)
76
+ if name and not isinstance(name, str):
77
+ raise TypeError("Expected argument 'name' to be a str")
78
+ pulumi.set(__self__, "name", name)
79
+ if network_address and not isinstance(network_address, str):
80
+ raise TypeError("Expected argument 'network_address' to be a str")
81
+ pulumi.set(__self__, "network_address", network_address)
82
+ if network_address_variable and not isinstance(network_address_variable, str):
83
+ raise TypeError("Expected argument 'network_address_variable' to be a str")
84
+ pulumi.set(__self__, "network_address_variable", network_address_variable)
85
+ if option_codes and not isinstance(option_codes, list):
86
+ raise TypeError("Expected argument 'option_codes' to be a list")
87
+ pulumi.set(__self__, "option_codes", option_codes)
88
+ if static_leases and not isinstance(static_leases, list):
89
+ raise TypeError("Expected argument 'static_leases' to be a list")
90
+ pulumi.set(__self__, "static_leases", static_leases)
91
+ if subnet_mask and not isinstance(subnet_mask, str):
92
+ raise TypeError("Expected argument 'subnet_mask' to be a str")
93
+ pulumi.set(__self__, "subnet_mask", subnet_mask)
94
+ if subnet_mask_variable and not isinstance(subnet_mask_variable, str):
95
+ raise TypeError("Expected argument 'subnet_mask_variable' to be a str")
96
+ pulumi.set(__self__, "subnet_mask_variable", subnet_mask_variable)
97
+ if tftp_servers and not isinstance(tftp_servers, list):
98
+ raise TypeError("Expected argument 'tftp_servers' to be a list")
99
+ pulumi.set(__self__, "tftp_servers", tftp_servers)
100
+ if tftp_servers_variable and not isinstance(tftp_servers_variable, str):
101
+ raise TypeError("Expected argument 'tftp_servers_variable' to be a str")
102
+ pulumi.set(__self__, "tftp_servers_variable", tftp_servers_variable)
103
+ if version and not isinstance(version, int):
104
+ raise TypeError("Expected argument 'version' to be a int")
105
+ pulumi.set(__self__, "version", version)
106
+
107
+ @property
108
+ @pulumi.getter(name="defaultGateway")
109
+ def default_gateway(self) -> str:
110
+ """
111
+ Set IP address of default gateway
112
+ """
113
+ return pulumi.get(self, "default_gateway")
114
+
115
+ @property
116
+ @pulumi.getter(name="defaultGatewayVariable")
117
+ def default_gateway_variable(self) -> str:
118
+ """
119
+ Variable name
120
+ """
121
+ return pulumi.get(self, "default_gateway_variable")
122
+
123
+ @property
124
+ @pulumi.getter
125
+ def description(self) -> str:
126
+ """
127
+ The description of the Feature
128
+ """
129
+ return pulumi.get(self, "description")
130
+
131
+ @property
132
+ @pulumi.getter(name="dnsServers")
133
+ def dns_servers(self) -> Sequence[str]:
134
+ """
135
+ Configure one or more DNS server IP addresses
136
+ """
137
+ return pulumi.get(self, "dns_servers")
138
+
139
+ @property
140
+ @pulumi.getter(name="dnsServersVariable")
141
+ def dns_servers_variable(self) -> str:
142
+ """
143
+ Variable name
144
+ """
145
+ return pulumi.get(self, "dns_servers_variable")
146
+
147
+ @property
148
+ @pulumi.getter(name="domainName")
149
+ def domain_name(self) -> str:
150
+ """
151
+ Set domain name client uses to resolve hostnames
152
+ """
153
+ return pulumi.get(self, "domain_name")
154
+
155
+ @property
156
+ @pulumi.getter(name="domainNameVariable")
157
+ def domain_name_variable(self) -> str:
158
+ """
159
+ Variable name
160
+ """
161
+ return pulumi.get(self, "domain_name_variable")
162
+
163
+ @property
164
+ @pulumi.getter(name="excludeVariable")
165
+ def exclude_variable(self) -> str:
166
+ """
167
+ Variable name
168
+ """
169
+ return pulumi.get(self, "exclude_variable")
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def excludes(self) -> Sequence[str]:
174
+ """
175
+ Configure IPv4 address to exclude from DHCP address pool
176
+ """
177
+ return pulumi.get(self, "excludes")
178
+
179
+ @property
180
+ @pulumi.getter(name="featureProfileId")
181
+ def feature_profile_id(self) -> str:
182
+ """
183
+ Feature Profile ID
184
+ """
185
+ return pulumi.get(self, "feature_profile_id")
186
+
187
+ @property
188
+ @pulumi.getter
189
+ def id(self) -> str:
190
+ """
191
+ The id of the Feature
192
+ """
193
+ return pulumi.get(self, "id")
194
+
195
+ @property
196
+ @pulumi.getter(name="interfaceMtu")
197
+ def interface_mtu(self) -> int:
198
+ """
199
+ Set MTU on interface to DHCP client
200
+ """
201
+ return pulumi.get(self, "interface_mtu")
202
+
203
+ @property
204
+ @pulumi.getter(name="interfaceMtuVariable")
205
+ def interface_mtu_variable(self) -> str:
206
+ """
207
+ Variable name
208
+ """
209
+ return pulumi.get(self, "interface_mtu_variable")
210
+
211
+ @property
212
+ @pulumi.getter(name="leaseTime")
213
+ def lease_time(self) -> int:
214
+ """
215
+ Configure how long a DHCP-assigned IP address is valid
216
+ """
217
+ return pulumi.get(self, "lease_time")
218
+
219
+ @property
220
+ @pulumi.getter(name="leaseTimeVariable")
221
+ def lease_time_variable(self) -> str:
222
+ """
223
+ Variable name
224
+ """
225
+ return pulumi.get(self, "lease_time_variable")
226
+
227
+ @property
228
+ @pulumi.getter
229
+ def name(self) -> str:
230
+ """
231
+ The name of the Feature
232
+ """
233
+ return pulumi.get(self, "name")
234
+
235
+ @property
236
+ @pulumi.getter(name="networkAddress")
237
+ def network_address(self) -> str:
238
+ """
239
+ Network Address
240
+ """
241
+ return pulumi.get(self, "network_address")
242
+
243
+ @property
244
+ @pulumi.getter(name="networkAddressVariable")
245
+ def network_address_variable(self) -> str:
246
+ """
247
+ Variable name
248
+ """
249
+ return pulumi.get(self, "network_address_variable")
250
+
251
+ @property
252
+ @pulumi.getter(name="optionCodes")
253
+ def option_codes(self) -> Sequence['outputs.GetServiceDhcpServerFeatureOptionCodeResult']:
254
+ """
255
+ Configure Options Code
256
+ """
257
+ return pulumi.get(self, "option_codes")
258
+
259
+ @property
260
+ @pulumi.getter(name="staticLeases")
261
+ def static_leases(self) -> Sequence['outputs.GetServiceDhcpServerFeatureStaticLeaseResult']:
262
+ """
263
+ Configure static IP addresses
264
+ """
265
+ return pulumi.get(self, "static_leases")
266
+
267
+ @property
268
+ @pulumi.getter(name="subnetMask")
269
+ def subnet_mask(self) -> str:
270
+ """
271
+ Subnet Mask
272
+ """
273
+ return pulumi.get(self, "subnet_mask")
274
+
275
+ @property
276
+ @pulumi.getter(name="subnetMaskVariable")
277
+ def subnet_mask_variable(self) -> str:
278
+ """
279
+ Variable name
280
+ """
281
+ return pulumi.get(self, "subnet_mask_variable")
282
+
283
+ @property
284
+ @pulumi.getter(name="tftpServers")
285
+ def tftp_servers(self) -> Sequence[str]:
286
+ """
287
+ Configure TFTP server IP addresses
288
+ """
289
+ return pulumi.get(self, "tftp_servers")
290
+
291
+ @property
292
+ @pulumi.getter(name="tftpServersVariable")
293
+ def tftp_servers_variable(self) -> str:
294
+ """
295
+ Variable name
296
+ """
297
+ return pulumi.get(self, "tftp_servers_variable")
298
+
299
+ @property
300
+ @pulumi.getter
301
+ def version(self) -> int:
302
+ """
303
+ The version of the Feature
304
+ """
305
+ return pulumi.get(self, "version")
306
+
307
+
308
+ class AwaitableGetServiceDhcpServerFeatureResult(GetServiceDhcpServerFeatureResult):
309
+ # pylint: disable=using-constant-test
310
+ def __await__(self):
311
+ if False:
312
+ yield self
313
+ return GetServiceDhcpServerFeatureResult(
314
+ default_gateway=self.default_gateway,
315
+ default_gateway_variable=self.default_gateway_variable,
316
+ description=self.description,
317
+ dns_servers=self.dns_servers,
318
+ dns_servers_variable=self.dns_servers_variable,
319
+ domain_name=self.domain_name,
320
+ domain_name_variable=self.domain_name_variable,
321
+ exclude_variable=self.exclude_variable,
322
+ excludes=self.excludes,
323
+ feature_profile_id=self.feature_profile_id,
324
+ id=self.id,
325
+ interface_mtu=self.interface_mtu,
326
+ interface_mtu_variable=self.interface_mtu_variable,
327
+ lease_time=self.lease_time,
328
+ lease_time_variable=self.lease_time_variable,
329
+ name=self.name,
330
+ network_address=self.network_address,
331
+ network_address_variable=self.network_address_variable,
332
+ option_codes=self.option_codes,
333
+ static_leases=self.static_leases,
334
+ subnet_mask=self.subnet_mask,
335
+ subnet_mask_variable=self.subnet_mask_variable,
336
+ tftp_servers=self.tftp_servers,
337
+ tftp_servers_variable=self.tftp_servers_variable,
338
+ version=self.version)
339
+
340
+
341
+ def get_service_dhcp_server_feature(feature_profile_id: Optional[str] = None,
342
+ id: Optional[str] = None,
343
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceDhcpServerFeatureResult:
344
+ """
345
+ This data source can read the Service DHCP Server Feature.
346
+
347
+ ## Example Usage
348
+
349
+ ```python
350
+ import pulumi
351
+ import pulumi_sdwan as sdwan
352
+
353
+ example = sdwan.get_service_dhcp_server_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
354
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
355
+ ```
356
+
357
+
358
+ :param str feature_profile_id: Feature Profile ID
359
+ :param str id: The id of the Feature
360
+ """
361
+ __args__ = dict()
362
+ __args__['featureProfileId'] = feature_profile_id
363
+ __args__['id'] = id
364
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
365
+ __ret__ = pulumi.runtime.invoke('sdwan:index/getServiceDhcpServerFeature:getServiceDhcpServerFeature', __args__, opts=opts, typ=GetServiceDhcpServerFeatureResult).value
366
+
367
+ return AwaitableGetServiceDhcpServerFeatureResult(
368
+ default_gateway=pulumi.get(__ret__, 'default_gateway'),
369
+ default_gateway_variable=pulumi.get(__ret__, 'default_gateway_variable'),
370
+ description=pulumi.get(__ret__, 'description'),
371
+ dns_servers=pulumi.get(__ret__, 'dns_servers'),
372
+ dns_servers_variable=pulumi.get(__ret__, 'dns_servers_variable'),
373
+ domain_name=pulumi.get(__ret__, 'domain_name'),
374
+ domain_name_variable=pulumi.get(__ret__, 'domain_name_variable'),
375
+ exclude_variable=pulumi.get(__ret__, 'exclude_variable'),
376
+ excludes=pulumi.get(__ret__, 'excludes'),
377
+ feature_profile_id=pulumi.get(__ret__, 'feature_profile_id'),
378
+ id=pulumi.get(__ret__, 'id'),
379
+ interface_mtu=pulumi.get(__ret__, 'interface_mtu'),
380
+ interface_mtu_variable=pulumi.get(__ret__, 'interface_mtu_variable'),
381
+ lease_time=pulumi.get(__ret__, 'lease_time'),
382
+ lease_time_variable=pulumi.get(__ret__, 'lease_time_variable'),
383
+ name=pulumi.get(__ret__, 'name'),
384
+ network_address=pulumi.get(__ret__, 'network_address'),
385
+ network_address_variable=pulumi.get(__ret__, 'network_address_variable'),
386
+ option_codes=pulumi.get(__ret__, 'option_codes'),
387
+ static_leases=pulumi.get(__ret__, 'static_leases'),
388
+ subnet_mask=pulumi.get(__ret__, 'subnet_mask'),
389
+ subnet_mask_variable=pulumi.get(__ret__, 'subnet_mask_variable'),
390
+ tftp_servers=pulumi.get(__ret__, 'tftp_servers'),
391
+ tftp_servers_variable=pulumi.get(__ret__, 'tftp_servers_variable'),
392
+ version=pulumi.get(__ret__, 'version'))
393
+ def get_service_dhcp_server_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
394
+ id: Optional[pulumi.Input[str]] = None,
395
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceDhcpServerFeatureResult]:
396
+ """
397
+ This data source can read the Service DHCP Server Feature.
398
+
399
+ ## Example Usage
400
+
401
+ ```python
402
+ import pulumi
403
+ import pulumi_sdwan as sdwan
404
+
405
+ example = sdwan.get_service_dhcp_server_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
406
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
407
+ ```
408
+
409
+
410
+ :param str feature_profile_id: Feature Profile ID
411
+ :param str id: The id of the Feature
412
+ """
413
+ __args__ = dict()
414
+ __args__['featureProfileId'] = feature_profile_id
415
+ __args__['id'] = id
416
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
417
+ __ret__ = pulumi.runtime.invoke_output('sdwan:index/getServiceDhcpServerFeature:getServiceDhcpServerFeature', __args__, opts=opts, typ=GetServiceDhcpServerFeatureResult)
418
+ return __ret__.apply(lambda __response__: GetServiceDhcpServerFeatureResult(
419
+ default_gateway=pulumi.get(__response__, 'default_gateway'),
420
+ default_gateway_variable=pulumi.get(__response__, 'default_gateway_variable'),
421
+ description=pulumi.get(__response__, 'description'),
422
+ dns_servers=pulumi.get(__response__, 'dns_servers'),
423
+ dns_servers_variable=pulumi.get(__response__, 'dns_servers_variable'),
424
+ domain_name=pulumi.get(__response__, 'domain_name'),
425
+ domain_name_variable=pulumi.get(__response__, 'domain_name_variable'),
426
+ exclude_variable=pulumi.get(__response__, 'exclude_variable'),
427
+ excludes=pulumi.get(__response__, 'excludes'),
428
+ feature_profile_id=pulumi.get(__response__, 'feature_profile_id'),
429
+ id=pulumi.get(__response__, 'id'),
430
+ interface_mtu=pulumi.get(__response__, 'interface_mtu'),
431
+ interface_mtu_variable=pulumi.get(__response__, 'interface_mtu_variable'),
432
+ lease_time=pulumi.get(__response__, 'lease_time'),
433
+ lease_time_variable=pulumi.get(__response__, 'lease_time_variable'),
434
+ name=pulumi.get(__response__, 'name'),
435
+ network_address=pulumi.get(__response__, 'network_address'),
436
+ network_address_variable=pulumi.get(__response__, 'network_address_variable'),
437
+ option_codes=pulumi.get(__response__, 'option_codes'),
438
+ static_leases=pulumi.get(__response__, 'static_leases'),
439
+ subnet_mask=pulumi.get(__response__, 'subnet_mask'),
440
+ subnet_mask_variable=pulumi.get(__response__, 'subnet_mask_variable'),
441
+ tftp_servers=pulumi.get(__response__, 'tftp_servers'),
442
+ tftp_servers_variable=pulumi.get(__response__, 'tftp_servers_variable'),
443
+ version=pulumi.get(__response__, 'version')))
@@ -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
+ 'GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult',
19
+ 'AwaitableGetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult',
20
+ 'get_service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature',
21
+ 'get_service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult:
26
+ """
27
+ A collection of values returned by getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature.
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_ethernet_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_ethernet_feature_id and not isinstance(service_lan_vpn_interface_ethernet_feature_id, str):
43
+ raise TypeError("Expected argument 'service_lan_vpn_interface_ethernet_feature_id' to be a str")
44
+ pulumi.set(__self__, "service_lan_vpn_interface_ethernet_feature_id", service_lan_vpn_interface_ethernet_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="serviceLanVpnInterfaceEthernetFeatureId")
80
+ def service_lan_vpn_interface_ethernet_feature_id(self) -> str:
81
+ """
82
+ Service LAN VPN Interface Ethernet Feature ID
83
+ """
84
+ return pulumi.get(self, "service_lan_vpn_interface_ethernet_feature_id")
85
+
86
+
87
+ class AwaitableGetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult(GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult):
88
+ # pylint: disable=using-constant-test
89
+ def __await__(self):
90
+ if False:
91
+ yield self
92
+ return GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult(
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_ethernet_feature_id=self.service_lan_vpn_interface_ethernet_feature_id)
98
+
99
+
100
+ def get_service_lan_vpn_interface_ethernet_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_ethernet_feature_id: Optional[str] = None,
104
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult:
105
+ """
106
+ This data source can read the Service LAN VPN Interface Ethernet 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_ethernet_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_ethernet_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_ethernet_feature_id: Service LAN VPN Interface Ethernet 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__['serviceLanVpnInterfaceEthernetFeatureId'] = service_lan_vpn_interface_ethernet_feature_id
131
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
132
+ __ret__ = pulumi.runtime.invoke('sdwan:index/getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature:getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature', __args__, opts=opts, typ=GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult).value
133
+
134
+ return AwaitableGetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult(
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_ethernet_feature_id=pulumi.get(__ret__, 'service_lan_vpn_interface_ethernet_feature_id'))
140
+ def get_service_lan_vpn_interface_ethernet_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_ethernet_feature_id: Optional[pulumi.Input[str]] = None,
144
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult]:
145
+ """
146
+ This data source can read the Service LAN VPN Interface Ethernet 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_ethernet_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_ethernet_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_ethernet_feature_id: Service LAN VPN Interface Ethernet 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__['serviceLanVpnInterfaceEthernetFeatureId'] = service_lan_vpn_interface_ethernet_feature_id
171
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
172
+ __ret__ = pulumi.runtime.invoke_output('sdwan:index/getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature:getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature', __args__, opts=opts, typ=GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult)
173
+ return __ret__.apply(lambda __response__: GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult(
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_ethernet_feature_id=pulumi.get(__response__, 'service_lan_vpn_interface_ethernet_feature_id')))