pulumi-harness 0.6.0a1739684779__py3-none-any.whl → 0.6.0a1739943964__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 +859 -40
- pulumi_harness/platform/connector_jdbc.py +0 -38
- pulumi_harness/platform/get_gitlab_connector.py +3 -0
- pulumi_harness/platform/get_infra_variable_set.py +273 -0
- pulumi_harness/platform/get_workspace.py +24 -4
- pulumi_harness/platform/infra_variable_set.py +702 -0
- pulumi_harness/platform/outputs.py +694 -4
- pulumi_harness/platform/workspace.py +54 -5
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.6.0a1739684779.dist-info → pulumi_harness-0.6.0a1739943964.dist-info}/METADATA +1 -1
- {pulumi_harness-0.6.0a1739684779.dist-info → pulumi_harness-0.6.0a1739943964.dist-info}/RECORD +15 -13
- {pulumi_harness-0.6.0a1739684779.dist-info → pulumi_harness-0.6.0a1739943964.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.6.0a1739684779.dist-info → pulumi_harness-0.6.0a1739943964.dist-info}/top_level.txt +0 -0
pulumi_harness/__init__.py
CHANGED
|
@@ -796,6 +796,14 @@ _utilities.register(
|
|
|
796
796
|
"harness:platform/infraModule:InfraModule": "InfraModule"
|
|
797
797
|
}
|
|
798
798
|
},
|
|
799
|
+
{
|
|
800
|
+
"pkg": "harness",
|
|
801
|
+
"mod": "platform/infraVariableSet",
|
|
802
|
+
"fqn": "pulumi_harness.platform",
|
|
803
|
+
"classes": {
|
|
804
|
+
"harness:platform/infraVariableSet:InfraVariableSet": "InfraVariableSet"
|
|
805
|
+
}
|
|
806
|
+
},
|
|
799
807
|
{
|
|
800
808
|
"pkg": "harness",
|
|
801
809
|
"mod": "platform/infrastructure",
|
|
@@ -99,6 +99,7 @@ from .get_har_registry import *
|
|
|
99
99
|
from .get_helm_connector import *
|
|
100
100
|
from .get_iacm_default_pipeline import *
|
|
101
101
|
from .get_infra_module import *
|
|
102
|
+
from .get_infra_variable_set import *
|
|
102
103
|
from .get_infrastructure import *
|
|
103
104
|
from .get_input_set import *
|
|
104
105
|
from .get_jenkins_connector import *
|
|
@@ -170,6 +171,7 @@ from .har_registry import *
|
|
|
170
171
|
from .helm_connector import *
|
|
171
172
|
from .iacm_default_pipeline import *
|
|
172
173
|
from .infra_module import *
|
|
174
|
+
from .infra_variable_set import *
|
|
173
175
|
from .infrastructure import *
|
|
174
176
|
from .input_set import *
|
|
175
177
|
from .jenkins_connector import *
|