pulumi-sdwan 0.5.0a1760375805__py3-none-any.whl → 0.6.0a1760424951__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/_inputs.py +125 -45
- pulumi_sdwan/application_priority_qos_policy.py +48 -48
- pulumi_sdwan/config/__init__.pyi +5 -0
- pulumi_sdwan/config/vars.py +7 -0
- pulumi_sdwan/get_application_priority_qos_policy.py +15 -15
- pulumi_sdwan/get_security_policy.py +18 -18
- pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature.py +29 -29
- pulumi_sdwan/outputs.py +162 -69
- pulumi_sdwan/port_list_policy_object.py +2 -2
- pulumi_sdwan/provider.py +20 -0
- pulumi_sdwan/pulumi-plugin.json +1 -1
- pulumi_sdwan/security_policy.py +105 -84
- pulumi_sdwan/service_lan_vpn_interface_ethernet_feature.py +220 -192
- {pulumi_sdwan-0.5.0a1760375805.dist-info → pulumi_sdwan-0.6.0a1760424951.dist-info}/METADATA +1 -1
- {pulumi_sdwan-0.5.0a1760375805.dist-info → pulumi_sdwan-0.6.0a1760424951.dist-info}/RECORD +17 -17
- {pulumi_sdwan-0.5.0a1760375805.dist-info → pulumi_sdwan-0.6.0a1760424951.dist-info}/WHEEL +0 -0
- {pulumi_sdwan-0.5.0a1760375805.dist-info → pulumi_sdwan-0.6.0a1760424951.dist-info}/top_level.txt +0 -0
pulumi_sdwan/config/vars.py
CHANGED
|
@@ -41,6 +41,13 @@ class _ExportableConfig(types.ModuleType):
|
|
|
41
41
|
"""
|
|
42
42
|
return __config__.get_int('retries')
|
|
43
43
|
|
|
44
|
+
@_builtins.property
|
|
45
|
+
def task_timeout(self) -> Optional[int]:
|
|
46
|
+
"""
|
|
47
|
+
Timeout in seconds for asynchronous tasks. This can also be set as the `SDWAN_TASK_TIMEOUT` environment variable. Defaults to `1500`.
|
|
48
|
+
"""
|
|
49
|
+
return __config__.get_int('taskTimeout')
|
|
50
|
+
|
|
44
51
|
@_builtins.property
|
|
45
52
|
def url(self) -> Optional[str]:
|
|
46
53
|
"""
|
|
@@ -27,7 +27,7 @@ class GetApplicationPriorityQosPolicyResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getApplicationPriorityQosPolicy.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, description=None, feature_profile_id=None, id=None, name=None, qos_schedulers=None,
|
|
30
|
+
def __init__(__self__, description=None, feature_profile_id=None, id=None, name=None, qos_schedulers=None, target_interfaces=None, target_interfaces_variable=None, version=None):
|
|
31
31
|
if description and not isinstance(description, str):
|
|
32
32
|
raise TypeError("Expected argument 'description' to be a str")
|
|
33
33
|
pulumi.set(__self__, "description", description)
|
|
@@ -43,12 +43,12 @@ class GetApplicationPriorityQosPolicyResult:
|
|
|
43
43
|
if qos_schedulers and not isinstance(qos_schedulers, list):
|
|
44
44
|
raise TypeError("Expected argument 'qos_schedulers' to be a list")
|
|
45
45
|
pulumi.set(__self__, "qos_schedulers", qos_schedulers)
|
|
46
|
-
if target_interface_variable and not isinstance(target_interface_variable, str):
|
|
47
|
-
raise TypeError("Expected argument 'target_interface_variable' to be a str")
|
|
48
|
-
pulumi.set(__self__, "target_interface_variable", target_interface_variable)
|
|
49
46
|
if target_interfaces and not isinstance(target_interfaces, list):
|
|
50
47
|
raise TypeError("Expected argument 'target_interfaces' to be a list")
|
|
51
48
|
pulumi.set(__self__, "target_interfaces", target_interfaces)
|
|
49
|
+
if target_interfaces_variable and not isinstance(target_interfaces_variable, str):
|
|
50
|
+
raise TypeError("Expected argument 'target_interfaces_variable' to be a str")
|
|
51
|
+
pulumi.set(__self__, "target_interfaces_variable", target_interfaces_variable)
|
|
52
52
|
if version and not isinstance(version, int):
|
|
53
53
|
raise TypeError("Expected argument 'version' to be a int")
|
|
54
54
|
pulumi.set(__self__, "version", version)
|
|
@@ -93,14 +93,6 @@ class GetApplicationPriorityQosPolicyResult:
|
|
|
93
93
|
"""
|
|
94
94
|
return pulumi.get(self, "qos_schedulers")
|
|
95
95
|
|
|
96
|
-
@_builtins.property
|
|
97
|
-
@pulumi.getter(name="targetInterfaceVariable")
|
|
98
|
-
def target_interface_variable(self) -> _builtins.str:
|
|
99
|
-
"""
|
|
100
|
-
Variable name
|
|
101
|
-
"""
|
|
102
|
-
return pulumi.get(self, "target_interface_variable")
|
|
103
|
-
|
|
104
96
|
@_builtins.property
|
|
105
97
|
@pulumi.getter(name="targetInterfaces")
|
|
106
98
|
def target_interfaces(self) -> Sequence[_builtins.str]:
|
|
@@ -109,6 +101,14 @@ class GetApplicationPriorityQosPolicyResult:
|
|
|
109
101
|
"""
|
|
110
102
|
return pulumi.get(self, "target_interfaces")
|
|
111
103
|
|
|
104
|
+
@_builtins.property
|
|
105
|
+
@pulumi.getter(name="targetInterfacesVariable")
|
|
106
|
+
def target_interfaces_variable(self) -> _builtins.str:
|
|
107
|
+
"""
|
|
108
|
+
Variable name
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "target_interfaces_variable")
|
|
111
|
+
|
|
112
112
|
@_builtins.property
|
|
113
113
|
@pulumi.getter
|
|
114
114
|
def version(self) -> _builtins.int:
|
|
@@ -129,8 +129,8 @@ class AwaitableGetApplicationPriorityQosPolicyResult(GetApplicationPriorityQosPo
|
|
|
129
129
|
id=self.id,
|
|
130
130
|
name=self.name,
|
|
131
131
|
qos_schedulers=self.qos_schedulers,
|
|
132
|
-
target_interface_variable=self.target_interface_variable,
|
|
133
132
|
target_interfaces=self.target_interfaces,
|
|
133
|
+
target_interfaces_variable=self.target_interfaces_variable,
|
|
134
134
|
version=self.version)
|
|
135
135
|
|
|
136
136
|
|
|
@@ -166,8 +166,8 @@ def get_application_priority_qos_policy(feature_profile_id: Optional[_builtins.s
|
|
|
166
166
|
id=pulumi.get(__ret__, 'id'),
|
|
167
167
|
name=pulumi.get(__ret__, 'name'),
|
|
168
168
|
qos_schedulers=pulumi.get(__ret__, 'qos_schedulers'),
|
|
169
|
-
target_interface_variable=pulumi.get(__ret__, 'target_interface_variable'),
|
|
170
169
|
target_interfaces=pulumi.get(__ret__, 'target_interfaces'),
|
|
170
|
+
target_interfaces_variable=pulumi.get(__ret__, 'target_interfaces_variable'),
|
|
171
171
|
version=pulumi.get(__ret__, 'version'))
|
|
172
172
|
def get_application_priority_qos_policy_output(feature_profile_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
173
173
|
id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -200,6 +200,6 @@ def get_application_priority_qos_policy_output(feature_profile_id: Optional[pulu
|
|
|
200
200
|
id=pulumi.get(__response__, 'id'),
|
|
201
201
|
name=pulumi.get(__response__, 'name'),
|
|
202
202
|
qos_schedulers=pulumi.get(__response__, 'qos_schedulers'),
|
|
203
|
-
target_interface_variable=pulumi.get(__response__, 'target_interface_variable'),
|
|
204
203
|
target_interfaces=pulumi.get(__response__, 'target_interfaces'),
|
|
204
|
+
target_interfaces_variable=pulumi.get(__response__, 'target_interfaces_variable'),
|
|
205
205
|
version=pulumi.get(__response__, 'version')))
|
|
@@ -58,8 +58,8 @@ class GetSecurityPolicyResult:
|
|
|
58
58
|
if id and not isinstance(id, str):
|
|
59
59
|
raise TypeError("Expected argument 'id' to be a str")
|
|
60
60
|
pulumi.set(__self__, "id", id)
|
|
61
|
-
if imcp_unreachable_allow and not isinstance(imcp_unreachable_allow,
|
|
62
|
-
raise TypeError("Expected argument 'imcp_unreachable_allow' to be a
|
|
61
|
+
if imcp_unreachable_allow and not isinstance(imcp_unreachable_allow, str):
|
|
62
|
+
raise TypeError("Expected argument 'imcp_unreachable_allow' to be a str")
|
|
63
63
|
pulumi.set(__self__, "imcp_unreachable_allow", imcp_unreachable_allow)
|
|
64
64
|
if loggings and not isinstance(loggings, list):
|
|
65
65
|
raise TypeError("Expected argument 'loggings' to be a list")
|
|
@@ -67,14 +67,14 @@ class GetSecurityPolicyResult:
|
|
|
67
67
|
if match_statistics_per_filter and not isinstance(match_statistics_per_filter, str):
|
|
68
68
|
raise TypeError("Expected argument 'match_statistics_per_filter' to be a str")
|
|
69
69
|
pulumi.set(__self__, "match_statistics_per_filter", match_statistics_per_filter)
|
|
70
|
-
if max_incomplete_icmp_limit and not isinstance(max_incomplete_icmp_limit,
|
|
71
|
-
raise TypeError("Expected argument 'max_incomplete_icmp_limit' to be a
|
|
70
|
+
if max_incomplete_icmp_limit and not isinstance(max_incomplete_icmp_limit, str):
|
|
71
|
+
raise TypeError("Expected argument 'max_incomplete_icmp_limit' to be a str")
|
|
72
72
|
pulumi.set(__self__, "max_incomplete_icmp_limit", max_incomplete_icmp_limit)
|
|
73
|
-
if max_incomplete_tcp_limit and not isinstance(max_incomplete_tcp_limit,
|
|
74
|
-
raise TypeError("Expected argument 'max_incomplete_tcp_limit' to be a
|
|
73
|
+
if max_incomplete_tcp_limit and not isinstance(max_incomplete_tcp_limit, str):
|
|
74
|
+
raise TypeError("Expected argument 'max_incomplete_tcp_limit' to be a str")
|
|
75
75
|
pulumi.set(__self__, "max_incomplete_tcp_limit", max_incomplete_tcp_limit)
|
|
76
|
-
if max_incomplete_udp_limit and not isinstance(max_incomplete_udp_limit,
|
|
77
|
-
raise TypeError("Expected argument 'max_incomplete_udp_limit' to be a
|
|
76
|
+
if max_incomplete_udp_limit and not isinstance(max_incomplete_udp_limit, str):
|
|
77
|
+
raise TypeError("Expected argument 'max_incomplete_udp_limit' to be a str")
|
|
78
78
|
pulumi.set(__self__, "max_incomplete_udp_limit", max_incomplete_udp_limit)
|
|
79
79
|
if mode and not isinstance(mode, str):
|
|
80
80
|
raise TypeError("Expected argument 'mode' to be a str")
|
|
@@ -82,14 +82,14 @@ class GetSecurityPolicyResult:
|
|
|
82
82
|
if name and not isinstance(name, str):
|
|
83
83
|
raise TypeError("Expected argument 'name' to be a str")
|
|
84
84
|
pulumi.set(__self__, "name", name)
|
|
85
|
-
if session_reclassify_allow and not isinstance(session_reclassify_allow,
|
|
86
|
-
raise TypeError("Expected argument 'session_reclassify_allow' to be a
|
|
85
|
+
if session_reclassify_allow and not isinstance(session_reclassify_allow, str):
|
|
86
|
+
raise TypeError("Expected argument 'session_reclassify_allow' to be a str")
|
|
87
87
|
pulumi.set(__self__, "session_reclassify_allow", session_reclassify_allow)
|
|
88
88
|
if tcp_syn_flood_limit and not isinstance(tcp_syn_flood_limit, str):
|
|
89
89
|
raise TypeError("Expected argument 'tcp_syn_flood_limit' to be a str")
|
|
90
90
|
pulumi.set(__self__, "tcp_syn_flood_limit", tcp_syn_flood_limit)
|
|
91
|
-
if unified_logging and not isinstance(unified_logging,
|
|
92
|
-
raise TypeError("Expected argument 'unified_logging' to be a
|
|
91
|
+
if unified_logging and not isinstance(unified_logging, str):
|
|
92
|
+
raise TypeError("Expected argument 'unified_logging' to be a str")
|
|
93
93
|
pulumi.set(__self__, "unified_logging", unified_logging)
|
|
94
94
|
if use_case and not isinstance(use_case, str):
|
|
95
95
|
raise TypeError("Expected argument 'use_case' to be a str")
|
|
@@ -180,7 +180,7 @@ class GetSecurityPolicyResult:
|
|
|
180
180
|
|
|
181
181
|
@_builtins.property
|
|
182
182
|
@pulumi.getter(name="imcpUnreachableAllow")
|
|
183
|
-
def imcp_unreachable_allow(self) -> _builtins.
|
|
183
|
+
def imcp_unreachable_allow(self) -> _builtins.str:
|
|
184
184
|
"""
|
|
185
185
|
ICMP Unreachable Allow
|
|
186
186
|
"""
|
|
@@ -201,7 +201,7 @@ class GetSecurityPolicyResult:
|
|
|
201
201
|
|
|
202
202
|
@_builtins.property
|
|
203
203
|
@pulumi.getter(name="maxIncompleteIcmpLimit")
|
|
204
|
-
def max_incomplete_icmp_limit(self) -> _builtins.
|
|
204
|
+
def max_incomplete_icmp_limit(self) -> _builtins.str:
|
|
205
205
|
"""
|
|
206
206
|
Max Incomplete ICMP Limit
|
|
207
207
|
"""
|
|
@@ -209,7 +209,7 @@ class GetSecurityPolicyResult:
|
|
|
209
209
|
|
|
210
210
|
@_builtins.property
|
|
211
211
|
@pulumi.getter(name="maxIncompleteTcpLimit")
|
|
212
|
-
def max_incomplete_tcp_limit(self) -> _builtins.
|
|
212
|
+
def max_incomplete_tcp_limit(self) -> _builtins.str:
|
|
213
213
|
"""
|
|
214
214
|
Max Incomplete TCP Limit
|
|
215
215
|
"""
|
|
@@ -217,7 +217,7 @@ class GetSecurityPolicyResult:
|
|
|
217
217
|
|
|
218
218
|
@_builtins.property
|
|
219
219
|
@pulumi.getter(name="maxIncompleteUdpLimit")
|
|
220
|
-
def max_incomplete_udp_limit(self) -> _builtins.
|
|
220
|
+
def max_incomplete_udp_limit(self) -> _builtins.str:
|
|
221
221
|
"""
|
|
222
222
|
Max Incomplete UDP Limit
|
|
223
223
|
"""
|
|
@@ -241,7 +241,7 @@ class GetSecurityPolicyResult:
|
|
|
241
241
|
|
|
242
242
|
@_builtins.property
|
|
243
243
|
@pulumi.getter(name="sessionReclassifyAllow")
|
|
244
|
-
def session_reclassify_allow(self) -> _builtins.
|
|
244
|
+
def session_reclassify_allow(self) -> _builtins.str:
|
|
245
245
|
"""
|
|
246
246
|
Session Reclassify Allow
|
|
247
247
|
"""
|
|
@@ -257,7 +257,7 @@ class GetSecurityPolicyResult:
|
|
|
257
257
|
|
|
258
258
|
@_builtins.property
|
|
259
259
|
@pulumi.getter(name="unifiedLogging")
|
|
260
|
-
def unified_logging(self) -> _builtins.
|
|
260
|
+
def unified_logging(self) -> _builtins.str:
|
|
261
261
|
"""
|
|
262
262
|
Unified Logging
|
|
263
263
|
"""
|
|
@@ -27,7 +27,7 @@ class GetServiceLanVpnInterfaceEthernetFeatureResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getServiceLanVpnInterfaceEthernetFeature.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, acl_ipv4_egress_policy_id=None, acl_ipv4_ingress_policy_id=None, acl_ipv6_egress_policy_id=None, acl_ipv6_ingress_policy_id=None, acl_shaping_rate=None, acl_shaping_rate_variable=None, arp_timeout=None, arp_timeout_variable=None, arps=None, autonegotiate=None, autonegotiate_variable=None, description=None, duplex=None, duplex_variable=None, enable_dhcpv6=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_distance=None, ipv4_dhcp_distance_variable=None, ipv4_dhcp_helper_variable=None, ipv4_dhcp_helpers=None, ipv4_nat=None, ipv4_nat_loopback=None, ipv4_nat_loopback_variable=None, ipv4_nat_overload=None, ipv4_nat_overload_variable=None, ipv4_nat_prefix_length=None, ipv4_nat_prefix_length_variable=None, ipv4_nat_range_end=None, ipv4_nat_range_end_variable=None, ipv4_nat_range_start=None, ipv4_nat_range_start_variable=None, ipv4_nat_tcp_timeout=None, ipv4_nat_tcp_timeout_variable=None,
|
|
30
|
+
def __init__(__self__, acl_ipv4_egress_policy_id=None, acl_ipv4_ingress_policy_id=None, acl_ipv6_egress_policy_id=None, acl_ipv6_ingress_policy_id=None, acl_shaping_rate=None, acl_shaping_rate_variable=None, arp_timeout=None, arp_timeout_variable=None, arps=None, autonegotiate=None, autonegotiate_variable=None, description=None, duplex=None, duplex_variable=None, enable_dhcpv6=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_configuration_type=None, ipv4_dhcp_distance=None, ipv4_dhcp_distance_variable=None, ipv4_dhcp_helper_variable=None, ipv4_dhcp_helpers=None, ipv4_nat=None, ipv4_nat_loopback=None, ipv4_nat_loopback_variable=None, ipv4_nat_overload=None, ipv4_nat_overload_variable=None, ipv4_nat_prefix_length=None, ipv4_nat_prefix_length_variable=None, ipv4_nat_range_end=None, ipv4_nat_range_end_variable=None, ipv4_nat_range_start=None, ipv4_nat_range_start_variable=None, ipv4_nat_tcp_timeout=None, ipv4_nat_tcp_timeout_variable=None, ipv4_nat_udp_timeout=None, ipv4_nat_udp_timeout_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_configuration_type=None, ipv6_dhcp_helpers=None, ipv6_dhcp_secondary_addresses=None, ipv6_nat=None, ipv6_secondary_addresses=None, ipv6_vrrps=None, load_interval=None, load_interval_variable=None, mac_address=None, mac_address_variable=None, media_type=None, media_type_variable=None, name=None, nat64=None, service_lan_vpn_feature_id=None, shutdown=None, shutdown_variable=None, speed=None, speed_variable=None, static_nats=None, tcp_mss=None, tcp_mss_variable=None, tracker=None, tracker_variable=None, trustsec_enable_enforced_propogation=None, trustsec_enable_sgt_propogation=None, trustsec_enforced_security_group_tag=None, trustsec_enforced_security_group_tag_variable=None, trustsec_propogate=None, trustsec_security_group_tag=None, trustsec_security_group_tag_variable=None, version=None, xconnect=None, xconnect_variable=None):
|
|
31
31
|
if acl_ipv4_egress_policy_id and not isinstance(acl_ipv4_egress_policy_id, str):
|
|
32
32
|
raise TypeError("Expected argument 'acl_ipv4_egress_policy_id' to be a str")
|
|
33
33
|
pulumi.set(__self__, "acl_ipv4_egress_policy_id", acl_ipv4_egress_policy_id)
|
|
@@ -121,6 +121,9 @@ class GetServiceLanVpnInterfaceEthernetFeatureResult:
|
|
|
121
121
|
if ipv4_address_variable and not isinstance(ipv4_address_variable, str):
|
|
122
122
|
raise TypeError("Expected argument 'ipv4_address_variable' to be a str")
|
|
123
123
|
pulumi.set(__self__, "ipv4_address_variable", ipv4_address_variable)
|
|
124
|
+
if ipv4_configuration_type and not isinstance(ipv4_configuration_type, str):
|
|
125
|
+
raise TypeError("Expected argument 'ipv4_configuration_type' to be a str")
|
|
126
|
+
pulumi.set(__self__, "ipv4_configuration_type", ipv4_configuration_type)
|
|
124
127
|
if ipv4_dhcp_distance and not isinstance(ipv4_dhcp_distance, int):
|
|
125
128
|
raise TypeError("Expected argument 'ipv4_dhcp_distance' to be a int")
|
|
126
129
|
pulumi.set(__self__, "ipv4_dhcp_distance", ipv4_dhcp_distance)
|
|
@@ -172,12 +175,6 @@ class GetServiceLanVpnInterfaceEthernetFeatureResult:
|
|
|
172
175
|
if ipv4_nat_tcp_timeout_variable and not isinstance(ipv4_nat_tcp_timeout_variable, str):
|
|
173
176
|
raise TypeError("Expected argument 'ipv4_nat_tcp_timeout_variable' to be a str")
|
|
174
177
|
pulumi.set(__self__, "ipv4_nat_tcp_timeout_variable", ipv4_nat_tcp_timeout_variable)
|
|
175
|
-
if ipv4_nat_type and not isinstance(ipv4_nat_type, str):
|
|
176
|
-
raise TypeError("Expected argument 'ipv4_nat_type' to be a str")
|
|
177
|
-
pulumi.set(__self__, "ipv4_nat_type", ipv4_nat_type)
|
|
178
|
-
if ipv4_nat_type_variable and not isinstance(ipv4_nat_type_variable, str):
|
|
179
|
-
raise TypeError("Expected argument 'ipv4_nat_type_variable' to be a str")
|
|
180
|
-
pulumi.set(__self__, "ipv4_nat_type_variable", ipv4_nat_type_variable)
|
|
181
178
|
if ipv4_nat_udp_timeout and not isinstance(ipv4_nat_udp_timeout, int):
|
|
182
179
|
raise TypeError("Expected argument 'ipv4_nat_udp_timeout' to be a int")
|
|
183
180
|
pulumi.set(__self__, "ipv4_nat_udp_timeout", ipv4_nat_udp_timeout)
|
|
@@ -202,6 +199,9 @@ class GetServiceLanVpnInterfaceEthernetFeatureResult:
|
|
|
202
199
|
if ipv6_address_variable and not isinstance(ipv6_address_variable, str):
|
|
203
200
|
raise TypeError("Expected argument 'ipv6_address_variable' to be a str")
|
|
204
201
|
pulumi.set(__self__, "ipv6_address_variable", ipv6_address_variable)
|
|
202
|
+
if ipv6_configuration_type and not isinstance(ipv6_configuration_type, str):
|
|
203
|
+
raise TypeError("Expected argument 'ipv6_configuration_type' to be a str")
|
|
204
|
+
pulumi.set(__self__, "ipv6_configuration_type", ipv6_configuration_type)
|
|
205
205
|
if ipv6_dhcp_helpers and not isinstance(ipv6_dhcp_helpers, list):
|
|
206
206
|
raise TypeError("Expected argument 'ipv6_dhcp_helpers' to be a list")
|
|
207
207
|
pulumi.set(__self__, "ipv6_dhcp_helpers", ipv6_dhcp_helpers)
|
|
@@ -532,6 +532,14 @@ class GetServiceLanVpnInterfaceEthernetFeatureResult:
|
|
|
532
532
|
"""
|
|
533
533
|
return pulumi.get(self, "ipv4_address_variable")
|
|
534
534
|
|
|
535
|
+
@_builtins.property
|
|
536
|
+
@pulumi.getter(name="ipv4ConfigurationType")
|
|
537
|
+
def ipv4_configuration_type(self) -> _builtins.str:
|
|
538
|
+
"""
|
|
539
|
+
IPv4 Configuration Type
|
|
540
|
+
"""
|
|
541
|
+
return pulumi.get(self, "ipv4_configuration_type")
|
|
542
|
+
|
|
535
543
|
@_builtins.property
|
|
536
544
|
@pulumi.getter(name="ipv4DhcpDistance")
|
|
537
545
|
def ipv4_dhcp_distance(self) -> _builtins.int:
|
|
@@ -668,22 +676,6 @@ class GetServiceLanVpnInterfaceEthernetFeatureResult:
|
|
|
668
676
|
"""
|
|
669
677
|
return pulumi.get(self, "ipv4_nat_tcp_timeout_variable")
|
|
670
678
|
|
|
671
|
-
@_builtins.property
|
|
672
|
-
@pulumi.getter(name="ipv4NatType")
|
|
673
|
-
def ipv4_nat_type(self) -> _builtins.str:
|
|
674
|
-
"""
|
|
675
|
-
NAT Type
|
|
676
|
-
"""
|
|
677
|
-
return pulumi.get(self, "ipv4_nat_type")
|
|
678
|
-
|
|
679
|
-
@_builtins.property
|
|
680
|
-
@pulumi.getter(name="ipv4NatTypeVariable")
|
|
681
|
-
def ipv4_nat_type_variable(self) -> _builtins.str:
|
|
682
|
-
"""
|
|
683
|
-
Variable name
|
|
684
|
-
"""
|
|
685
|
-
return pulumi.get(self, "ipv4_nat_type_variable")
|
|
686
|
-
|
|
687
679
|
@_builtins.property
|
|
688
680
|
@pulumi.getter(name="ipv4NatUdpTimeout")
|
|
689
681
|
def ipv4_nat_udp_timeout(self) -> _builtins.int:
|
|
@@ -748,6 +740,14 @@ class GetServiceLanVpnInterfaceEthernetFeatureResult:
|
|
|
748
740
|
"""
|
|
749
741
|
return pulumi.get(self, "ipv6_address_variable")
|
|
750
742
|
|
|
743
|
+
@_builtins.property
|
|
744
|
+
@pulumi.getter(name="ipv6ConfigurationType")
|
|
745
|
+
def ipv6_configuration_type(self) -> _builtins.str:
|
|
746
|
+
"""
|
|
747
|
+
IPv6 Configuration Type
|
|
748
|
+
"""
|
|
749
|
+
return pulumi.get(self, "ipv6_configuration_type")
|
|
750
|
+
|
|
751
751
|
@_builtins.property
|
|
752
752
|
@pulumi.getter(name="ipv6DhcpHelpers")
|
|
753
753
|
def ipv6_dhcp_helpers(self) -> Sequence['outputs.GetServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperResult']:
|
|
@@ -1047,6 +1047,7 @@ class AwaitableGetServiceLanVpnInterfaceEthernetFeatureResult(GetServiceLanVpnIn
|
|
|
1047
1047
|
ip_mtu_variable=self.ip_mtu_variable,
|
|
1048
1048
|
ipv4_address=self.ipv4_address,
|
|
1049
1049
|
ipv4_address_variable=self.ipv4_address_variable,
|
|
1050
|
+
ipv4_configuration_type=self.ipv4_configuration_type,
|
|
1050
1051
|
ipv4_dhcp_distance=self.ipv4_dhcp_distance,
|
|
1051
1052
|
ipv4_dhcp_distance_variable=self.ipv4_dhcp_distance_variable,
|
|
1052
1053
|
ipv4_dhcp_helper_variable=self.ipv4_dhcp_helper_variable,
|
|
@@ -1064,8 +1065,6 @@ class AwaitableGetServiceLanVpnInterfaceEthernetFeatureResult(GetServiceLanVpnIn
|
|
|
1064
1065
|
ipv4_nat_range_start_variable=self.ipv4_nat_range_start_variable,
|
|
1065
1066
|
ipv4_nat_tcp_timeout=self.ipv4_nat_tcp_timeout,
|
|
1066
1067
|
ipv4_nat_tcp_timeout_variable=self.ipv4_nat_tcp_timeout_variable,
|
|
1067
|
-
ipv4_nat_type=self.ipv4_nat_type,
|
|
1068
|
-
ipv4_nat_type_variable=self.ipv4_nat_type_variable,
|
|
1069
1068
|
ipv4_nat_udp_timeout=self.ipv4_nat_udp_timeout,
|
|
1070
1069
|
ipv4_nat_udp_timeout_variable=self.ipv4_nat_udp_timeout_variable,
|
|
1071
1070
|
ipv4_secondary_addresses=self.ipv4_secondary_addresses,
|
|
@@ -1074,6 +1073,7 @@ class AwaitableGetServiceLanVpnInterfaceEthernetFeatureResult(GetServiceLanVpnIn
|
|
|
1074
1073
|
ipv4_vrrps=self.ipv4_vrrps,
|
|
1075
1074
|
ipv6_address=self.ipv6_address,
|
|
1076
1075
|
ipv6_address_variable=self.ipv6_address_variable,
|
|
1076
|
+
ipv6_configuration_type=self.ipv6_configuration_type,
|
|
1077
1077
|
ipv6_dhcp_helpers=self.ipv6_dhcp_helpers,
|
|
1078
1078
|
ipv6_dhcp_secondary_addresses=self.ipv6_dhcp_secondary_addresses,
|
|
1079
1079
|
ipv6_nat=self.ipv6_nat,
|
|
@@ -1171,6 +1171,7 @@ def get_service_lan_vpn_interface_ethernet_feature(feature_profile_id: Optional[
|
|
|
1171
1171
|
ip_mtu_variable=pulumi.get(__ret__, 'ip_mtu_variable'),
|
|
1172
1172
|
ipv4_address=pulumi.get(__ret__, 'ipv4_address'),
|
|
1173
1173
|
ipv4_address_variable=pulumi.get(__ret__, 'ipv4_address_variable'),
|
|
1174
|
+
ipv4_configuration_type=pulumi.get(__ret__, 'ipv4_configuration_type'),
|
|
1174
1175
|
ipv4_dhcp_distance=pulumi.get(__ret__, 'ipv4_dhcp_distance'),
|
|
1175
1176
|
ipv4_dhcp_distance_variable=pulumi.get(__ret__, 'ipv4_dhcp_distance_variable'),
|
|
1176
1177
|
ipv4_dhcp_helper_variable=pulumi.get(__ret__, 'ipv4_dhcp_helper_variable'),
|
|
@@ -1188,8 +1189,6 @@ def get_service_lan_vpn_interface_ethernet_feature(feature_profile_id: Optional[
|
|
|
1188
1189
|
ipv4_nat_range_start_variable=pulumi.get(__ret__, 'ipv4_nat_range_start_variable'),
|
|
1189
1190
|
ipv4_nat_tcp_timeout=pulumi.get(__ret__, 'ipv4_nat_tcp_timeout'),
|
|
1190
1191
|
ipv4_nat_tcp_timeout_variable=pulumi.get(__ret__, 'ipv4_nat_tcp_timeout_variable'),
|
|
1191
|
-
ipv4_nat_type=pulumi.get(__ret__, 'ipv4_nat_type'),
|
|
1192
|
-
ipv4_nat_type_variable=pulumi.get(__ret__, 'ipv4_nat_type_variable'),
|
|
1193
1192
|
ipv4_nat_udp_timeout=pulumi.get(__ret__, 'ipv4_nat_udp_timeout'),
|
|
1194
1193
|
ipv4_nat_udp_timeout_variable=pulumi.get(__ret__, 'ipv4_nat_udp_timeout_variable'),
|
|
1195
1194
|
ipv4_secondary_addresses=pulumi.get(__ret__, 'ipv4_secondary_addresses'),
|
|
@@ -1198,6 +1197,7 @@ def get_service_lan_vpn_interface_ethernet_feature(feature_profile_id: Optional[
|
|
|
1198
1197
|
ipv4_vrrps=pulumi.get(__ret__, 'ipv4_vrrps'),
|
|
1199
1198
|
ipv6_address=pulumi.get(__ret__, 'ipv6_address'),
|
|
1200
1199
|
ipv6_address_variable=pulumi.get(__ret__, 'ipv6_address_variable'),
|
|
1200
|
+
ipv6_configuration_type=pulumi.get(__ret__, 'ipv6_configuration_type'),
|
|
1201
1201
|
ipv6_dhcp_helpers=pulumi.get(__ret__, 'ipv6_dhcp_helpers'),
|
|
1202
1202
|
ipv6_dhcp_secondary_addresses=pulumi.get(__ret__, 'ipv6_dhcp_secondary_addresses'),
|
|
1203
1203
|
ipv6_nat=pulumi.get(__ret__, 'ipv6_nat'),
|
|
@@ -1292,6 +1292,7 @@ def get_service_lan_vpn_interface_ethernet_feature_output(feature_profile_id: Op
|
|
|
1292
1292
|
ip_mtu_variable=pulumi.get(__response__, 'ip_mtu_variable'),
|
|
1293
1293
|
ipv4_address=pulumi.get(__response__, 'ipv4_address'),
|
|
1294
1294
|
ipv4_address_variable=pulumi.get(__response__, 'ipv4_address_variable'),
|
|
1295
|
+
ipv4_configuration_type=pulumi.get(__response__, 'ipv4_configuration_type'),
|
|
1295
1296
|
ipv4_dhcp_distance=pulumi.get(__response__, 'ipv4_dhcp_distance'),
|
|
1296
1297
|
ipv4_dhcp_distance_variable=pulumi.get(__response__, 'ipv4_dhcp_distance_variable'),
|
|
1297
1298
|
ipv4_dhcp_helper_variable=pulumi.get(__response__, 'ipv4_dhcp_helper_variable'),
|
|
@@ -1309,8 +1310,6 @@ def get_service_lan_vpn_interface_ethernet_feature_output(feature_profile_id: Op
|
|
|
1309
1310
|
ipv4_nat_range_start_variable=pulumi.get(__response__, 'ipv4_nat_range_start_variable'),
|
|
1310
1311
|
ipv4_nat_tcp_timeout=pulumi.get(__response__, 'ipv4_nat_tcp_timeout'),
|
|
1311
1312
|
ipv4_nat_tcp_timeout_variable=pulumi.get(__response__, 'ipv4_nat_tcp_timeout_variable'),
|
|
1312
|
-
ipv4_nat_type=pulumi.get(__response__, 'ipv4_nat_type'),
|
|
1313
|
-
ipv4_nat_type_variable=pulumi.get(__response__, 'ipv4_nat_type_variable'),
|
|
1314
1313
|
ipv4_nat_udp_timeout=pulumi.get(__response__, 'ipv4_nat_udp_timeout'),
|
|
1315
1314
|
ipv4_nat_udp_timeout_variable=pulumi.get(__response__, 'ipv4_nat_udp_timeout_variable'),
|
|
1316
1315
|
ipv4_secondary_addresses=pulumi.get(__response__, 'ipv4_secondary_addresses'),
|
|
@@ -1319,6 +1318,7 @@ def get_service_lan_vpn_interface_ethernet_feature_output(feature_profile_id: Op
|
|
|
1319
1318
|
ipv4_vrrps=pulumi.get(__response__, 'ipv4_vrrps'),
|
|
1320
1319
|
ipv6_address=pulumi.get(__response__, 'ipv6_address'),
|
|
1321
1320
|
ipv6_address_variable=pulumi.get(__response__, 'ipv6_address_variable'),
|
|
1321
|
+
ipv6_configuration_type=pulumi.get(__response__, 'ipv6_configuration_type'),
|
|
1322
1322
|
ipv6_dhcp_helpers=pulumi.get(__response__, 'ipv6_dhcp_helpers'),
|
|
1323
1323
|
ipv6_dhcp_secondary_addresses=pulumi.get(__response__, 'ipv6_dhcp_secondary_addresses'),
|
|
1324
1324
|
ipv6_nat=pulumi.get(__response__, 'ipv6_nat'),
|