pulumi-harness 0.8.0a1750226873__py3-none-any.whl → 0.8.0a1752696115__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 +32 -0
- pulumi_harness/platform/__init__.py +7 -0
- pulumi_harness/platform/_inputs.py +123073 -158
- pulumi_harness/platform/central_notification_channel.py +432 -0
- pulumi_harness/platform/dashboard_folders.py +198 -0
- pulumi_harness/platform/dashboards.py +710 -0
- pulumi_harness/platform/delegatetoken.py +148 -89
- pulumi_harness/platform/get_central_notification_channel.py +277 -0
- pulumi_harness/platform/get_dashboard_folders.py +170 -0
- pulumi_harness/platform/get_dashboards.py +285 -0
- pulumi_harness/platform/get_delegatetoken.py +87 -31
- pulumi_harness/platform/get_workspace.py +23 -3
- pulumi_harness/platform/gitops_applicationset.py +374 -0
- pulumi_harness/platform/kubernetes_cloud_cost_connector.py +11 -31
- pulumi_harness/platform/outputs.py +87356 -231
- pulumi_harness/platform/workspace.py +64 -18
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.8.0a1750226873.dist-info → pulumi_harness-0.8.0a1752696115.dist-info}/METADATA +1 -1
- {pulumi_harness-0.8.0a1750226873.dist-info → pulumi_harness-0.8.0a1752696115.dist-info}/RECORD +21 -14
- {pulumi_harness-0.8.0a1750226873.dist-info → pulumi_harness-0.8.0a1752696115.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.8.0a1750226873.dist-info → pulumi_harness-0.8.0a1752696115.dist-info}/top_level.txt +0 -0
pulumi_harness/__init__.py
CHANGED
|
@@ -445,6 +445,14 @@ _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
|
+
},
|
|
448
456
|
{
|
|
449
457
|
"pkg": "harness",
|
|
450
458
|
"mod": "platform/connectorAzureArtifacts",
|
|
@@ -509,6 +517,22 @@ _utilities.register(
|
|
|
509
517
|
"harness:platform/connectorRancher:ConnectorRancher": "ConnectorRancher"
|
|
510
518
|
}
|
|
511
519
|
},
|
|
520
|
+
{
|
|
521
|
+
"pkg": "harness",
|
|
522
|
+
"mod": "platform/dashboardFolders",
|
|
523
|
+
"fqn": "pulumi_harness.platform",
|
|
524
|
+
"classes": {
|
|
525
|
+
"harness:platform/dashboardFolders:DashboardFolders": "DashboardFolders"
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"pkg": "harness",
|
|
530
|
+
"mod": "platform/dashboards",
|
|
531
|
+
"fqn": "pulumi_harness.platform",
|
|
532
|
+
"classes": {
|
|
533
|
+
"harness:platform/dashboards:Dashboards": "Dashboards"
|
|
534
|
+
}
|
|
535
|
+
},
|
|
512
536
|
{
|
|
513
537
|
"pkg": "harness",
|
|
514
538
|
"mod": "platform/datadogConnector",
|
|
@@ -773,6 +797,14 @@ _utilities.register(
|
|
|
773
797
|
"harness:platform/gitopsAppProjectMapping:GitopsAppProjectMapping": "GitopsAppProjectMapping"
|
|
774
798
|
}
|
|
775
799
|
},
|
|
800
|
+
{
|
|
801
|
+
"pkg": "harness",
|
|
802
|
+
"mod": "platform/gitopsApplicationset",
|
|
803
|
+
"fqn": "pulumi_harness.platform",
|
|
804
|
+
"classes": {
|
|
805
|
+
"harness:platform/gitopsApplicationset:GitopsApplicationset": "GitopsApplicationset"
|
|
806
|
+
}
|
|
807
|
+
},
|
|
776
808
|
{
|
|
777
809
|
"pkg": "harness",
|
|
778
810
|
"mod": "platform/gitopsFilters",
|
|
@@ -16,6 +16,7 @@ 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 *
|
|
19
20
|
from .connector_azure_artifacts import *
|
|
20
21
|
from .connector_azure_repo import *
|
|
21
22
|
from .connector_custom_secret_manager import *
|
|
@@ -24,6 +25,8 @@ from .connector_gcp_kms import *
|
|
|
24
25
|
from .connector_jdbc import *
|
|
25
26
|
from .connector_pdc import *
|
|
26
27
|
from .connector_rancher import *
|
|
28
|
+
from .dashboard_folders import *
|
|
29
|
+
from .dashboards import *
|
|
27
30
|
from .datadog_connector import *
|
|
28
31
|
from .db_instance import *
|
|
29
32
|
from .db_schema import *
|
|
@@ -57,6 +60,7 @@ from .get_azure_cloud_provider_connector import *
|
|
|
57
60
|
from .get_azure_key_vault_connector import *
|
|
58
61
|
from .get_bitbucket_connector import *
|
|
59
62
|
from .get_ccm_filters import *
|
|
63
|
+
from .get_central_notification_channel import *
|
|
60
64
|
from .get_connector_azure_repo import *
|
|
61
65
|
from .get_connector_custom_secret_manager import *
|
|
62
66
|
from .get_connector_customhealthsource import *
|
|
@@ -66,6 +70,8 @@ from .get_connector_pdc import *
|
|
|
66
70
|
from .get_connector_rancher import *
|
|
67
71
|
from .get_current_account import *
|
|
68
72
|
from .get_current_user import *
|
|
73
|
+
from .get_dashboard_folders import *
|
|
74
|
+
from .get_dashboards import *
|
|
69
75
|
from .get_datadog_connector import *
|
|
70
76
|
from .get_db_instance import *
|
|
71
77
|
from .get_db_schema import *
|
|
@@ -171,6 +177,7 @@ from .github_connector import *
|
|
|
171
177
|
from .gitlab_connector import *
|
|
172
178
|
from .gitops_app_project import *
|
|
173
179
|
from .gitops_app_project_mapping import *
|
|
180
|
+
from .gitops_applicationset import *
|
|
174
181
|
from .gitops_filters import *
|
|
175
182
|
from .gitx_webhook import *
|
|
176
183
|
from .har_registry import *
|