pulumi-sdwan 0.4.0a1754980756__py3-none-any.whl → 0.4.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_sdwan/__init__.py +10 -0
- pulumi_sdwan/_inputs.py +823 -214
- pulumi_sdwan/cisco_system_feature_template.py +94 -0
- pulumi_sdwan/get_cisco_system_feature_template.py +29 -1
- pulumi_sdwan/get_policy_group.py +183 -0
- pulumi_sdwan/localized_policy.py +51 -51
- pulumi_sdwan/outputs.py +984 -249
- pulumi_sdwan/policy_group.py +440 -0
- pulumi_sdwan/pulumi-plugin.json +1 -1
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py +630 -497
- {pulumi_sdwan-0.4.0a1754980756.dist-info → pulumi_sdwan-0.4.1.dist-info}/METADATA +1 -1
- {pulumi_sdwan-0.4.0a1754980756.dist-info → pulumi_sdwan-0.4.1.dist-info}/RECORD +14 -12
- {pulumi_sdwan-0.4.0a1754980756.dist-info → pulumi_sdwan-0.4.1.dist-info}/WHEEL +0 -0
- {pulumi_sdwan-0.4.0a1754980756.dist-info → pulumi_sdwan-0.4.1.dist-info}/top_level.txt +0 -0
pulumi_sdwan/__init__.py
CHANGED
|
@@ -154,6 +154,7 @@ from .get_other_feature_profile import *
|
|
|
154
154
|
from .get_other_thousandeyes_feature import *
|
|
155
155
|
from .get_other_ucse_feature import *
|
|
156
156
|
from .get_policer_policy_object import *
|
|
157
|
+
from .get_policy_group import *
|
|
157
158
|
from .get_policy_object_app_probe_class import *
|
|
158
159
|
from .get_policy_object_application_list import *
|
|
159
160
|
from .get_policy_object_as_path_list import *
|
|
@@ -323,6 +324,7 @@ from .other_feature_profile import *
|
|
|
323
324
|
from .other_thousandeyes_feature import *
|
|
324
325
|
from .other_ucse_feature import *
|
|
325
326
|
from .policer_policy_object import *
|
|
327
|
+
from .policy_group import *
|
|
326
328
|
from .policy_object_app_probe_class import *
|
|
327
329
|
from .policy_object_application_list import *
|
|
328
330
|
from .policy_object_as_path_list import *
|
|
@@ -1158,6 +1160,14 @@ _utilities.register(
|
|
|
1158
1160
|
"sdwan:index/policerPolicyObject:PolicerPolicyObject": "PolicerPolicyObject"
|
|
1159
1161
|
}
|
|
1160
1162
|
},
|
|
1163
|
+
{
|
|
1164
|
+
"pkg": "sdwan",
|
|
1165
|
+
"mod": "index/policyGroup",
|
|
1166
|
+
"fqn": "pulumi_sdwan",
|
|
1167
|
+
"classes": {
|
|
1168
|
+
"sdwan:index/policyGroup:PolicyGroup": "PolicyGroup"
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
1161
1171
|
{
|
|
1162
1172
|
"pkg": "sdwan",
|
|
1163
1173
|
"mod": "index/policyObjectAppProbeClass",
|