pulumi-harness 0.9.0a1755842147__py3-none-any.whl → 0.9.0a1756324571__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-harness might be problematic. Click here for more details.
- pulumi_harness/__init__.py +8 -0
- pulumi_harness/platform/__init__.py +2 -0
- pulumi_harness/platform/_inputs.py +2299 -3
- pulumi_harness/platform/azure_cloud_cost_connector.py +18 -0
- pulumi_harness/platform/default_notification_template_set.py +495 -0
- pulumi_harness/platform/get_azure_cloud_cost_connector.py +3 -0
- pulumi_harness/platform/get_default_notification_template_set.py +244 -0
- pulumi_harness/platform/gitops_applicationset.py +2 -0
- pulumi_harness/platform/outputs.py +1608 -4
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.9.0a1755842147.dist-info → pulumi_harness-0.9.0a1756324571.dist-info}/METADATA +1 -1
- {pulumi_harness-0.9.0a1755842147.dist-info → pulumi_harness-0.9.0a1756324571.dist-info}/RECORD +14 -12
- {pulumi_harness-0.9.0a1755842147.dist-info → pulumi_harness-0.9.0a1756324571.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.9.0a1755842147.dist-info → pulumi_harness-0.9.0a1756324571.dist-info}/top_level.txt +0 -0
pulumi_harness/__init__.py
CHANGED
|
@@ -616,6 +616,14 @@ _utilities.register(
|
|
|
616
616
|
"harness:platform/dbSchema:DbSchema": "DbSchema"
|
|
617
617
|
}
|
|
618
618
|
},
|
|
619
|
+
{
|
|
620
|
+
"pkg": "harness",
|
|
621
|
+
"mod": "platform/defaultNotificationTemplateSet",
|
|
622
|
+
"fqn": "pulumi_harness.platform",
|
|
623
|
+
"classes": {
|
|
624
|
+
"harness:platform/defaultNotificationTemplateSet:DefaultNotificationTemplateSet": "DefaultNotificationTemplateSet"
|
|
625
|
+
}
|
|
626
|
+
},
|
|
619
627
|
{
|
|
620
628
|
"pkg": "harness",
|
|
621
629
|
"mod": "platform/delegatetoken",
|
|
@@ -31,6 +31,7 @@ from .dashboards import *
|
|
|
31
31
|
from .datadog_connector import *
|
|
32
32
|
from .db_instance import *
|
|
33
33
|
from .db_schema import *
|
|
34
|
+
from .default_notification_template_set import *
|
|
34
35
|
from .delegatetoken import *
|
|
35
36
|
from .docker_connector import *
|
|
36
37
|
from .dynatrace_connector import *
|
|
@@ -77,6 +78,7 @@ from .get_dashboards import *
|
|
|
77
78
|
from .get_datadog_connector import *
|
|
78
79
|
from .get_db_instance import *
|
|
79
80
|
from .get_db_schema import *
|
|
81
|
+
from .get_default_notification_template_set import *
|
|
80
82
|
from .get_delegatetoken import *
|
|
81
83
|
from .get_docker_connector import *
|
|
82
84
|
from .get_dynatrace_connector import *
|