pulumi-harness 0.8.0a1755712204__py3-none-any.whl → 0.8.1__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 +75 -0
- pulumi_harness/add_user_to_group.py +4 -0
- pulumi_harness/application.py +4 -0
- pulumi_harness/application_git_sync.py +4 -0
- pulumi_harness/chaos/__init__.py +21 -0
- pulumi_harness/chaos/_inputs.py +2702 -0
- pulumi_harness/chaos/get_hub.py +324 -0
- pulumi_harness/chaos/get_image_registry.py +339 -0
- pulumi_harness/chaos/get_infrastructure_v2.py +684 -0
- pulumi_harness/chaos/get_security_governance_condition.py +261 -0
- pulumi_harness/chaos/get_security_governance_rule.py +261 -0
- pulumi_harness/chaos/hub.py +806 -0
- pulumi_harness/chaos/hub_sync.py +274 -0
- pulumi_harness/chaos/image_registry.py +730 -0
- pulumi_harness/chaos/infrastructure_v2.py +1670 -0
- pulumi_harness/chaos/outputs.py +2276 -0
- pulumi_harness/chaos/security_governance_condition.py +795 -0
- pulumi_harness/chaos/security_governance_rule.py +688 -0
- pulumi_harness/chaos_infrastructure.py +10 -4
- pulumi_harness/cloudprovider/aws.py +4 -0
- pulumi_harness/cloudprovider/azure.py +4 -0
- pulumi_harness/cloudprovider/datacenter.py +4 -0
- pulumi_harness/cloudprovider/kubernetes.py +4 -0
- pulumi_harness/cloudprovider/spot.py +4 -0
- pulumi_harness/cloudprovider/tanzu.py +4 -0
- pulumi_harness/cluster/_inputs.py +540 -0
- pulumi_harness/cluster/get_orchestrator_config.py +46 -6
- pulumi_harness/cluster/orchestrator.py +0 -16
- pulumi_harness/cluster/orchestrator_config.py +253 -5
- pulumi_harness/cluster/outputs.py +394 -0
- pulumi_harness/delegate_approval.py +4 -0
- pulumi_harness/encrypted_text.py +4 -0
- pulumi_harness/environment.py +4 -0
- pulumi_harness/get_current_account.py +3 -3
- pulumi_harness/git_connector.py +4 -0
- pulumi_harness/governance/rule.py +4 -0
- pulumi_harness/governance/rule_enforcement.py +4 -0
- pulumi_harness/infrastructure_definition.py +4 -0
- pulumi_harness/platform/__init__.py +2 -0
- pulumi_harness/platform/_inputs.py +2780 -416
- pulumi_harness/platform/app_dynamics_connector.py +4 -0
- pulumi_harness/platform/artifactory_connector.py +4 -0
- pulumi_harness/platform/aws_cc_connector.py +4 -0
- pulumi_harness/platform/aws_connector.py +11 -7
- pulumi_harness/platform/aws_kms_connector.py +70 -20
- pulumi_harness/platform/aws_secret_manager_connector.py +13 -9
- pulumi_harness/platform/azure_cloud_cost_connector.py +69 -0
- pulumi_harness/platform/azure_cloud_provider_connector.py +4 -0
- pulumi_harness/platform/azure_key_vault_connector.py +8 -0
- pulumi_harness/platform/bitbucket_connector.py +4 -0
- pulumi_harness/platform/connector_azure_artifacts.py +4 -2
- pulumi_harness/platform/connector_azure_repo.py +11 -16
- pulumi_harness/platform/connector_custom_secret_manager.py +51 -156
- pulumi_harness/platform/connector_customhealthsource.py +4 -0
- pulumi_harness/platform/connector_gcp_kms.py +4 -0
- pulumi_harness/platform/connector_jdbc.py +4 -0
- pulumi_harness/platform/connector_pdc.py +13 -13
- pulumi_harness/platform/connector_rancher.py +4 -0
- pulumi_harness/platform/dashboard_folders.py +2 -2
- pulumi_harness/platform/dashboards.py +10 -14
- pulumi_harness/platform/datadog_connector.py +4 -0
- pulumi_harness/platform/db_instance.py +4 -0
- pulumi_harness/platform/db_schema.py +25 -21
- pulumi_harness/platform/default_notification_template_set.py +495 -0
- pulumi_harness/platform/docker_connector.py +4 -4
- pulumi_harness/platform/dynatrace_connector.py +4 -0
- pulumi_harness/platform/elasticsearch_connector.py +19 -15
- pulumi_harness/platform/environment.py +25 -530
- pulumi_harness/platform/environment_clusters_mapping.py +8 -0
- pulumi_harness/platform/environment_group.py +13 -100
- pulumi_harness/platform/environment_service_overrides.py +20 -186
- pulumi_harness/platform/feature_flag_target_group.py +8 -8
- pulumi_harness/platform/file_store_file.py +11 -7
- pulumi_harness/platform/file_store_folder.py +11 -7
- pulumi_harness/platform/filters.py +8 -0
- pulumi_harness/platform/gcp_cloud_cost_connector.py +4 -0
- pulumi_harness/platform/gcp_connector.py +4 -0
- pulumi_harness/platform/gcp_secret_manager_connector.py +6 -92
- pulumi_harness/platform/get_api_key.py +8 -38
- pulumi_harness/platform/get_aws_kms_connector.py +16 -1
- pulumi_harness/platform/get_aws_secret_manager_connector.py +7 -3
- pulumi_harness/platform/get_azure_cloud_cost_connector.py +15 -1
- pulumi_harness/platform/get_connector_azure_repo.py +53 -2
- pulumi_harness/platform/get_connector_custom_secret_manager.py +28 -32
- pulumi_harness/platform/get_connector_pdc.py +3 -3
- pulumi_harness/platform/get_current_account.py +2 -20
- pulumi_harness/platform/get_dashboard_folders.py +16 -5
- pulumi_harness/platform/get_dashboards.py +15 -7
- pulumi_harness/platform/get_db_instance.py +5 -0
- pulumi_harness/platform/get_db_schema.py +12 -15
- pulumi_harness/platform/get_default_notification_template_set.py +244 -0
- pulumi_harness/platform/get_environment.py +5 -0
- pulumi_harness/platform/get_environment_list.py +12 -58
- pulumi_harness/platform/get_environment_service_overrides.py +6 -6
- pulumi_harness/platform/get_filters.py +4 -0
- pulumi_harness/platform/get_gcp_secret_manager_connector.py +4 -0
- pulumi_harness/platform/get_github_connector.py +3 -0
- pulumi_harness/platform/get_gitops_applications.py +8 -0
- pulumi_harness/platform/get_gitops_filters.py +25 -10
- pulumi_harness/platform/get_gitx_webhook.py +3 -3
- pulumi_harness/platform/get_har_registry.py +46 -10
- pulumi_harness/platform/get_iacm_default_pipeline.py +24 -0
- pulumi_harness/platform/get_infra_variable_set.py +34 -25
- pulumi_harness/platform/get_infrastructure.py +5 -0
- pulumi_harness/platform/get_manual_freeze.py +0 -24
- pulumi_harness/platform/get_monitored_service.py +22 -0
- pulumi_harness/platform/get_organization.py +4 -0
- pulumi_harness/platform/get_overrides.py +66 -2
- pulumi_harness/platform/get_pagerduty_connector.py +4 -0
- pulumi_harness/platform/get_pipeline_list.py +18 -63
- pulumi_harness/platform/get_project.py +4 -0
- pulumi_harness/platform/get_project_list.py +18 -63
- pulumi_harness/platform/get_provider.py +11 -2
- pulumi_harness/platform/get_resource_group.py +4 -0
- pulumi_harness/platform/get_role_assignments.py +6 -2
- pulumi_harness/platform/get_roles.py +4 -0
- pulumi_harness/platform/get_secret_file.py +4 -0
- pulumi_harness/platform/get_secret_sshkey.py +4 -0
- pulumi_harness/platform/get_service.py +5 -0
- pulumi_harness/platform/get_service_account.py +4 -0
- pulumi_harness/platform/get_service_list.py +22 -58
- pulumi_harness/platform/get_service_overrides_v2.py +42 -0
- pulumi_harness/platform/get_slo.py +22 -0
- pulumi_harness/platform/get_token.py +2 -0
- pulumi_harness/platform/get_user.py +4 -0
- pulumi_harness/platform/get_usergroup.py +4 -0
- pulumi_harness/platform/get_variables.py +4 -0
- pulumi_harness/platform/get_vault_connector.py +5 -1
- pulumi_harness/platform/get_workspace.py +8 -3
- pulumi_harness/platform/git_connector.py +4 -0
- pulumi_harness/platform/git_ops_agent.py +4 -0
- pulumi_harness/platform/git_ops_applications.py +4 -0
- pulumi_harness/platform/git_ops_cluster.py +51 -0
- pulumi_harness/platform/git_ops_gnupg.py +4 -0
- pulumi_harness/platform/git_ops_repo_cert.py +4 -0
- pulumi_harness/platform/git_ops_repo_cred.py +4 -0
- pulumi_harness/platform/git_ops_repository.py +4 -0
- pulumi_harness/platform/github_connector.py +11 -7
- pulumi_harness/platform/gitlab_connector.py +4 -0
- pulumi_harness/platform/gitops_app_project.py +4 -0
- pulumi_harness/platform/gitops_app_project_mapping.py +4 -0
- pulumi_harness/platform/gitops_applicationset.py +98 -0
- pulumi_harness/platform/gitops_filters.py +51 -179
- pulumi_harness/platform/gitx_webhook.py +4 -0
- pulumi_harness/platform/har_registry.py +42 -43
- pulumi_harness/platform/helm_connector.py +4 -0
- pulumi_harness/platform/iacm_default_pipeline.py +28 -0
- pulumi_harness/platform/infra_module.py +6 -2
- pulumi_harness/platform/infra_variable_set.py +38 -22
- pulumi_harness/platform/infrastructure.py +18 -240
- pulumi_harness/platform/input_set.py +4 -0
- pulumi_harness/platform/jenkins_connector.py +8 -0
- pulumi_harness/platform/jira_connector.py +4 -2
- pulumi_harness/platform/kubernetes_cloud_cost_connector.py +35 -11
- pulumi_harness/platform/kubernetes_connector.py +4 -0
- pulumi_harness/platform/manual_freeze.py +6 -154
- pulumi_harness/platform/monitored_service.py +16 -12
- pulumi_harness/platform/newrelic_connector.py +4 -0
- pulumi_harness/platform/nexus_connector.py +4 -4
- pulumi_harness/platform/notification_rule.py +4 -0
- pulumi_harness/platform/oci_helm_connector.py +4 -0
- pulumi_harness/platform/organization.py +8 -0
- pulumi_harness/platform/outputs.py +2085 -219
- pulumi_harness/platform/overrides.py +48 -2
- pulumi_harness/platform/pagerduty_connector.py +8 -0
- pulumi_harness/platform/pipeline.py +18 -2
- pulumi_harness/platform/pipeline_filters.py +4 -0
- pulumi_harness/platform/policy.py +6 -26
- pulumi_harness/platform/policy_set.py +4 -0
- pulumi_harness/platform/project.py +8 -0
- pulumi_harness/platform/prometheus_connector.py +4 -0
- pulumi_harness/platform/provider.py +4 -2
- pulumi_harness/platform/repo.py +40 -0
- pulumi_harness/platform/resource_group.py +15 -7
- pulumi_harness/platform/role_assignments.py +20 -16
- pulumi_harness/platform/roles.py +8 -0
- pulumi_harness/platform/secret_file.py +8 -0
- pulumi_harness/platform/secret_sshkey.py +6 -2
- pulumi_harness/platform/secret_text.py +78 -0
- pulumi_harness/platform/service.py +13 -494
- pulumi_harness/platform/service_account.py +8 -0
- pulumi_harness/platform/service_now_connector.py +4 -2
- pulumi_harness/platform/service_overrides_v2.py +4 -204
- pulumi_harness/platform/slo.py +12 -18
- pulumi_harness/platform/splunk_connector.py +4 -0
- pulumi_harness/platform/spot_connector.py +4 -0
- pulumi_harness/platform/sumologic_connector.py +4 -0
- pulumi_harness/platform/tas_connector.py +4 -0
- pulumi_harness/platform/template.py +25 -21
- pulumi_harness/platform/template_filters.py +4 -0
- pulumi_harness/platform/terraform_cloud_connector.py +4 -0
- pulumi_harness/platform/token.py +6 -2
- pulumi_harness/platform/triggers.py +8 -0
- pulumi_harness/platform/user.py +13 -9
- pulumi_harness/platform/usergroup.py +71 -7
- pulumi_harness/platform/variables.py +8 -0
- pulumi_harness/platform/vault_connector.py +15 -7
- pulumi_harness/platform/workspace.py +19 -7
- pulumi_harness/platform_api_key.py +6 -66
- pulumi_harness/platform_ccm_filters.py +11 -7
- pulumi_harness/pulumi-plugin.json +1 -1
- pulumi_harness/service/__init__.py +4 -0
- pulumi_harness/service/_inputs.py +1729 -0
- pulumi_harness/service/ami.py +4 -0
- pulumi_harness/service/codedeploy.py +4 -0
- pulumi_harness/service/discovery_agent.py +1211 -0
- pulumi_harness/service/discovery_setting.py +384 -0
- pulumi_harness/service/ecs.py +4 -0
- pulumi_harness/service/get_discovery_agent.py +443 -0
- pulumi_harness/service/get_discovery_setting.py +199 -0
- pulumi_harness/service/helm.py +4 -0
- pulumi_harness/service/kubernetes.py +4 -0
- pulumi_harness/service/lambda_.py +4 -0
- pulumi_harness/service/outputs.py +2367 -117
- pulumi_harness/service/ssh.py +4 -0
- pulumi_harness/service/tanzu.py +4 -0
- pulumi_harness/service/winrm.py +4 -0
- pulumi_harness/ssh_credential.py +4 -0
- pulumi_harness/user.py +4 -0
- pulumi_harness/user_group.py +4 -0
- pulumi_harness/yaml_config.py +4 -0
- {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.8.1.dist-info}/METADATA +1 -1
- pulumi_harness-0.8.1.dist-info/RECORD +357 -0
- pulumi_harness-0.8.0a1755712204.dist-info/RECORD +0 -337
- {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.8.1.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.8.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._inputs import *
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'GetDefaultNotificationTemplateSetResult',
|
|
21
|
+
'AwaitableGetDefaultNotificationTemplateSetResult',
|
|
22
|
+
'get_default_notification_template_set',
|
|
23
|
+
'get_default_notification_template_set_output',
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
@pulumi.output_type
|
|
27
|
+
class GetDefaultNotificationTemplateSetResult:
|
|
28
|
+
"""
|
|
29
|
+
A collection of values returned by getDefaultNotificationTemplateSet.
|
|
30
|
+
"""
|
|
31
|
+
def __init__(__self__, created=None, description=None, event_template_configuration_sets=None, id=None, identifier=None, last_modified=None, name=None, notification_channel_type=None, notification_entity=None, tags=None):
|
|
32
|
+
if created and not isinstance(created, int):
|
|
33
|
+
raise TypeError("Expected argument 'created' to be a int")
|
|
34
|
+
pulumi.set(__self__, "created", created)
|
|
35
|
+
if description and not isinstance(description, str):
|
|
36
|
+
raise TypeError("Expected argument 'description' to be a str")
|
|
37
|
+
pulumi.set(__self__, "description", description)
|
|
38
|
+
if event_template_configuration_sets and not isinstance(event_template_configuration_sets, list):
|
|
39
|
+
raise TypeError("Expected argument 'event_template_configuration_sets' to be a list")
|
|
40
|
+
pulumi.set(__self__, "event_template_configuration_sets", event_template_configuration_sets)
|
|
41
|
+
if id and not isinstance(id, str):
|
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
43
|
+
pulumi.set(__self__, "id", id)
|
|
44
|
+
if identifier and not isinstance(identifier, str):
|
|
45
|
+
raise TypeError("Expected argument 'identifier' to be a str")
|
|
46
|
+
pulumi.set(__self__, "identifier", identifier)
|
|
47
|
+
if last_modified and not isinstance(last_modified, int):
|
|
48
|
+
raise TypeError("Expected argument 'last_modified' to be a int")
|
|
49
|
+
pulumi.set(__self__, "last_modified", last_modified)
|
|
50
|
+
if name and not isinstance(name, str):
|
|
51
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
52
|
+
pulumi.set(__self__, "name", name)
|
|
53
|
+
if notification_channel_type and not isinstance(notification_channel_type, str):
|
|
54
|
+
raise TypeError("Expected argument 'notification_channel_type' to be a str")
|
|
55
|
+
pulumi.set(__self__, "notification_channel_type", notification_channel_type)
|
|
56
|
+
if notification_entity and not isinstance(notification_entity, str):
|
|
57
|
+
raise TypeError("Expected argument 'notification_entity' to be a str")
|
|
58
|
+
pulumi.set(__self__, "notification_entity", notification_entity)
|
|
59
|
+
if tags and not isinstance(tags, dict):
|
|
60
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
61
|
+
pulumi.set(__self__, "tags", tags)
|
|
62
|
+
|
|
63
|
+
@_builtins.property
|
|
64
|
+
@pulumi.getter
|
|
65
|
+
def created(self) -> _builtins.int:
|
|
66
|
+
"""
|
|
67
|
+
Timestamp when the notification rule was created.
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "created")
|
|
70
|
+
|
|
71
|
+
@_builtins.property
|
|
72
|
+
@pulumi.getter
|
|
73
|
+
def description(self) -> Optional[_builtins.str]:
|
|
74
|
+
"""
|
|
75
|
+
Description for Default Notification Template Set
|
|
76
|
+
"""
|
|
77
|
+
return pulumi.get(self, "description")
|
|
78
|
+
|
|
79
|
+
@_builtins.property
|
|
80
|
+
@pulumi.getter(name="eventTemplateConfigurationSets")
|
|
81
|
+
def event_template_configuration_sets(self) -> Sequence['outputs.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetResult']:
|
|
82
|
+
"""
|
|
83
|
+
Set of event-template configurations
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "event_template_configuration_sets")
|
|
86
|
+
|
|
87
|
+
@_builtins.property
|
|
88
|
+
@pulumi.getter
|
|
89
|
+
def id(self) -> _builtins.str:
|
|
90
|
+
"""
|
|
91
|
+
The provider-assigned unique ID for this managed resource.
|
|
92
|
+
"""
|
|
93
|
+
return pulumi.get(self, "id")
|
|
94
|
+
|
|
95
|
+
@_builtins.property
|
|
96
|
+
@pulumi.getter
|
|
97
|
+
def identifier(self) -> _builtins.str:
|
|
98
|
+
"""
|
|
99
|
+
Identifier of Default Notification Template Set
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "identifier")
|
|
102
|
+
|
|
103
|
+
@_builtins.property
|
|
104
|
+
@pulumi.getter(name="lastModified")
|
|
105
|
+
def last_modified(self) -> _builtins.int:
|
|
106
|
+
"""
|
|
107
|
+
Timestamp when the notification rule was last modified.
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "last_modified")
|
|
110
|
+
|
|
111
|
+
@_builtins.property
|
|
112
|
+
@pulumi.getter
|
|
113
|
+
def name(self) -> _builtins.str:
|
|
114
|
+
"""
|
|
115
|
+
Name of Default Notification Template Set
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "name")
|
|
118
|
+
|
|
119
|
+
@_builtins.property
|
|
120
|
+
@pulumi.getter(name="notificationChannelType")
|
|
121
|
+
def notification_channel_type(self) -> _builtins.str:
|
|
122
|
+
"""
|
|
123
|
+
Type of channel (e.g. SLACK, EMAIL, etc.)
|
|
124
|
+
"""
|
|
125
|
+
return pulumi.get(self, "notification_channel_type")
|
|
126
|
+
|
|
127
|
+
@_builtins.property
|
|
128
|
+
@pulumi.getter(name="notificationEntity")
|
|
129
|
+
def notification_entity(self) -> _builtins.str:
|
|
130
|
+
"""
|
|
131
|
+
Type of the entity (e.g. PIPELINE, SERVICE, etc.)
|
|
132
|
+
"""
|
|
133
|
+
return pulumi.get(self, "notification_entity")
|
|
134
|
+
|
|
135
|
+
@_builtins.property
|
|
136
|
+
@pulumi.getter
|
|
137
|
+
def tags(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
138
|
+
"""
|
|
139
|
+
Key-value tags
|
|
140
|
+
"""
|
|
141
|
+
return pulumi.get(self, "tags")
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
class AwaitableGetDefaultNotificationTemplateSetResult(GetDefaultNotificationTemplateSetResult):
|
|
145
|
+
# pylint: disable=using-constant-test
|
|
146
|
+
def __await__(self):
|
|
147
|
+
if False:
|
|
148
|
+
yield self
|
|
149
|
+
return GetDefaultNotificationTemplateSetResult(
|
|
150
|
+
created=self.created,
|
|
151
|
+
description=self.description,
|
|
152
|
+
event_template_configuration_sets=self.event_template_configuration_sets,
|
|
153
|
+
id=self.id,
|
|
154
|
+
identifier=self.identifier,
|
|
155
|
+
last_modified=self.last_modified,
|
|
156
|
+
name=self.name,
|
|
157
|
+
notification_channel_type=self.notification_channel_type,
|
|
158
|
+
notification_entity=self.notification_entity,
|
|
159
|
+
tags=self.tags)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
def get_default_notification_template_set(description: Optional[_builtins.str] = None,
|
|
163
|
+
event_template_configuration_sets: Optional[Sequence[Union['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgs', 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict']]] = None,
|
|
164
|
+
identifier: Optional[_builtins.str] = None,
|
|
165
|
+
name: Optional[_builtins.str] = None,
|
|
166
|
+
notification_channel_type: Optional[_builtins.str] = None,
|
|
167
|
+
notification_entity: Optional[_builtins.str] = None,
|
|
168
|
+
tags: Optional[Mapping[str, _builtins.str]] = None,
|
|
169
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDefaultNotificationTemplateSetResult:
|
|
170
|
+
"""
|
|
171
|
+
Data source for retrieving a Default Notification Template Set.
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
:param _builtins.str description: Description for Default Notification Template Set
|
|
175
|
+
:param Sequence[Union['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgs', 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict']] event_template_configuration_sets: Set of event-template configurations
|
|
176
|
+
:param _builtins.str identifier: Identifier of Default Notification Template Set
|
|
177
|
+
:param _builtins.str name: Name of Default Notification Template Set
|
|
178
|
+
:param _builtins.str notification_channel_type: Type of channel (e.g. SLACK, EMAIL, etc.)
|
|
179
|
+
:param _builtins.str notification_entity: Type of the entity (e.g. PIPELINE, SERVICE, etc.)
|
|
180
|
+
:param Mapping[str, _builtins.str] tags: Key-value tags
|
|
181
|
+
"""
|
|
182
|
+
__args__ = dict()
|
|
183
|
+
__args__['description'] = description
|
|
184
|
+
__args__['eventTemplateConfigurationSets'] = event_template_configuration_sets
|
|
185
|
+
__args__['identifier'] = identifier
|
|
186
|
+
__args__['name'] = name
|
|
187
|
+
__args__['notificationChannelType'] = notification_channel_type
|
|
188
|
+
__args__['notificationEntity'] = notification_entity
|
|
189
|
+
__args__['tags'] = tags
|
|
190
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
191
|
+
__ret__ = pulumi.runtime.invoke('harness:platform/getDefaultNotificationTemplateSet:getDefaultNotificationTemplateSet', __args__, opts=opts, typ=GetDefaultNotificationTemplateSetResult).value
|
|
192
|
+
|
|
193
|
+
return AwaitableGetDefaultNotificationTemplateSetResult(
|
|
194
|
+
created=pulumi.get(__ret__, 'created'),
|
|
195
|
+
description=pulumi.get(__ret__, 'description'),
|
|
196
|
+
event_template_configuration_sets=pulumi.get(__ret__, 'event_template_configuration_sets'),
|
|
197
|
+
id=pulumi.get(__ret__, 'id'),
|
|
198
|
+
identifier=pulumi.get(__ret__, 'identifier'),
|
|
199
|
+
last_modified=pulumi.get(__ret__, 'last_modified'),
|
|
200
|
+
name=pulumi.get(__ret__, 'name'),
|
|
201
|
+
notification_channel_type=pulumi.get(__ret__, 'notification_channel_type'),
|
|
202
|
+
notification_entity=pulumi.get(__ret__, 'notification_entity'),
|
|
203
|
+
tags=pulumi.get(__ret__, 'tags'))
|
|
204
|
+
def get_default_notification_template_set_output(description: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
205
|
+
event_template_configuration_sets: Optional[pulumi.Input[Sequence[Union['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgs', 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict']]]] = None,
|
|
206
|
+
identifier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
207
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
208
|
+
notification_channel_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
209
|
+
notification_entity: Optional[pulumi.Input[_builtins.str]] = None,
|
|
210
|
+
tags: Optional[pulumi.Input[Optional[Mapping[str, _builtins.str]]]] = None,
|
|
211
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDefaultNotificationTemplateSetResult]:
|
|
212
|
+
"""
|
|
213
|
+
Data source for retrieving a Default Notification Template Set.
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
:param _builtins.str description: Description for Default Notification Template Set
|
|
217
|
+
:param Sequence[Union['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgs', 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict']] event_template_configuration_sets: Set of event-template configurations
|
|
218
|
+
:param _builtins.str identifier: Identifier of Default Notification Template Set
|
|
219
|
+
:param _builtins.str name: Name of Default Notification Template Set
|
|
220
|
+
:param _builtins.str notification_channel_type: Type of channel (e.g. SLACK, EMAIL, etc.)
|
|
221
|
+
:param _builtins.str notification_entity: Type of the entity (e.g. PIPELINE, SERVICE, etc.)
|
|
222
|
+
:param Mapping[str, _builtins.str] tags: Key-value tags
|
|
223
|
+
"""
|
|
224
|
+
__args__ = dict()
|
|
225
|
+
__args__['description'] = description
|
|
226
|
+
__args__['eventTemplateConfigurationSets'] = event_template_configuration_sets
|
|
227
|
+
__args__['identifier'] = identifier
|
|
228
|
+
__args__['name'] = name
|
|
229
|
+
__args__['notificationChannelType'] = notification_channel_type
|
|
230
|
+
__args__['notificationEntity'] = notification_entity
|
|
231
|
+
__args__['tags'] = tags
|
|
232
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
233
|
+
__ret__ = pulumi.runtime.invoke_output('harness:platform/getDefaultNotificationTemplateSet:getDefaultNotificationTemplateSet', __args__, opts=opts, typ=GetDefaultNotificationTemplateSetResult)
|
|
234
|
+
return __ret__.apply(lambda __response__: GetDefaultNotificationTemplateSetResult(
|
|
235
|
+
created=pulumi.get(__response__, 'created'),
|
|
236
|
+
description=pulumi.get(__response__, 'description'),
|
|
237
|
+
event_template_configuration_sets=pulumi.get(__response__, 'event_template_configuration_sets'),
|
|
238
|
+
id=pulumi.get(__response__, 'id'),
|
|
239
|
+
identifier=pulumi.get(__response__, 'identifier'),
|
|
240
|
+
last_modified=pulumi.get(__response__, 'last_modified'),
|
|
241
|
+
name=pulumi.get(__response__, 'name'),
|
|
242
|
+
notification_channel_type=pulumi.get(__response__, 'notification_channel_type'),
|
|
243
|
+
notification_entity=pulumi.get(__response__, 'notification_entity'),
|
|
244
|
+
tags=pulumi.get(__response__, 'tags')))
|
|
@@ -82,6 +82,9 @@ class GetEnvironmentResult:
|
|
|
82
82
|
@_builtins.property
|
|
83
83
|
@pulumi.getter(name="gitDetails")
|
|
84
84
|
def git_details(self) -> 'outputs.GetEnvironmentGitDetailsResult':
|
|
85
|
+
"""
|
|
86
|
+
Contains parameters related to Git Experience for remote entities
|
|
87
|
+
"""
|
|
85
88
|
return pulumi.get(self, "git_details")
|
|
86
89
|
|
|
87
90
|
@_builtins.property
|
|
@@ -189,6 +192,7 @@ def get_environment(git_details: Optional[Union['GetEnvironmentGitDetailsArgs',
|
|
|
189
192
|
```
|
|
190
193
|
|
|
191
194
|
|
|
195
|
+
:param Union['GetEnvironmentGitDetailsArgs', 'GetEnvironmentGitDetailsArgsDict'] git_details: Contains parameters related to Git Experience for remote entities
|
|
192
196
|
:param _builtins.str identifier: Unique identifier of the resource.
|
|
193
197
|
:param _builtins.str name: Name of the resource.
|
|
194
198
|
:param _builtins.str org_id: Unique identifier of the organization.
|
|
@@ -236,6 +240,7 @@ def get_environment_output(git_details: Optional[pulumi.Input[Optional[Union['Ge
|
|
|
236
240
|
```
|
|
237
241
|
|
|
238
242
|
|
|
243
|
+
:param Union['GetEnvironmentGitDetailsArgs', 'GetEnvironmentGitDetailsArgsDict'] git_details: Contains parameters related to Git Experience for remote entities
|
|
239
244
|
:param _builtins.str identifier: Unique identifier of the resource.
|
|
240
245
|
:param _builtins.str name: Name of the resource.
|
|
241
246
|
:param _builtins.str org_id: Unique identifier of the organization.
|
|
@@ -57,11 +57,17 @@ class GetEnvironmentListResult:
|
|
|
57
57
|
@_builtins.property
|
|
58
58
|
@pulumi.getter(name="orgId")
|
|
59
59
|
def org_id(self) -> Optional[_builtins.str]:
|
|
60
|
+
"""
|
|
61
|
+
Unique identifier of the organization.
|
|
62
|
+
"""
|
|
60
63
|
return pulumi.get(self, "org_id")
|
|
61
64
|
|
|
62
65
|
@_builtins.property
|
|
63
66
|
@pulumi.getter(name="projectId")
|
|
64
67
|
def project_id(self) -> Optional[_builtins.str]:
|
|
68
|
+
"""
|
|
69
|
+
Unique identifier of the project.
|
|
70
|
+
"""
|
|
65
71
|
return pulumi.get(self, "project_id")
|
|
66
72
|
|
|
67
73
|
|
|
@@ -81,37 +87,11 @@ def get_environment_list(org_id: Optional[_builtins.str] = None,
|
|
|
81
87
|
project_id: Optional[_builtins.str] = None,
|
|
82
88
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEnvironmentListResult:
|
|
83
89
|
"""
|
|
84
|
-
Data source for retrieving Harness environment
|
|
85
|
-
|
|
86
|
-
## Example Usage
|
|
87
|
-
|
|
88
|
-
### Project Level Environment List
|
|
89
|
-
|
|
90
|
-
```python
|
|
91
|
-
import pulumi
|
|
92
|
-
import pulumi_harness as harness
|
|
93
|
-
|
|
94
|
-
example = harness.platform.get_environment_list(org_id="org_id",
|
|
95
|
-
project_id="project_id")
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
### Organisation Level Environment List
|
|
99
|
-
|
|
100
|
-
```python
|
|
101
|
-
import pulumi
|
|
102
|
-
import pulumi_harness as harness
|
|
90
|
+
Data source for retrieving a Harness environment List.
|
|
103
91
|
|
|
104
|
-
example = harness.platform.get_environment_list(org_id="org_id")
|
|
105
|
-
```
|
|
106
92
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
```python
|
|
110
|
-
import pulumi
|
|
111
|
-
import pulumi_harness as harness
|
|
112
|
-
|
|
113
|
-
example = harness.platform.get_environment_list()
|
|
114
|
-
```
|
|
93
|
+
:param _builtins.str org_id: Unique identifier of the organization.
|
|
94
|
+
:param _builtins.str project_id: Unique identifier of the project.
|
|
115
95
|
"""
|
|
116
96
|
__args__ = dict()
|
|
117
97
|
__args__['orgId'] = org_id
|
|
@@ -128,37 +108,11 @@ def get_environment_list_output(org_id: Optional[pulumi.Input[Optional[_builtins
|
|
|
128
108
|
project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
129
109
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEnvironmentListResult]:
|
|
130
110
|
"""
|
|
131
|
-
Data source for retrieving Harness environment
|
|
132
|
-
|
|
133
|
-
## Example Usage
|
|
134
|
-
|
|
135
|
-
### Project Level Environment List
|
|
136
|
-
|
|
137
|
-
```python
|
|
138
|
-
import pulumi
|
|
139
|
-
import pulumi_harness as harness
|
|
140
|
-
|
|
141
|
-
example = harness.platform.get_environment_list(org_id="org_id",
|
|
142
|
-
project_id="project_id")
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
### Organisation Level Environment List
|
|
146
|
-
|
|
147
|
-
```python
|
|
148
|
-
import pulumi
|
|
149
|
-
import pulumi_harness as harness
|
|
150
|
-
|
|
151
|
-
example = harness.platform.get_environment_list(org_id="org_id")
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
### Account Level Environment List
|
|
111
|
+
Data source for retrieving a Harness environment List.
|
|
155
112
|
|
|
156
|
-
```python
|
|
157
|
-
import pulumi
|
|
158
|
-
import pulumi_harness as harness
|
|
159
113
|
|
|
160
|
-
|
|
161
|
-
|
|
114
|
+
:param _builtins.str org_id: Unique identifier of the organization.
|
|
115
|
+
:param _builtins.str project_id: Unique identifier of the project.
|
|
162
116
|
"""
|
|
163
117
|
__args__ = dict()
|
|
164
118
|
__args__['orgId'] = org_id
|
|
@@ -53,7 +53,7 @@ class GetEnvironmentServiceOverridesResult:
|
|
|
53
53
|
@pulumi.getter(name="envId")
|
|
54
54
|
def env_id(self) -> _builtins.str:
|
|
55
55
|
"""
|
|
56
|
-
The env
|
|
56
|
+
The env ID to which the overrides associated.
|
|
57
57
|
"""
|
|
58
58
|
return pulumi.get(self, "env_id")
|
|
59
59
|
|
|
@@ -93,7 +93,7 @@ class GetEnvironmentServiceOverridesResult:
|
|
|
93
93
|
@pulumi.getter(name="serviceId")
|
|
94
94
|
def service_id(self) -> Optional[_builtins.str]:
|
|
95
95
|
"""
|
|
96
|
-
The service
|
|
96
|
+
The service ID to which the overrides applies.
|
|
97
97
|
"""
|
|
98
98
|
return pulumi.get(self, "service_id")
|
|
99
99
|
|
|
@@ -143,11 +143,11 @@ def get_environment_service_overrides(env_id: Optional[_builtins.str] = None,
|
|
|
143
143
|
```
|
|
144
144
|
|
|
145
145
|
|
|
146
|
-
:param _builtins.str env_id: The env
|
|
146
|
+
:param _builtins.str env_id: The env ID to which the overrides associated.
|
|
147
147
|
:param _builtins.str identifier: identifier of the service overrides.
|
|
148
148
|
:param _builtins.str org_id: Unique identifier of the organization.
|
|
149
149
|
:param _builtins.str project_id: Unique identifier of the project.
|
|
150
|
-
:param _builtins.str service_id: The service
|
|
150
|
+
:param _builtins.str service_id: The service ID to which the overrides applies.
|
|
151
151
|
"""
|
|
152
152
|
__args__ = dict()
|
|
153
153
|
__args__['envId'] = env_id
|
|
@@ -188,11 +188,11 @@ def get_environment_service_overrides_output(env_id: Optional[pulumi.Input[_buil
|
|
|
188
188
|
```
|
|
189
189
|
|
|
190
190
|
|
|
191
|
-
:param _builtins.str env_id: The env
|
|
191
|
+
:param _builtins.str env_id: The env ID to which the overrides associated.
|
|
192
192
|
:param _builtins.str identifier: identifier of the service overrides.
|
|
193
193
|
:param _builtins.str org_id: Unique identifier of the organization.
|
|
194
194
|
:param _builtins.str project_id: Unique identifier of the project.
|
|
195
|
-
:param _builtins.str service_id: The service
|
|
195
|
+
:param _builtins.str service_id: The service ID to which the overrides applies.
|
|
196
196
|
"""
|
|
197
197
|
__args__ = dict()
|
|
198
198
|
__args__['envId'] = env_id
|
|
@@ -140,6 +140,8 @@ def get_filters(identifier: Optional[_builtins.str] = None,
|
|
|
140
140
|
type: Optional[_builtins.str] = None,
|
|
141
141
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFiltersResult:
|
|
142
142
|
"""
|
|
143
|
+
Data source for retrieving a Harness Filter. This data source allows you to fetch filters of the following types: {Connector, DelegateProfile, Delegate, EnvironmentGroup, FileStore, Environment}
|
|
144
|
+
|
|
143
145
|
## Example Usage
|
|
144
146
|
|
|
145
147
|
```python
|
|
@@ -181,6 +183,8 @@ def get_filters_output(identifier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
181
183
|
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
182
184
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFiltersResult]:
|
|
183
185
|
"""
|
|
186
|
+
Data source for retrieving a Harness Filter. This data source allows you to fetch filters of the following types: {Connector, DelegateProfile, Delegate, EnvironmentGroup, FileStore, Environment}
|
|
187
|
+
|
|
184
188
|
## Example Usage
|
|
185
189
|
|
|
186
190
|
```python
|
|
@@ -200,6 +200,8 @@ def get_gcp_secret_manager_connector(identifier: Optional[_builtins.str] = None,
|
|
|
200
200
|
project_id: Optional[_builtins.str] = None,
|
|
201
201
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGcpSecretManagerConnectorResult:
|
|
202
202
|
"""
|
|
203
|
+
Datasource for looking up GCP Secret Manager connector.
|
|
204
|
+
|
|
203
205
|
## Example Usage
|
|
204
206
|
|
|
205
207
|
```python
|
|
@@ -243,6 +245,8 @@ def get_gcp_secret_manager_connector_output(identifier: Optional[pulumi.Input[_b
|
|
|
243
245
|
project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
244
246
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetGcpSecretManagerConnectorResult]:
|
|
245
247
|
"""
|
|
248
|
+
Datasource for looking up GCP Secret Manager connector.
|
|
249
|
+
|
|
246
250
|
## Example Usage
|
|
247
251
|
|
|
248
252
|
```python
|
|
@@ -114,6 +114,9 @@ class GetGithubConnectorResult:
|
|
|
114
114
|
@_builtins.property
|
|
115
115
|
@pulumi.getter(name="executeOnDelegate")
|
|
116
116
|
def execute_on_delegate(self) -> _builtins.bool:
|
|
117
|
+
"""
|
|
118
|
+
Execute on delegate or not.
|
|
119
|
+
"""
|
|
117
120
|
return pulumi.get(self, "execute_on_delegate")
|
|
118
121
|
|
|
119
122
|
@_builtins.property
|
|
@@ -90,6 +90,9 @@ class GetGitopsApplicationsResult:
|
|
|
90
90
|
@pulumi.getter(name="accountId")
|
|
91
91
|
@_utilities.deprecated("""This field is deprecated and will be removed in a future release.""")
|
|
92
92
|
def account_id(self) -> _builtins.str:
|
|
93
|
+
"""
|
|
94
|
+
Account identifier of the GitOps application.
|
|
95
|
+
"""
|
|
93
96
|
return pulumi.get(self, "account_id")
|
|
94
97
|
|
|
95
98
|
@_builtins.property
|
|
@@ -192,6 +195,9 @@ class GetGitopsApplicationsResult:
|
|
|
192
195
|
@_builtins.property
|
|
193
196
|
@pulumi.getter(name="repoIds")
|
|
194
197
|
def repo_ids(self) -> Sequence[_builtins.str]:
|
|
198
|
+
"""
|
|
199
|
+
List of repository identifiers of the GitOps for Multi-Source application. Not required if skipRepoValidation is set to true.
|
|
200
|
+
"""
|
|
195
201
|
return pulumi.get(self, "repo_ids")
|
|
196
202
|
|
|
197
203
|
@_builtins.property
|
|
@@ -273,6 +279,7 @@ def get_gitops_applications(account_id: Optional[_builtins.str] = None,
|
|
|
273
279
|
Datasource for fetching a Harness GitOps Application.
|
|
274
280
|
|
|
275
281
|
|
|
282
|
+
:param _builtins.str account_id: Account identifier of the GitOps application.
|
|
276
283
|
:param _builtins.str agent_id: Agent identifier of the GitOps application.
|
|
277
284
|
:param _builtins.str identifier: Identifier of the GitOps application.
|
|
278
285
|
:param _builtins.str name: Name of the GitOps application.
|
|
@@ -320,6 +327,7 @@ def get_gitops_applications_output(account_id: Optional[pulumi.Input[Optional[_b
|
|
|
320
327
|
Datasource for fetching a Harness GitOps Application.
|
|
321
328
|
|
|
322
329
|
|
|
330
|
+
:param _builtins.str account_id: Account identifier of the GitOps application.
|
|
323
331
|
:param _builtins.str agent_id: Agent identifier of the GitOps application.
|
|
324
332
|
:param _builtins.str identifier: Identifier of the GitOps application.
|
|
325
333
|
:param _builtins.str name: Name of the GitOps application.
|
|
@@ -56,13 +56,16 @@ class GetGitopsFiltersResult:
|
|
|
56
56
|
@pulumi.getter(name="filterProperties")
|
|
57
57
|
def filter_properties(self) -> _builtins.str:
|
|
58
58
|
"""
|
|
59
|
-
Properties of the
|
|
59
|
+
Properties of the filters entity defined in Harness as a JSON string. All values should be arrays of strings. Example: jsonencode({"healthStatus": ["Healthy", "Degraded"], "syncStatus": ["Synced"]})
|
|
60
60
|
"""
|
|
61
61
|
return pulumi.get(self, "filter_properties")
|
|
62
62
|
|
|
63
63
|
@_builtins.property
|
|
64
64
|
@pulumi.getter(name="filterVisibility")
|
|
65
65
|
def filter_visibility(self) -> _builtins.str:
|
|
66
|
+
"""
|
|
67
|
+
This indicates visibility of filters, by default it is Everyone.
|
|
68
|
+
"""
|
|
66
69
|
return pulumi.get(self, "filter_visibility")
|
|
67
70
|
|
|
68
71
|
@_builtins.property
|
|
@@ -76,29 +79,41 @@ class GetGitopsFiltersResult:
|
|
|
76
79
|
@_builtins.property
|
|
77
80
|
@pulumi.getter
|
|
78
81
|
def identifier(self) -> _builtins.str:
|
|
82
|
+
"""
|
|
83
|
+
Unique identifier of the resource.
|
|
84
|
+
"""
|
|
79
85
|
return pulumi.get(self, "identifier")
|
|
80
86
|
|
|
81
87
|
@_builtins.property
|
|
82
88
|
@pulumi.getter
|
|
83
89
|
def name(self) -> _builtins.str:
|
|
84
90
|
"""
|
|
85
|
-
Name of the
|
|
91
|
+
Name of the Filter.
|
|
86
92
|
"""
|
|
87
93
|
return pulumi.get(self, "name")
|
|
88
94
|
|
|
89
95
|
@_builtins.property
|
|
90
96
|
@pulumi.getter(name="orgId")
|
|
91
97
|
def org_id(self) -> _builtins.str:
|
|
98
|
+
"""
|
|
99
|
+
Organization Identifier for the Entity.
|
|
100
|
+
"""
|
|
92
101
|
return pulumi.get(self, "org_id")
|
|
93
102
|
|
|
94
103
|
@_builtins.property
|
|
95
104
|
@pulumi.getter(name="projectId")
|
|
96
105
|
def project_id(self) -> _builtins.str:
|
|
106
|
+
"""
|
|
107
|
+
Project Identifier for the Entity.
|
|
108
|
+
"""
|
|
97
109
|
return pulumi.get(self, "project_id")
|
|
98
110
|
|
|
99
111
|
@_builtins.property
|
|
100
112
|
@pulumi.getter
|
|
101
113
|
def type(self) -> _builtins.str:
|
|
114
|
+
"""
|
|
115
|
+
Type of filter.
|
|
116
|
+
"""
|
|
102
117
|
return pulumi.get(self, "type")
|
|
103
118
|
|
|
104
119
|
|
|
@@ -127,10 +142,10 @@ def get_gitops_filters(identifier: Optional[_builtins.str] = None,
|
|
|
127
142
|
Data source for retrieving a Harness GitOps Filter.
|
|
128
143
|
|
|
129
144
|
|
|
130
|
-
:param _builtins.str identifier: Unique identifier of the
|
|
131
|
-
:param _builtins.str org_id: Organization
|
|
132
|
-
:param _builtins.str project_id: Project
|
|
133
|
-
:param _builtins.str type: Type of
|
|
145
|
+
:param _builtins.str identifier: Unique identifier of the resource.
|
|
146
|
+
:param _builtins.str org_id: Organization Identifier for the Entity.
|
|
147
|
+
:param _builtins.str project_id: Project Identifier for the Entity.
|
|
148
|
+
:param _builtins.str type: Type of filter.
|
|
134
149
|
"""
|
|
135
150
|
__args__ = dict()
|
|
136
151
|
__args__['identifier'] = identifier
|
|
@@ -158,10 +173,10 @@ def get_gitops_filters_output(identifier: Optional[pulumi.Input[_builtins.str]]
|
|
|
158
173
|
Data source for retrieving a Harness GitOps Filter.
|
|
159
174
|
|
|
160
175
|
|
|
161
|
-
:param _builtins.str identifier: Unique identifier of the
|
|
162
|
-
:param _builtins.str org_id: Organization
|
|
163
|
-
:param _builtins.str project_id: Project
|
|
164
|
-
:param _builtins.str type: Type of
|
|
176
|
+
:param _builtins.str identifier: Unique identifier of the resource.
|
|
177
|
+
:param _builtins.str org_id: Organization Identifier for the Entity.
|
|
178
|
+
:param _builtins.str project_id: Project Identifier for the Entity.
|
|
179
|
+
:param _builtins.str type: Type of filter.
|
|
165
180
|
"""
|
|
166
181
|
__args__ = dict()
|
|
167
182
|
__args__['identifier'] = identifier
|
|
@@ -101,7 +101,7 @@ class GetGitxWebhookResult:
|
|
|
101
101
|
@pulumi.getter
|
|
102
102
|
def tags(self) -> Optional[Sequence[_builtins.str]]:
|
|
103
103
|
"""
|
|
104
|
-
Tags to associate with the resource.
|
|
104
|
+
Tags to associate with the resource.
|
|
105
105
|
"""
|
|
106
106
|
return pulumi.get(self, "tags")
|
|
107
107
|
|
|
@@ -137,7 +137,7 @@ def get_gitx_webhook(description: Optional[_builtins.str] = None,
|
|
|
137
137
|
:param _builtins.str name: Name of the resource.
|
|
138
138
|
:param _builtins.str org_id: Unique identifier of the organization.
|
|
139
139
|
:param _builtins.str project_id: Unique identifier of the project.
|
|
140
|
-
:param Sequence[_builtins.str] tags: Tags to associate with the resource.
|
|
140
|
+
:param Sequence[_builtins.str] tags: Tags to associate with the resource.
|
|
141
141
|
"""
|
|
142
142
|
__args__ = dict()
|
|
143
143
|
__args__['description'] = description
|
|
@@ -173,7 +173,7 @@ def get_gitx_webhook_output(description: Optional[pulumi.Input[Optional[_builtin
|
|
|
173
173
|
:param _builtins.str name: Name of the resource.
|
|
174
174
|
:param _builtins.str org_id: Unique identifier of the organization.
|
|
175
175
|
:param _builtins.str project_id: Unique identifier of the project.
|
|
176
|
-
:param Sequence[_builtins.str] tags: Tags to associate with the resource.
|
|
176
|
+
:param Sequence[_builtins.str] tags: Tags to associate with the resource.
|
|
177
177
|
"""
|
|
178
178
|
__args__ = dict()
|
|
179
179
|
__args__['description'] = description
|