pulumi-harness 0.8.0a1750480667__py3-none-any.whl → 0.8.0a1752731737__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 +16 -0
- pulumi_harness/platform/__init__.py +4 -0
- pulumi_harness/platform/_inputs.py +913 -0
- pulumi_harness/platform/central_notification_channel.py +432 -0
- pulumi_harness/platform/central_notification_rule.py +467 -0
- pulumi_harness/platform/delegatetoken.py +148 -89
- pulumi_harness/platform/get_central_notification_channel.py +277 -0
- pulumi_harness/platform/get_central_notification_rule.py +254 -0
- pulumi_harness/platform/get_delegatetoken.py +87 -31
- pulumi_harness/platform/get_workspace.py +16 -1
- pulumi_harness/platform/outputs.py +628 -0
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.8.0a1750480667.dist-info → pulumi_harness-0.8.0a1752731737.dist-info}/METADATA +1 -1
- {pulumi_harness-0.8.0a1750480667.dist-info → pulumi_harness-0.8.0a1752731737.dist-info}/RECORD +16 -12
- {pulumi_harness-0.8.0a1750480667.dist-info → pulumi_harness-0.8.0a1752731737.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.8.0a1750480667.dist-info → pulumi_harness-0.8.0a1752731737.dist-info}/top_level.txt +0 -0
pulumi_harness/__init__.py
CHANGED
|
@@ -445,6 +445,22 @@ _utilities.register(
|
|
|
445
445
|
"harness:platform/bitbucketConnector:BitbucketConnector": "BitbucketConnector"
|
|
446
446
|
}
|
|
447
447
|
},
|
|
448
|
+
{
|
|
449
|
+
"pkg": "harness",
|
|
450
|
+
"mod": "platform/centralNotificationChannel",
|
|
451
|
+
"fqn": "pulumi_harness.platform",
|
|
452
|
+
"classes": {
|
|
453
|
+
"harness:platform/centralNotificationChannel:CentralNotificationChannel": "CentralNotificationChannel"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"pkg": "harness",
|
|
458
|
+
"mod": "platform/centralNotificationRule",
|
|
459
|
+
"fqn": "pulumi_harness.platform",
|
|
460
|
+
"classes": {
|
|
461
|
+
"harness:platform/centralNotificationRule:CentralNotificationRule": "CentralNotificationRule"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
448
464
|
{
|
|
449
465
|
"pkg": "harness",
|
|
450
466
|
"mod": "platform/connectorAzureArtifacts",
|
|
@@ -16,6 +16,8 @@ from .azure_cloud_cost_connector import *
|
|
|
16
16
|
from .azure_cloud_provider_connector import *
|
|
17
17
|
from .azure_key_vault_connector import *
|
|
18
18
|
from .bitbucket_connector import *
|
|
19
|
+
from .central_notification_channel import *
|
|
20
|
+
from .central_notification_rule import *
|
|
19
21
|
from .connector_azure_artifacts import *
|
|
20
22
|
from .connector_azure_repo import *
|
|
21
23
|
from .connector_custom_secret_manager import *
|
|
@@ -59,6 +61,8 @@ from .get_azure_cloud_provider_connector import *
|
|
|
59
61
|
from .get_azure_key_vault_connector import *
|
|
60
62
|
from .get_bitbucket_connector import *
|
|
61
63
|
from .get_ccm_filters import *
|
|
64
|
+
from .get_central_notification_channel import *
|
|
65
|
+
from .get_central_notification_rule import *
|
|
62
66
|
from .get_connector_azure_repo import *
|
|
63
67
|
from .get_connector_custom_secret_manager import *
|
|
64
68
|
from .get_connector_customhealthsource import *
|