pulumi-harness 0.9.0a1760076204__py3-none-any.whl → 0.10.0a1764049859__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_harness/__init__.py +24 -0
- pulumi_harness/autostopping/__init__.py +2 -0
- pulumi_harness/autostopping/_inputs.py +1698 -622
- pulumi_harness/autostopping/get_aws_alb.py +4 -0
- pulumi_harness/autostopping/get_aws_proxy.py +4 -0
- pulumi_harness/autostopping/get_azure_gateway.py +4 -0
- pulumi_harness/autostopping/get_azure_proxy.py +4 -0
- pulumi_harness/autostopping/get_gcp_proxy.py +4 -0
- pulumi_harness/autostopping/get_rule_ecs.py +4 -0
- pulumi_harness/autostopping/get_rule_rds.py +4 -0
- pulumi_harness/autostopping/get_rule_scale_group.py +254 -0
- pulumi_harness/autostopping/get_rule_vm.py +4 -0
- pulumi_harness/autostopping/outputs.py +727 -0
- pulumi_harness/autostopping/rule_ecs.py +58 -0
- pulumi_harness/autostopping/rule_scale_group.py +592 -0
- pulumi_harness/cluster/get_orchestrator.py +4 -0
- pulumi_harness/cluster/get_orchestrator_config.py +21 -1
- pulumi_harness/cluster/orchestrator.py +2 -28
- pulumi_harness/cluster/orchestrator_config.py +49 -0
- pulumi_harness/platform/__init__.py +5 -0
- pulumi_harness/platform/_inputs.py +5804 -371
- pulumi_harness/platform/connector_rancher.py +36 -0
- pulumi_harness/platform/db_instance.py +49 -49
- pulumi_harness/platform/db_schema.py +243 -0
- pulumi_harness/platform/environment.py +166 -0
- pulumi_harness/platform/environment_group.py +10 -10
- pulumi_harness/platform/gcp_secret_manager_connector.py +94 -0
- pulumi_harness/platform/get_db_instance.py +21 -21
- pulumi_harness/platform/get_db_schema.py +21 -1
- pulumi_harness/platform/get_default_notification_template_set.py +31 -1
- pulumi_harness/platform/get_gitops_agent_operator_yaml.py +4 -0
- pulumi_harness/platform/get_gitops_app_project_mapping.py +4 -0
- pulumi_harness/platform/get_gitops_applications.py +4 -0
- pulumi_harness/platform/get_gitops_repo_cert.py +4 -0
- pulumi_harness/platform/get_infra_module.py +192 -6
- pulumi_harness/platform/get_infra_module_testing.py +521 -0
- pulumi_harness/platform/get_infra_modules.py +103 -0
- pulumi_harness/platform/get_manual_freeze.py +4 -0
- pulumi_harness/platform/get_pipeline_central_notification_rule.py +2 -26
- pulumi_harness/platform/get_secret_winrm.py +263 -0
- pulumi_harness/platform/git_ops_applications.py +0 -4
- pulumi_harness/platform/gitops_applicationset.py +308 -6
- pulumi_harness/platform/infra_module_testing.py +1134 -0
- pulumi_harness/platform/infrastructure.py +82 -0
- pulumi_harness/platform/outputs.py +4467 -251
- pulumi_harness/platform/pipeline.py +2 -2
- pulumi_harness/platform/pipeline_central_notification_rule.py +187 -0
- pulumi_harness/platform/secret_winrm.py +1082 -0
- pulumi_harness/platform/service.py +150 -0
- pulumi_harness/platform/triggers.py +6 -4
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.9.0a1760076204.dist-info → pulumi_harness-0.10.0a1764049859.dist-info}/METADATA +1 -1
- {pulumi_harness-0.9.0a1760076204.dist-info → pulumi_harness-0.10.0a1764049859.dist-info}/RECORD +55 -48
- {pulumi_harness-0.9.0a1760076204.dist-info → pulumi_harness-0.10.0a1764049859.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.9.0a1760076204.dist-info → pulumi_harness-0.10.0a1764049859.dist-info}/top_level.txt +0 -0
|
@@ -438,6 +438,47 @@ class Infrastructure(pulumi.CustomResource):
|
|
|
438
438
|
"""
|
|
439
439
|
Resource for creating a Harness Infrastructure.
|
|
440
440
|
|
|
441
|
+
## Example Usage
|
|
442
|
+
|
|
443
|
+
```python
|
|
444
|
+
import pulumi
|
|
445
|
+
import pulumi_harness as harness
|
|
446
|
+
|
|
447
|
+
example = harness.platform.Infrastructure("example",
|
|
448
|
+
identifier="identifier",
|
|
449
|
+
name="name",
|
|
450
|
+
org_id="orgIdentifer",
|
|
451
|
+
project_id="projectIdentifier",
|
|
452
|
+
env_id="environmentIdentifier",
|
|
453
|
+
type="KubernetesDirect",
|
|
454
|
+
deployment_type="Kubernetes",
|
|
455
|
+
git_details={
|
|
456
|
+
"branch_name": "branchName",
|
|
457
|
+
"commit_message": "commitMessage",
|
|
458
|
+
"file_path": "filePath",
|
|
459
|
+
"connector_ref": "connectorRef",
|
|
460
|
+
"store_type": "REMOTE",
|
|
461
|
+
"repo_name": "repoName",
|
|
462
|
+
},
|
|
463
|
+
yaml=\"\"\"infrastructureDefinition:
|
|
464
|
+
name: name
|
|
465
|
+
identifier: identifier
|
|
466
|
+
description: \\"\\"
|
|
467
|
+
tags:
|
|
468
|
+
asda: \\"\\"
|
|
469
|
+
orgIdentifier: orgIdentifer
|
|
470
|
+
projectIdentifier: projectIdentifier
|
|
471
|
+
environmentRef: environmentIdentifier
|
|
472
|
+
deploymentType: Kubernetes
|
|
473
|
+
type: KubernetesDirect
|
|
474
|
+
spec:
|
|
475
|
+
connectorRef: account.gfgf
|
|
476
|
+
namespace: asdasdsa
|
|
477
|
+
releaseName: release-<+INFRA_KEY>
|
|
478
|
+
allowSimultaneousDeployments: false
|
|
479
|
+
\"\"\")
|
|
480
|
+
```
|
|
481
|
+
|
|
441
482
|
## Import
|
|
442
483
|
|
|
443
484
|
The `pulumi import` command can be used, for example:
|
|
@@ -484,6 +525,47 @@ class Infrastructure(pulumi.CustomResource):
|
|
|
484
525
|
"""
|
|
485
526
|
Resource for creating a Harness Infrastructure.
|
|
486
527
|
|
|
528
|
+
## Example Usage
|
|
529
|
+
|
|
530
|
+
```python
|
|
531
|
+
import pulumi
|
|
532
|
+
import pulumi_harness as harness
|
|
533
|
+
|
|
534
|
+
example = harness.platform.Infrastructure("example",
|
|
535
|
+
identifier="identifier",
|
|
536
|
+
name="name",
|
|
537
|
+
org_id="orgIdentifer",
|
|
538
|
+
project_id="projectIdentifier",
|
|
539
|
+
env_id="environmentIdentifier",
|
|
540
|
+
type="KubernetesDirect",
|
|
541
|
+
deployment_type="Kubernetes",
|
|
542
|
+
git_details={
|
|
543
|
+
"branch_name": "branchName",
|
|
544
|
+
"commit_message": "commitMessage",
|
|
545
|
+
"file_path": "filePath",
|
|
546
|
+
"connector_ref": "connectorRef",
|
|
547
|
+
"store_type": "REMOTE",
|
|
548
|
+
"repo_name": "repoName",
|
|
549
|
+
},
|
|
550
|
+
yaml=\"\"\"infrastructureDefinition:
|
|
551
|
+
name: name
|
|
552
|
+
identifier: identifier
|
|
553
|
+
description: \\"\\"
|
|
554
|
+
tags:
|
|
555
|
+
asda: \\"\\"
|
|
556
|
+
orgIdentifier: orgIdentifer
|
|
557
|
+
projectIdentifier: projectIdentifier
|
|
558
|
+
environmentRef: environmentIdentifier
|
|
559
|
+
deploymentType: Kubernetes
|
|
560
|
+
type: KubernetesDirect
|
|
561
|
+
spec:
|
|
562
|
+
connectorRef: account.gfgf
|
|
563
|
+
namespace: asdasdsa
|
|
564
|
+
releaseName: release-<+INFRA_KEY>
|
|
565
|
+
allowSimultaneousDeployments: false
|
|
566
|
+
\"\"\")
|
|
567
|
+
```
|
|
568
|
+
|
|
487
569
|
## Import
|
|
488
570
|
|
|
489
571
|
The `pulumi import` command can be used, for example:
|