pulumi-sdwan 0.3.0a1736835519__py3-none-any.whl → 0.3.0a1737094531__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 +60 -0
- pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +178 -0
- pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +178 -0
- pulumi_sdwan/pulumi-plugin.json +1 -1
- pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +335 -0
- pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +335 -0
- {pulumi_sdwan-0.3.0a1736835519.dist-info → pulumi_sdwan-0.3.0a1737094531.dist-info}/METADATA +1 -1
- {pulumi_sdwan-0.3.0a1736835519.dist-info → pulumi_sdwan-0.3.0a1737094531.dist-info}/RECORD +18 -6
- {pulumi_sdwan-0.3.0a1736835519.dist-info → pulumi_sdwan-0.3.0a1737094531.dist-info}/WHEEL +0 -0
- {pulumi_sdwan-0.3.0a1736835519.dist-info → pulumi_sdwan-0.3.0a1737094531.dist-info}/top_level.txt +0 -0
pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py
ADDED
|
@@ -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
|
+
'GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult',
|
|
19
|
+
'AwaitableGetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult',
|
|
20
|
+
'get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature',
|
|
21
|
+
'get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, feature_profile_id=None, id=None, transport_tracker_group_feature_id=None, transport_wan_vpn_feature_id=None, transport_wan_vpn_interface_cellular_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 transport_tracker_group_feature_id and not isinstance(transport_tracker_group_feature_id, str):
|
|
37
|
+
raise TypeError("Expected argument 'transport_tracker_group_feature_id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "transport_tracker_group_feature_id", transport_tracker_group_feature_id)
|
|
39
|
+
if transport_wan_vpn_feature_id and not isinstance(transport_wan_vpn_feature_id, str):
|
|
40
|
+
raise TypeError("Expected argument 'transport_wan_vpn_feature_id' to be a str")
|
|
41
|
+
pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
|
|
42
|
+
if transport_wan_vpn_interface_cellular_feature_id and not isinstance(transport_wan_vpn_interface_cellular_feature_id, str):
|
|
43
|
+
raise TypeError("Expected argument 'transport_wan_vpn_interface_cellular_feature_id' to be a str")
|
|
44
|
+
pulumi.set(__self__, "transport_wan_vpn_interface_cellular_feature_id", transport_wan_vpn_interface_cellular_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="transportTrackerGroupFeatureId")
|
|
64
|
+
def transport_tracker_group_feature_id(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Transport Tracker Group Feature ID
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "transport_tracker_group_feature_id")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="transportWanVpnFeatureId")
|
|
72
|
+
def transport_wan_vpn_feature_id(self) -> str:
|
|
73
|
+
"""
|
|
74
|
+
Transport WAN VPN Feature ID
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "transport_wan_vpn_feature_id")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="transportWanVpnInterfaceCellularFeatureId")
|
|
80
|
+
def transport_wan_vpn_interface_cellular_feature_id(self) -> str:
|
|
81
|
+
"""
|
|
82
|
+
Transport WAN VPN Interface Cellular Feature ID
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "transport_wan_vpn_interface_cellular_feature_id")
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class AwaitableGetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult(GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult):
|
|
88
|
+
# pylint: disable=using-constant-test
|
|
89
|
+
def __await__(self):
|
|
90
|
+
if False:
|
|
91
|
+
yield self
|
|
92
|
+
return GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult(
|
|
93
|
+
feature_profile_id=self.feature_profile_id,
|
|
94
|
+
id=self.id,
|
|
95
|
+
transport_tracker_group_feature_id=self.transport_tracker_group_feature_id,
|
|
96
|
+
transport_wan_vpn_feature_id=self.transport_wan_vpn_feature_id,
|
|
97
|
+
transport_wan_vpn_interface_cellular_feature_id=self.transport_wan_vpn_interface_cellular_feature_id)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature(feature_profile_id: Optional[str] = None,
|
|
101
|
+
id: Optional[str] = None,
|
|
102
|
+
transport_wan_vpn_feature_id: Optional[str] = None,
|
|
103
|
+
transport_wan_vpn_interface_cellular_feature_id: Optional[str] = None,
|
|
104
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult:
|
|
105
|
+
"""
|
|
106
|
+
This data source can read the Transport WAN VPN Interface Cellular Feature Associate Tracker Group Feature .
|
|
107
|
+
|
|
108
|
+
## Example Usage
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
import pulumi
|
|
112
|
+
import pulumi_sdwan as sdwan
|
|
113
|
+
|
|
114
|
+
example = sdwan.get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
115
|
+
transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
116
|
+
transport_wan_vpn_interface_cellular_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 transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
124
|
+
:param str transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
|
|
125
|
+
"""
|
|
126
|
+
__args__ = dict()
|
|
127
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
128
|
+
__args__['id'] = id
|
|
129
|
+
__args__['transportWanVpnFeatureId'] = transport_wan_vpn_feature_id
|
|
130
|
+
__args__['transportWanVpnInterfaceCellularFeatureId'] = transport_wan_vpn_interface_cellular_feature_id
|
|
131
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
132
|
+
__ret__ = pulumi.runtime.invoke('sdwan:index/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature', __args__, opts=opts, typ=GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult).value
|
|
133
|
+
|
|
134
|
+
return AwaitableGetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult(
|
|
135
|
+
feature_profile_id=pulumi.get(__ret__, 'feature_profile_id'),
|
|
136
|
+
id=pulumi.get(__ret__, 'id'),
|
|
137
|
+
transport_tracker_group_feature_id=pulumi.get(__ret__, 'transport_tracker_group_feature_id'),
|
|
138
|
+
transport_wan_vpn_feature_id=pulumi.get(__ret__, 'transport_wan_vpn_feature_id'),
|
|
139
|
+
transport_wan_vpn_interface_cellular_feature_id=pulumi.get(__ret__, 'transport_wan_vpn_interface_cellular_feature_id'))
|
|
140
|
+
def get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
|
|
141
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
142
|
+
transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
|
|
143
|
+
transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None,
|
|
144
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult]:
|
|
145
|
+
"""
|
|
146
|
+
This data source can read the Transport WAN VPN Interface Cellular Feature Associate Tracker Group Feature .
|
|
147
|
+
|
|
148
|
+
## Example Usage
|
|
149
|
+
|
|
150
|
+
```python
|
|
151
|
+
import pulumi
|
|
152
|
+
import pulumi_sdwan as sdwan
|
|
153
|
+
|
|
154
|
+
example = sdwan.get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
155
|
+
transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
156
|
+
transport_wan_vpn_interface_cellular_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 transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
164
|
+
:param str transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
168
|
+
__args__['id'] = id
|
|
169
|
+
__args__['transportWanVpnFeatureId'] = transport_wan_vpn_feature_id
|
|
170
|
+
__args__['transportWanVpnInterfaceCellularFeatureId'] = transport_wan_vpn_interface_cellular_feature_id
|
|
171
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
172
|
+
__ret__ = pulumi.runtime.invoke_output('sdwan:index/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature', __args__, opts=opts, typ=GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult)
|
|
173
|
+
return __ret__.apply(lambda __response__: GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult(
|
|
174
|
+
feature_profile_id=pulumi.get(__response__, 'feature_profile_id'),
|
|
175
|
+
id=pulumi.get(__response__, 'id'),
|
|
176
|
+
transport_tracker_group_feature_id=pulumi.get(__response__, 'transport_tracker_group_feature_id'),
|
|
177
|
+
transport_wan_vpn_feature_id=pulumi.get(__response__, 'transport_wan_vpn_feature_id'),
|
|
178
|
+
transport_wan_vpn_interface_cellular_feature_id=pulumi.get(__response__, 'transport_wan_vpn_interface_cellular_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
|
+
'GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult',
|
|
19
|
+
'AwaitableGetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult',
|
|
20
|
+
'get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature',
|
|
21
|
+
'get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, feature_profile_id=None, id=None, transport_tracker_feature_id=None, transport_wan_vpn_feature_id=None, transport_wan_vpn_interface_gre_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 transport_tracker_feature_id and not isinstance(transport_tracker_feature_id, str):
|
|
37
|
+
raise TypeError("Expected argument 'transport_tracker_feature_id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "transport_tracker_feature_id", transport_tracker_feature_id)
|
|
39
|
+
if transport_wan_vpn_feature_id and not isinstance(transport_wan_vpn_feature_id, str):
|
|
40
|
+
raise TypeError("Expected argument 'transport_wan_vpn_feature_id' to be a str")
|
|
41
|
+
pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
|
|
42
|
+
if transport_wan_vpn_interface_gre_feature_id and not isinstance(transport_wan_vpn_interface_gre_feature_id, str):
|
|
43
|
+
raise TypeError("Expected argument 'transport_wan_vpn_interface_gre_feature_id' to be a str")
|
|
44
|
+
pulumi.set(__self__, "transport_wan_vpn_interface_gre_feature_id", transport_wan_vpn_interface_gre_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="transportTrackerFeatureId")
|
|
64
|
+
def transport_tracker_feature_id(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Transport Tracker Feature ID
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "transport_tracker_feature_id")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="transportWanVpnFeatureId")
|
|
72
|
+
def transport_wan_vpn_feature_id(self) -> str:
|
|
73
|
+
"""
|
|
74
|
+
Transport WAN VPN Feature ID
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "transport_wan_vpn_feature_id")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="transportWanVpnInterfaceGreFeatureId")
|
|
80
|
+
def transport_wan_vpn_interface_gre_feature_id(self) -> str:
|
|
81
|
+
"""
|
|
82
|
+
Transport WAN VPN Interface GRE Feature ID
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "transport_wan_vpn_interface_gre_feature_id")
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class AwaitableGetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult(GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult):
|
|
88
|
+
# pylint: disable=using-constant-test
|
|
89
|
+
def __await__(self):
|
|
90
|
+
if False:
|
|
91
|
+
yield self
|
|
92
|
+
return GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult(
|
|
93
|
+
feature_profile_id=self.feature_profile_id,
|
|
94
|
+
id=self.id,
|
|
95
|
+
transport_tracker_feature_id=self.transport_tracker_feature_id,
|
|
96
|
+
transport_wan_vpn_feature_id=self.transport_wan_vpn_feature_id,
|
|
97
|
+
transport_wan_vpn_interface_gre_feature_id=self.transport_wan_vpn_interface_gre_feature_id)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature(feature_profile_id: Optional[str] = None,
|
|
101
|
+
id: Optional[str] = None,
|
|
102
|
+
transport_wan_vpn_feature_id: Optional[str] = None,
|
|
103
|
+
transport_wan_vpn_interface_gre_feature_id: Optional[str] = None,
|
|
104
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult:
|
|
105
|
+
"""
|
|
106
|
+
This data source can read the Transport WAN VPN Interface GRE Feature Associate Tracker Feature .
|
|
107
|
+
|
|
108
|
+
## Example Usage
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
import pulumi
|
|
112
|
+
import pulumi_sdwan as sdwan
|
|
113
|
+
|
|
114
|
+
example = sdwan.get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
115
|
+
transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
116
|
+
transport_wan_vpn_interface_gre_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 transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
124
|
+
:param str transport_wan_vpn_interface_gre_feature_id: Transport WAN VPN Interface GRE Feature ID
|
|
125
|
+
"""
|
|
126
|
+
__args__ = dict()
|
|
127
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
128
|
+
__args__['id'] = id
|
|
129
|
+
__args__['transportWanVpnFeatureId'] = transport_wan_vpn_feature_id
|
|
130
|
+
__args__['transportWanVpnInterfaceGreFeatureId'] = transport_wan_vpn_interface_gre_feature_id
|
|
131
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
132
|
+
__ret__ = pulumi.runtime.invoke('sdwan:index/getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature:getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature', __args__, opts=opts, typ=GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult).value
|
|
133
|
+
|
|
134
|
+
return AwaitableGetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult(
|
|
135
|
+
feature_profile_id=pulumi.get(__ret__, 'feature_profile_id'),
|
|
136
|
+
id=pulumi.get(__ret__, 'id'),
|
|
137
|
+
transport_tracker_feature_id=pulumi.get(__ret__, 'transport_tracker_feature_id'),
|
|
138
|
+
transport_wan_vpn_feature_id=pulumi.get(__ret__, 'transport_wan_vpn_feature_id'),
|
|
139
|
+
transport_wan_vpn_interface_gre_feature_id=pulumi.get(__ret__, 'transport_wan_vpn_interface_gre_feature_id'))
|
|
140
|
+
def get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
|
|
141
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
142
|
+
transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
|
|
143
|
+
transport_wan_vpn_interface_gre_feature_id: Optional[pulumi.Input[str]] = None,
|
|
144
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult]:
|
|
145
|
+
"""
|
|
146
|
+
This data source can read the Transport WAN VPN Interface GRE Feature Associate Tracker Feature .
|
|
147
|
+
|
|
148
|
+
## Example Usage
|
|
149
|
+
|
|
150
|
+
```python
|
|
151
|
+
import pulumi
|
|
152
|
+
import pulumi_sdwan as sdwan
|
|
153
|
+
|
|
154
|
+
example = sdwan.get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
155
|
+
transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
156
|
+
transport_wan_vpn_interface_gre_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 transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
164
|
+
:param str transport_wan_vpn_interface_gre_feature_id: Transport WAN VPN Interface GRE Feature ID
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
168
|
+
__args__['id'] = id
|
|
169
|
+
__args__['transportWanVpnFeatureId'] = transport_wan_vpn_feature_id
|
|
170
|
+
__args__['transportWanVpnInterfaceGreFeatureId'] = transport_wan_vpn_interface_gre_feature_id
|
|
171
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
172
|
+
__ret__ = pulumi.runtime.invoke_output('sdwan:index/getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature:getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature', __args__, opts=opts, typ=GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult)
|
|
173
|
+
return __ret__.apply(lambda __response__: GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult(
|
|
174
|
+
feature_profile_id=pulumi.get(__response__, 'feature_profile_id'),
|
|
175
|
+
id=pulumi.get(__response__, 'id'),
|
|
176
|
+
transport_tracker_feature_id=pulumi.get(__response__, 'transport_tracker_feature_id'),
|
|
177
|
+
transport_wan_vpn_feature_id=pulumi.get(__response__, 'transport_wan_vpn_feature_id'),
|
|
178
|
+
transport_wan_vpn_interface_gre_feature_id=pulumi.get(__response__, 'transport_wan_vpn_interface_gre_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
|
+
'GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult',
|
|
19
|
+
'AwaitableGetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult',
|
|
20
|
+
'get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature',
|
|
21
|
+
'get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, feature_profile_id=None, id=None, transport_tracker_feature_id=None, transport_wan_vpn_feature_id=None, transport_wan_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 transport_tracker_feature_id and not isinstance(transport_tracker_feature_id, str):
|
|
37
|
+
raise TypeError("Expected argument 'transport_tracker_feature_id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "transport_tracker_feature_id", transport_tracker_feature_id)
|
|
39
|
+
if transport_wan_vpn_feature_id and not isinstance(transport_wan_vpn_feature_id, str):
|
|
40
|
+
raise TypeError("Expected argument 'transport_wan_vpn_feature_id' to be a str")
|
|
41
|
+
pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
|
|
42
|
+
if transport_wan_vpn_interface_ipsec_feature_id and not isinstance(transport_wan_vpn_interface_ipsec_feature_id, str):
|
|
43
|
+
raise TypeError("Expected argument 'transport_wan_vpn_interface_ipsec_feature_id' to be a str")
|
|
44
|
+
pulumi.set(__self__, "transport_wan_vpn_interface_ipsec_feature_id", transport_wan_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="transportTrackerFeatureId")
|
|
64
|
+
def transport_tracker_feature_id(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Transport Tracker Feature ID
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "transport_tracker_feature_id")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="transportWanVpnFeatureId")
|
|
72
|
+
def transport_wan_vpn_feature_id(self) -> str:
|
|
73
|
+
"""
|
|
74
|
+
Transport WAN VPN Feature ID
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "transport_wan_vpn_feature_id")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="transportWanVpnInterfaceIpsecFeatureId")
|
|
80
|
+
def transport_wan_vpn_interface_ipsec_feature_id(self) -> str:
|
|
81
|
+
"""
|
|
82
|
+
Transport WAN VPN Interface IPSEC Feature ID
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "transport_wan_vpn_interface_ipsec_feature_id")
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class AwaitableGetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult(GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult):
|
|
88
|
+
# pylint: disable=using-constant-test
|
|
89
|
+
def __await__(self):
|
|
90
|
+
if False:
|
|
91
|
+
yield self
|
|
92
|
+
return GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult(
|
|
93
|
+
feature_profile_id=self.feature_profile_id,
|
|
94
|
+
id=self.id,
|
|
95
|
+
transport_tracker_feature_id=self.transport_tracker_feature_id,
|
|
96
|
+
transport_wan_vpn_feature_id=self.transport_wan_vpn_feature_id,
|
|
97
|
+
transport_wan_vpn_interface_ipsec_feature_id=self.transport_wan_vpn_interface_ipsec_feature_id)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature(feature_profile_id: Optional[str] = None,
|
|
101
|
+
id: Optional[str] = None,
|
|
102
|
+
transport_wan_vpn_feature_id: Optional[str] = None,
|
|
103
|
+
transport_wan_vpn_interface_ipsec_feature_id: Optional[str] = None,
|
|
104
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult:
|
|
105
|
+
"""
|
|
106
|
+
This data source can read the Transport WAN VPN Interface IPSEC Feature Associate Tracker Feature .
|
|
107
|
+
|
|
108
|
+
## Example Usage
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
import pulumi
|
|
112
|
+
import pulumi_sdwan as sdwan
|
|
113
|
+
|
|
114
|
+
example = sdwan.get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
115
|
+
transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
116
|
+
transport_wan_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 transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
124
|
+
:param str transport_wan_vpn_interface_ipsec_feature_id: Transport WAN VPN Interface IPSEC Feature ID
|
|
125
|
+
"""
|
|
126
|
+
__args__ = dict()
|
|
127
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
128
|
+
__args__['id'] = id
|
|
129
|
+
__args__['transportWanVpnFeatureId'] = transport_wan_vpn_feature_id
|
|
130
|
+
__args__['transportWanVpnInterfaceIpsecFeatureId'] = transport_wan_vpn_interface_ipsec_feature_id
|
|
131
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
132
|
+
__ret__ = pulumi.runtime.invoke('sdwan:index/getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature:getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature', __args__, opts=opts, typ=GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult).value
|
|
133
|
+
|
|
134
|
+
return AwaitableGetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult(
|
|
135
|
+
feature_profile_id=pulumi.get(__ret__, 'feature_profile_id'),
|
|
136
|
+
id=pulumi.get(__ret__, 'id'),
|
|
137
|
+
transport_tracker_feature_id=pulumi.get(__ret__, 'transport_tracker_feature_id'),
|
|
138
|
+
transport_wan_vpn_feature_id=pulumi.get(__ret__, 'transport_wan_vpn_feature_id'),
|
|
139
|
+
transport_wan_vpn_interface_ipsec_feature_id=pulumi.get(__ret__, 'transport_wan_vpn_interface_ipsec_feature_id'))
|
|
140
|
+
def get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
|
|
141
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
142
|
+
transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
|
|
143
|
+
transport_wan_vpn_interface_ipsec_feature_id: Optional[pulumi.Input[str]] = None,
|
|
144
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult]:
|
|
145
|
+
"""
|
|
146
|
+
This data source can read the Transport WAN VPN Interface IPSEC Feature Associate Tracker Feature .
|
|
147
|
+
|
|
148
|
+
## Example Usage
|
|
149
|
+
|
|
150
|
+
```python
|
|
151
|
+
import pulumi
|
|
152
|
+
import pulumi_sdwan as sdwan
|
|
153
|
+
|
|
154
|
+
example = sdwan.get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature(feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
155
|
+
transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
|
|
156
|
+
transport_wan_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 transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
|
|
164
|
+
:param str transport_wan_vpn_interface_ipsec_feature_id: Transport WAN VPN Interface IPSEC Feature ID
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['featureProfileId'] = feature_profile_id
|
|
168
|
+
__args__['id'] = id
|
|
169
|
+
__args__['transportWanVpnFeatureId'] = transport_wan_vpn_feature_id
|
|
170
|
+
__args__['transportWanVpnInterfaceIpsecFeatureId'] = transport_wan_vpn_interface_ipsec_feature_id
|
|
171
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
172
|
+
__ret__ = pulumi.runtime.invoke_output('sdwan:index/getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature:getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature', __args__, opts=opts, typ=GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult)
|
|
173
|
+
return __ret__.apply(lambda __response__: GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult(
|
|
174
|
+
feature_profile_id=pulumi.get(__response__, 'feature_profile_id'),
|
|
175
|
+
id=pulumi.get(__response__, 'id'),
|
|
176
|
+
transport_tracker_feature_id=pulumi.get(__response__, 'transport_tracker_feature_id'),
|
|
177
|
+
transport_wan_vpn_feature_id=pulumi.get(__response__, 'transport_wan_vpn_feature_id'),
|
|
178
|
+
transport_wan_vpn_interface_ipsec_feature_id=pulumi.get(__response__, 'transport_wan_vpn_interface_ipsec_feature_id')))
|
pulumi_sdwan/pulumi-plugin.json
CHANGED