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
|
@@ -13,10 +13,25 @@ if sys.version_info >= (3, 11):
|
|
|
13
13
|
else:
|
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
15
|
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
16
17
|
|
|
17
18
|
__all__ = [
|
|
18
19
|
'AmiVariable',
|
|
19
20
|
'CodedeployVariable',
|
|
21
|
+
'DiscoveryAgentConfig',
|
|
22
|
+
'DiscoveryAgentConfigData',
|
|
23
|
+
'DiscoveryAgentConfigDataCron',
|
|
24
|
+
'DiscoveryAgentConfigKubernete',
|
|
25
|
+
'DiscoveryAgentConfigKuberneteResource',
|
|
26
|
+
'DiscoveryAgentConfigKuberneteResourceLimit',
|
|
27
|
+
'DiscoveryAgentConfigKuberneteResourceRequest',
|
|
28
|
+
'DiscoveryAgentConfigKuberneteToleration',
|
|
29
|
+
'DiscoveryAgentConfigMtl',
|
|
30
|
+
'DiscoveryAgentConfigProxy',
|
|
31
|
+
'DiscoveryAgentInstallationDetail',
|
|
32
|
+
'DiscoveryAgentInstallationDetailAgentDetail',
|
|
33
|
+
'DiscoveryAgentInstallationDetailAgentDetailCluster',
|
|
34
|
+
'DiscoverySettingImageRegistry',
|
|
20
35
|
'EcsVariable',
|
|
21
36
|
'HelmVariable',
|
|
22
37
|
'KubernetesVariable',
|
|
@@ -24,6 +39,21 @@ __all__ = [
|
|
|
24
39
|
'SshVariable',
|
|
25
40
|
'TanzuVariable',
|
|
26
41
|
'WinrmVariable',
|
|
42
|
+
'GetDiscoveryAgentConfigResult',
|
|
43
|
+
'GetDiscoveryAgentConfigDataResult',
|
|
44
|
+
'GetDiscoveryAgentConfigDataCronResult',
|
|
45
|
+
'GetDiscoveryAgentConfigKuberneteResult',
|
|
46
|
+
'GetDiscoveryAgentConfigKuberneteResourceResult',
|
|
47
|
+
'GetDiscoveryAgentConfigKuberneteResourceLimitResult',
|
|
48
|
+
'GetDiscoveryAgentConfigKuberneteResourceRequestResult',
|
|
49
|
+
'GetDiscoveryAgentConfigKuberneteTolerationResult',
|
|
50
|
+
'GetDiscoveryAgentConfigMtlResult',
|
|
51
|
+
'GetDiscoveryAgentConfigProxyResult',
|
|
52
|
+
'GetDiscoveryAgentInstallationDetailResult',
|
|
53
|
+
'GetDiscoveryAgentInstallationDetailAgentDetailResult',
|
|
54
|
+
'GetDiscoveryAgentInstallationDetailAgentDetailClusterResult',
|
|
55
|
+
'GetDiscoveryAgentInstallationDetailAgentDetailNodeResult',
|
|
56
|
+
'GetDiscoverySettingImageRegistryResult',
|
|
27
57
|
]
|
|
28
58
|
|
|
29
59
|
@pulumi.output_type
|
|
@@ -106,6 +136,1208 @@ class CodedeployVariable(dict):
|
|
|
106
136
|
return pulumi.get(self, "value")
|
|
107
137
|
|
|
108
138
|
|
|
139
|
+
@pulumi.output_type
|
|
140
|
+
class DiscoveryAgentConfig(dict):
|
|
141
|
+
@staticmethod
|
|
142
|
+
def __key_warning(key: str):
|
|
143
|
+
suggest = None
|
|
144
|
+
if key == "collectorImage":
|
|
145
|
+
suggest = "collector_image"
|
|
146
|
+
elif key == "imagePullSecrets":
|
|
147
|
+
suggest = "image_pull_secrets"
|
|
148
|
+
elif key == "logWatcherImage":
|
|
149
|
+
suggest = "log_watcher_image"
|
|
150
|
+
elif key == "skipSecureVerify":
|
|
151
|
+
suggest = "skip_secure_verify"
|
|
152
|
+
|
|
153
|
+
if suggest:
|
|
154
|
+
pulumi.log.warn(f"Key '{key}' not found in DiscoveryAgentConfig. Access the value via the '{suggest}' property getter instead.")
|
|
155
|
+
|
|
156
|
+
def __getitem__(self, key: str) -> Any:
|
|
157
|
+
DiscoveryAgentConfig.__key_warning(key)
|
|
158
|
+
return super().__getitem__(key)
|
|
159
|
+
|
|
160
|
+
def get(self, key: str, default = None) -> Any:
|
|
161
|
+
DiscoveryAgentConfig.__key_warning(key)
|
|
162
|
+
return super().get(key, default)
|
|
163
|
+
|
|
164
|
+
def __init__(__self__, *,
|
|
165
|
+
kubernetes: Sequence['outputs.DiscoveryAgentConfigKubernete'],
|
|
166
|
+
collector_image: Optional[_builtins.str] = None,
|
|
167
|
+
datas: Optional[Sequence['outputs.DiscoveryAgentConfigData']] = None,
|
|
168
|
+
image_pull_secrets: Optional[Sequence[_builtins.str]] = None,
|
|
169
|
+
log_watcher_image: Optional[_builtins.str] = None,
|
|
170
|
+
mtls: Optional[Sequence['outputs.DiscoveryAgentConfigMtl']] = None,
|
|
171
|
+
proxies: Optional[Sequence['outputs.DiscoveryAgentConfigProxy']] = None,
|
|
172
|
+
skip_secure_verify: Optional[_builtins.bool] = None):
|
|
173
|
+
"""
|
|
174
|
+
:param Sequence['DiscoveryAgentConfigKuberneteArgs'] kubernetes: Kubernetes-specific configuration.
|
|
175
|
+
:param _builtins.str collector_image: Docker image for the collector.
|
|
176
|
+
:param Sequence['DiscoveryAgentConfigDataArgs'] datas: Data collection configuration.
|
|
177
|
+
:param Sequence[_builtins.str] image_pull_secrets: List of image pull secrets.
|
|
178
|
+
:param _builtins.str log_watcher_image: Docker image for the log watcher.
|
|
179
|
+
:param Sequence['DiscoveryAgentConfigMtlArgs'] mtls: mTLS configuration.
|
|
180
|
+
:param Sequence['DiscoveryAgentConfigProxyArgs'] proxies: Proxy configuration.
|
|
181
|
+
:param _builtins.bool skip_secure_verify: Whether to skip TLS verification.
|
|
182
|
+
"""
|
|
183
|
+
pulumi.set(__self__, "kubernetes", kubernetes)
|
|
184
|
+
if collector_image is not None:
|
|
185
|
+
pulumi.set(__self__, "collector_image", collector_image)
|
|
186
|
+
if datas is not None:
|
|
187
|
+
pulumi.set(__self__, "datas", datas)
|
|
188
|
+
if image_pull_secrets is not None:
|
|
189
|
+
pulumi.set(__self__, "image_pull_secrets", image_pull_secrets)
|
|
190
|
+
if log_watcher_image is not None:
|
|
191
|
+
pulumi.set(__self__, "log_watcher_image", log_watcher_image)
|
|
192
|
+
if mtls is not None:
|
|
193
|
+
pulumi.set(__self__, "mtls", mtls)
|
|
194
|
+
if proxies is not None:
|
|
195
|
+
pulumi.set(__self__, "proxies", proxies)
|
|
196
|
+
if skip_secure_verify is not None:
|
|
197
|
+
pulumi.set(__self__, "skip_secure_verify", skip_secure_verify)
|
|
198
|
+
|
|
199
|
+
@_builtins.property
|
|
200
|
+
@pulumi.getter
|
|
201
|
+
def kubernetes(self) -> Sequence['outputs.DiscoveryAgentConfigKubernete']:
|
|
202
|
+
"""
|
|
203
|
+
Kubernetes-specific configuration.
|
|
204
|
+
"""
|
|
205
|
+
return pulumi.get(self, "kubernetes")
|
|
206
|
+
|
|
207
|
+
@_builtins.property
|
|
208
|
+
@pulumi.getter(name="collectorImage")
|
|
209
|
+
def collector_image(self) -> Optional[_builtins.str]:
|
|
210
|
+
"""
|
|
211
|
+
Docker image for the collector.
|
|
212
|
+
"""
|
|
213
|
+
return pulumi.get(self, "collector_image")
|
|
214
|
+
|
|
215
|
+
@_builtins.property
|
|
216
|
+
@pulumi.getter
|
|
217
|
+
def datas(self) -> Optional[Sequence['outputs.DiscoveryAgentConfigData']]:
|
|
218
|
+
"""
|
|
219
|
+
Data collection configuration.
|
|
220
|
+
"""
|
|
221
|
+
return pulumi.get(self, "datas")
|
|
222
|
+
|
|
223
|
+
@_builtins.property
|
|
224
|
+
@pulumi.getter(name="imagePullSecrets")
|
|
225
|
+
def image_pull_secrets(self) -> Optional[Sequence[_builtins.str]]:
|
|
226
|
+
"""
|
|
227
|
+
List of image pull secrets.
|
|
228
|
+
"""
|
|
229
|
+
return pulumi.get(self, "image_pull_secrets")
|
|
230
|
+
|
|
231
|
+
@_builtins.property
|
|
232
|
+
@pulumi.getter(name="logWatcherImage")
|
|
233
|
+
def log_watcher_image(self) -> Optional[_builtins.str]:
|
|
234
|
+
"""
|
|
235
|
+
Docker image for the log watcher.
|
|
236
|
+
"""
|
|
237
|
+
return pulumi.get(self, "log_watcher_image")
|
|
238
|
+
|
|
239
|
+
@_builtins.property
|
|
240
|
+
@pulumi.getter
|
|
241
|
+
def mtls(self) -> Optional[Sequence['outputs.DiscoveryAgentConfigMtl']]:
|
|
242
|
+
"""
|
|
243
|
+
mTLS configuration.
|
|
244
|
+
"""
|
|
245
|
+
return pulumi.get(self, "mtls")
|
|
246
|
+
|
|
247
|
+
@_builtins.property
|
|
248
|
+
@pulumi.getter
|
|
249
|
+
def proxies(self) -> Optional[Sequence['outputs.DiscoveryAgentConfigProxy']]:
|
|
250
|
+
"""
|
|
251
|
+
Proxy configuration.
|
|
252
|
+
"""
|
|
253
|
+
return pulumi.get(self, "proxies")
|
|
254
|
+
|
|
255
|
+
@_builtins.property
|
|
256
|
+
@pulumi.getter(name="skipSecureVerify")
|
|
257
|
+
def skip_secure_verify(self) -> Optional[_builtins.bool]:
|
|
258
|
+
"""
|
|
259
|
+
Whether to skip TLS verification.
|
|
260
|
+
"""
|
|
261
|
+
return pulumi.get(self, "skip_secure_verify")
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
@pulumi.output_type
|
|
265
|
+
class DiscoveryAgentConfigData(dict):
|
|
266
|
+
@staticmethod
|
|
267
|
+
def __key_warning(key: str):
|
|
268
|
+
suggest = None
|
|
269
|
+
if key == "blacklistedNamespaces":
|
|
270
|
+
suggest = "blacklisted_namespaces"
|
|
271
|
+
elif key == "collectionWindowInMin":
|
|
272
|
+
suggest = "collection_window_in_min"
|
|
273
|
+
elif key == "enableBatchResources":
|
|
274
|
+
suggest = "enable_batch_resources"
|
|
275
|
+
elif key == "enableNodeAgent":
|
|
276
|
+
suggest = "enable_node_agent"
|
|
277
|
+
elif key == "enableOrphanedPod":
|
|
278
|
+
suggest = "enable_orphaned_pod"
|
|
279
|
+
elif key == "namespaceSelector":
|
|
280
|
+
suggest = "namespace_selector"
|
|
281
|
+
elif key == "nodeAgentSelector":
|
|
282
|
+
suggest = "node_agent_selector"
|
|
283
|
+
elif key == "observedNamespaces":
|
|
284
|
+
suggest = "observed_namespaces"
|
|
285
|
+
|
|
286
|
+
if suggest:
|
|
287
|
+
pulumi.log.warn(f"Key '{key}' not found in DiscoveryAgentConfigData. Access the value via the '{suggest}' property getter instead.")
|
|
288
|
+
|
|
289
|
+
def __getitem__(self, key: str) -> Any:
|
|
290
|
+
DiscoveryAgentConfigData.__key_warning(key)
|
|
291
|
+
return super().__getitem__(key)
|
|
292
|
+
|
|
293
|
+
def get(self, key: str, default = None) -> Any:
|
|
294
|
+
DiscoveryAgentConfigData.__key_warning(key)
|
|
295
|
+
return super().get(key, default)
|
|
296
|
+
|
|
297
|
+
def __init__(__self__, *,
|
|
298
|
+
blacklisted_namespaces: Optional[Sequence[_builtins.str]] = None,
|
|
299
|
+
collection_window_in_min: Optional[_builtins.int] = None,
|
|
300
|
+
crons: Optional[Sequence['outputs.DiscoveryAgentConfigDataCron']] = None,
|
|
301
|
+
enable_batch_resources: Optional[_builtins.bool] = None,
|
|
302
|
+
enable_node_agent: Optional[_builtins.bool] = None,
|
|
303
|
+
enable_orphaned_pod: Optional[_builtins.bool] = None,
|
|
304
|
+
namespace_selector: Optional[_builtins.str] = None,
|
|
305
|
+
node_agent_selector: Optional[_builtins.str] = None,
|
|
306
|
+
observed_namespaces: Optional[Sequence[_builtins.str]] = None):
|
|
307
|
+
"""
|
|
308
|
+
:param Sequence[_builtins.str] blacklisted_namespaces: List of namespaces to exclude from discovery.
|
|
309
|
+
:param _builtins.int collection_window_in_min: Collection window in minutes.
|
|
310
|
+
:param Sequence['DiscoveryAgentConfigDataCronArgs'] crons: Cron schedule for data collection.
|
|
311
|
+
:param _builtins.bool enable_batch_resources: Whether to enable batch resources.
|
|
312
|
+
:param _builtins.bool enable_node_agent: Whether to enable node agent.
|
|
313
|
+
:param _builtins.bool enable_orphaned_pod: Whether to enable orphaned pod detection.
|
|
314
|
+
:param _builtins.str namespace_selector: Namespace selector for the agent.
|
|
315
|
+
:param _builtins.str node_agent_selector: Node selector for the node agent.
|
|
316
|
+
:param Sequence[_builtins.str] observed_namespaces: List of namespaces to observe.
|
|
317
|
+
"""
|
|
318
|
+
if blacklisted_namespaces is not None:
|
|
319
|
+
pulumi.set(__self__, "blacklisted_namespaces", blacklisted_namespaces)
|
|
320
|
+
if collection_window_in_min is not None:
|
|
321
|
+
pulumi.set(__self__, "collection_window_in_min", collection_window_in_min)
|
|
322
|
+
if crons is not None:
|
|
323
|
+
pulumi.set(__self__, "crons", crons)
|
|
324
|
+
if enable_batch_resources is not None:
|
|
325
|
+
pulumi.set(__self__, "enable_batch_resources", enable_batch_resources)
|
|
326
|
+
if enable_node_agent is not None:
|
|
327
|
+
pulumi.set(__self__, "enable_node_agent", enable_node_agent)
|
|
328
|
+
if enable_orphaned_pod is not None:
|
|
329
|
+
pulumi.set(__self__, "enable_orphaned_pod", enable_orphaned_pod)
|
|
330
|
+
if namespace_selector is not None:
|
|
331
|
+
pulumi.set(__self__, "namespace_selector", namespace_selector)
|
|
332
|
+
if node_agent_selector is not None:
|
|
333
|
+
pulumi.set(__self__, "node_agent_selector", node_agent_selector)
|
|
334
|
+
if observed_namespaces is not None:
|
|
335
|
+
pulumi.set(__self__, "observed_namespaces", observed_namespaces)
|
|
336
|
+
|
|
337
|
+
@_builtins.property
|
|
338
|
+
@pulumi.getter(name="blacklistedNamespaces")
|
|
339
|
+
def blacklisted_namespaces(self) -> Optional[Sequence[_builtins.str]]:
|
|
340
|
+
"""
|
|
341
|
+
List of namespaces to exclude from discovery.
|
|
342
|
+
"""
|
|
343
|
+
return pulumi.get(self, "blacklisted_namespaces")
|
|
344
|
+
|
|
345
|
+
@_builtins.property
|
|
346
|
+
@pulumi.getter(name="collectionWindowInMin")
|
|
347
|
+
def collection_window_in_min(self) -> Optional[_builtins.int]:
|
|
348
|
+
"""
|
|
349
|
+
Collection window in minutes.
|
|
350
|
+
"""
|
|
351
|
+
return pulumi.get(self, "collection_window_in_min")
|
|
352
|
+
|
|
353
|
+
@_builtins.property
|
|
354
|
+
@pulumi.getter
|
|
355
|
+
def crons(self) -> Optional[Sequence['outputs.DiscoveryAgentConfigDataCron']]:
|
|
356
|
+
"""
|
|
357
|
+
Cron schedule for data collection.
|
|
358
|
+
"""
|
|
359
|
+
return pulumi.get(self, "crons")
|
|
360
|
+
|
|
361
|
+
@_builtins.property
|
|
362
|
+
@pulumi.getter(name="enableBatchResources")
|
|
363
|
+
def enable_batch_resources(self) -> Optional[_builtins.bool]:
|
|
364
|
+
"""
|
|
365
|
+
Whether to enable batch resources.
|
|
366
|
+
"""
|
|
367
|
+
return pulumi.get(self, "enable_batch_resources")
|
|
368
|
+
|
|
369
|
+
@_builtins.property
|
|
370
|
+
@pulumi.getter(name="enableNodeAgent")
|
|
371
|
+
def enable_node_agent(self) -> Optional[_builtins.bool]:
|
|
372
|
+
"""
|
|
373
|
+
Whether to enable node agent.
|
|
374
|
+
"""
|
|
375
|
+
return pulumi.get(self, "enable_node_agent")
|
|
376
|
+
|
|
377
|
+
@_builtins.property
|
|
378
|
+
@pulumi.getter(name="enableOrphanedPod")
|
|
379
|
+
def enable_orphaned_pod(self) -> Optional[_builtins.bool]:
|
|
380
|
+
"""
|
|
381
|
+
Whether to enable orphaned pod detection.
|
|
382
|
+
"""
|
|
383
|
+
return pulumi.get(self, "enable_orphaned_pod")
|
|
384
|
+
|
|
385
|
+
@_builtins.property
|
|
386
|
+
@pulumi.getter(name="namespaceSelector")
|
|
387
|
+
def namespace_selector(self) -> Optional[_builtins.str]:
|
|
388
|
+
"""
|
|
389
|
+
Namespace selector for the agent.
|
|
390
|
+
"""
|
|
391
|
+
return pulumi.get(self, "namespace_selector")
|
|
392
|
+
|
|
393
|
+
@_builtins.property
|
|
394
|
+
@pulumi.getter(name="nodeAgentSelector")
|
|
395
|
+
def node_agent_selector(self) -> Optional[_builtins.str]:
|
|
396
|
+
"""
|
|
397
|
+
Node selector for the node agent.
|
|
398
|
+
"""
|
|
399
|
+
return pulumi.get(self, "node_agent_selector")
|
|
400
|
+
|
|
401
|
+
@_builtins.property
|
|
402
|
+
@pulumi.getter(name="observedNamespaces")
|
|
403
|
+
def observed_namespaces(self) -> Optional[Sequence[_builtins.str]]:
|
|
404
|
+
"""
|
|
405
|
+
List of namespaces to observe.
|
|
406
|
+
"""
|
|
407
|
+
return pulumi.get(self, "observed_namespaces")
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
@pulumi.output_type
|
|
411
|
+
class DiscoveryAgentConfigDataCron(dict):
|
|
412
|
+
def __init__(__self__, *,
|
|
413
|
+
expression: Optional[_builtins.str] = None):
|
|
414
|
+
"""
|
|
415
|
+
:param _builtins.str expression: Cron expression for scheduling.
|
|
416
|
+
"""
|
|
417
|
+
if expression is not None:
|
|
418
|
+
pulumi.set(__self__, "expression", expression)
|
|
419
|
+
|
|
420
|
+
@_builtins.property
|
|
421
|
+
@pulumi.getter
|
|
422
|
+
def expression(self) -> Optional[_builtins.str]:
|
|
423
|
+
"""
|
|
424
|
+
Cron expression for scheduling.
|
|
425
|
+
"""
|
|
426
|
+
return pulumi.get(self, "expression")
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
@pulumi.output_type
|
|
430
|
+
class DiscoveryAgentConfigKubernete(dict):
|
|
431
|
+
@staticmethod
|
|
432
|
+
def __key_warning(key: str):
|
|
433
|
+
suggest = None
|
|
434
|
+
if key == "disableNamespaceCreation":
|
|
435
|
+
suggest = "disable_namespace_creation"
|
|
436
|
+
elif key == "imagePullPolicy":
|
|
437
|
+
suggest = "image_pull_policy"
|
|
438
|
+
elif key == "nodeSelector":
|
|
439
|
+
suggest = "node_selector"
|
|
440
|
+
elif key == "runAsGroup":
|
|
441
|
+
suggest = "run_as_group"
|
|
442
|
+
elif key == "runAsUser":
|
|
443
|
+
suggest = "run_as_user"
|
|
444
|
+
elif key == "serviceAccount":
|
|
445
|
+
suggest = "service_account"
|
|
446
|
+
|
|
447
|
+
if suggest:
|
|
448
|
+
pulumi.log.warn(f"Key '{key}' not found in DiscoveryAgentConfigKubernete. Access the value via the '{suggest}' property getter instead.")
|
|
449
|
+
|
|
450
|
+
def __getitem__(self, key: str) -> Any:
|
|
451
|
+
DiscoveryAgentConfigKubernete.__key_warning(key)
|
|
452
|
+
return super().__getitem__(key)
|
|
453
|
+
|
|
454
|
+
def get(self, key: str, default = None) -> Any:
|
|
455
|
+
DiscoveryAgentConfigKubernete.__key_warning(key)
|
|
456
|
+
return super().get(key, default)
|
|
457
|
+
|
|
458
|
+
def __init__(__self__, *,
|
|
459
|
+
namespace: _builtins.str,
|
|
460
|
+
annotations: Optional[Mapping[str, _builtins.str]] = None,
|
|
461
|
+
disable_namespace_creation: Optional[_builtins.bool] = None,
|
|
462
|
+
image_pull_policy: Optional[_builtins.str] = None,
|
|
463
|
+
labels: Optional[Mapping[str, _builtins.str]] = None,
|
|
464
|
+
namespaced: Optional[_builtins.bool] = None,
|
|
465
|
+
node_selector: Optional[Mapping[str, _builtins.str]] = None,
|
|
466
|
+
resources: Optional[Sequence['outputs.DiscoveryAgentConfigKuberneteResource']] = None,
|
|
467
|
+
run_as_group: Optional[_builtins.int] = None,
|
|
468
|
+
run_as_user: Optional[_builtins.int] = None,
|
|
469
|
+
service_account: Optional[_builtins.str] = None,
|
|
470
|
+
tolerations: Optional[Sequence['outputs.DiscoveryAgentConfigKuberneteToleration']] = None):
|
|
471
|
+
"""
|
|
472
|
+
:param _builtins.str namespace: Kubernetes namespace to use
|
|
473
|
+
:param Mapping[str, _builtins.str] annotations: Annotations to add to all resources.
|
|
474
|
+
:param _builtins.bool disable_namespace_creation: Whether to disable namespace creation.
|
|
475
|
+
:param _builtins.str image_pull_policy: The image pull policy.
|
|
476
|
+
:param Mapping[str, _builtins.str] labels: Labels to add to all resources.
|
|
477
|
+
:param _builtins.bool namespaced: Whether the agent is namespaced.
|
|
478
|
+
:param Mapping[str, _builtins.str] node_selector: Node selector labels.
|
|
479
|
+
:param Sequence['DiscoveryAgentConfigKuberneteResourceArgs'] resources: Compute resource requirements for the agent container.
|
|
480
|
+
:param _builtins.int run_as_group: The group ID to run as.
|
|
481
|
+
:param _builtins.int run_as_user: The user ID to run as.
|
|
482
|
+
:param _builtins.str service_account: Service account to use
|
|
483
|
+
:param Sequence['DiscoveryAgentConfigKuberneteTolerationArgs'] tolerations: Tolerations for pod assignment.
|
|
484
|
+
"""
|
|
485
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
486
|
+
if annotations is not None:
|
|
487
|
+
pulumi.set(__self__, "annotations", annotations)
|
|
488
|
+
if disable_namespace_creation is not None:
|
|
489
|
+
pulumi.set(__self__, "disable_namespace_creation", disable_namespace_creation)
|
|
490
|
+
if image_pull_policy is not None:
|
|
491
|
+
pulumi.set(__self__, "image_pull_policy", image_pull_policy)
|
|
492
|
+
if labels is not None:
|
|
493
|
+
pulumi.set(__self__, "labels", labels)
|
|
494
|
+
if namespaced is not None:
|
|
495
|
+
pulumi.set(__self__, "namespaced", namespaced)
|
|
496
|
+
if node_selector is not None:
|
|
497
|
+
pulumi.set(__self__, "node_selector", node_selector)
|
|
498
|
+
if resources is not None:
|
|
499
|
+
pulumi.set(__self__, "resources", resources)
|
|
500
|
+
if run_as_group is not None:
|
|
501
|
+
pulumi.set(__self__, "run_as_group", run_as_group)
|
|
502
|
+
if run_as_user is not None:
|
|
503
|
+
pulumi.set(__self__, "run_as_user", run_as_user)
|
|
504
|
+
if service_account is not None:
|
|
505
|
+
pulumi.set(__self__, "service_account", service_account)
|
|
506
|
+
if tolerations is not None:
|
|
507
|
+
pulumi.set(__self__, "tolerations", tolerations)
|
|
508
|
+
|
|
509
|
+
@_builtins.property
|
|
510
|
+
@pulumi.getter
|
|
511
|
+
def namespace(self) -> _builtins.str:
|
|
512
|
+
"""
|
|
513
|
+
Kubernetes namespace to use
|
|
514
|
+
"""
|
|
515
|
+
return pulumi.get(self, "namespace")
|
|
516
|
+
|
|
517
|
+
@_builtins.property
|
|
518
|
+
@pulumi.getter
|
|
519
|
+
def annotations(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
520
|
+
"""
|
|
521
|
+
Annotations to add to all resources.
|
|
522
|
+
"""
|
|
523
|
+
return pulumi.get(self, "annotations")
|
|
524
|
+
|
|
525
|
+
@_builtins.property
|
|
526
|
+
@pulumi.getter(name="disableNamespaceCreation")
|
|
527
|
+
def disable_namespace_creation(self) -> Optional[_builtins.bool]:
|
|
528
|
+
"""
|
|
529
|
+
Whether to disable namespace creation.
|
|
530
|
+
"""
|
|
531
|
+
return pulumi.get(self, "disable_namespace_creation")
|
|
532
|
+
|
|
533
|
+
@_builtins.property
|
|
534
|
+
@pulumi.getter(name="imagePullPolicy")
|
|
535
|
+
def image_pull_policy(self) -> Optional[_builtins.str]:
|
|
536
|
+
"""
|
|
537
|
+
The image pull policy.
|
|
538
|
+
"""
|
|
539
|
+
return pulumi.get(self, "image_pull_policy")
|
|
540
|
+
|
|
541
|
+
@_builtins.property
|
|
542
|
+
@pulumi.getter
|
|
543
|
+
def labels(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
544
|
+
"""
|
|
545
|
+
Labels to add to all resources.
|
|
546
|
+
"""
|
|
547
|
+
return pulumi.get(self, "labels")
|
|
548
|
+
|
|
549
|
+
@_builtins.property
|
|
550
|
+
@pulumi.getter
|
|
551
|
+
def namespaced(self) -> Optional[_builtins.bool]:
|
|
552
|
+
"""
|
|
553
|
+
Whether the agent is namespaced.
|
|
554
|
+
"""
|
|
555
|
+
return pulumi.get(self, "namespaced")
|
|
556
|
+
|
|
557
|
+
@_builtins.property
|
|
558
|
+
@pulumi.getter(name="nodeSelector")
|
|
559
|
+
def node_selector(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
560
|
+
"""
|
|
561
|
+
Node selector labels.
|
|
562
|
+
"""
|
|
563
|
+
return pulumi.get(self, "node_selector")
|
|
564
|
+
|
|
565
|
+
@_builtins.property
|
|
566
|
+
@pulumi.getter
|
|
567
|
+
def resources(self) -> Optional[Sequence['outputs.DiscoveryAgentConfigKuberneteResource']]:
|
|
568
|
+
"""
|
|
569
|
+
Compute resource requirements for the agent container.
|
|
570
|
+
"""
|
|
571
|
+
return pulumi.get(self, "resources")
|
|
572
|
+
|
|
573
|
+
@_builtins.property
|
|
574
|
+
@pulumi.getter(name="runAsGroup")
|
|
575
|
+
def run_as_group(self) -> Optional[_builtins.int]:
|
|
576
|
+
"""
|
|
577
|
+
The group ID to run as.
|
|
578
|
+
"""
|
|
579
|
+
return pulumi.get(self, "run_as_group")
|
|
580
|
+
|
|
581
|
+
@_builtins.property
|
|
582
|
+
@pulumi.getter(name="runAsUser")
|
|
583
|
+
def run_as_user(self) -> Optional[_builtins.int]:
|
|
584
|
+
"""
|
|
585
|
+
The user ID to run as.
|
|
586
|
+
"""
|
|
587
|
+
return pulumi.get(self, "run_as_user")
|
|
588
|
+
|
|
589
|
+
@_builtins.property
|
|
590
|
+
@pulumi.getter(name="serviceAccount")
|
|
591
|
+
def service_account(self) -> Optional[_builtins.str]:
|
|
592
|
+
"""
|
|
593
|
+
Service account to use
|
|
594
|
+
"""
|
|
595
|
+
return pulumi.get(self, "service_account")
|
|
596
|
+
|
|
597
|
+
@_builtins.property
|
|
598
|
+
@pulumi.getter
|
|
599
|
+
def tolerations(self) -> Optional[Sequence['outputs.DiscoveryAgentConfigKuberneteToleration']]:
|
|
600
|
+
"""
|
|
601
|
+
Tolerations for pod assignment.
|
|
602
|
+
"""
|
|
603
|
+
return pulumi.get(self, "tolerations")
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
@pulumi.output_type
|
|
607
|
+
class DiscoveryAgentConfigKuberneteResource(dict):
|
|
608
|
+
def __init__(__self__, *,
|
|
609
|
+
limits: Optional[Sequence['outputs.DiscoveryAgentConfigKuberneteResourceLimit']] = None,
|
|
610
|
+
requests: Optional[Sequence['outputs.DiscoveryAgentConfigKuberneteResourceRequest']] = None):
|
|
611
|
+
"""
|
|
612
|
+
:param Sequence['DiscoveryAgentConfigKuberneteResourceLimitArgs'] limits: Maximum amount of compute resources allowed.
|
|
613
|
+
:param Sequence['DiscoveryAgentConfigKuberneteResourceRequestArgs'] requests: Minimum amount of compute resources required.
|
|
614
|
+
"""
|
|
615
|
+
if limits is not None:
|
|
616
|
+
pulumi.set(__self__, "limits", limits)
|
|
617
|
+
if requests is not None:
|
|
618
|
+
pulumi.set(__self__, "requests", requests)
|
|
619
|
+
|
|
620
|
+
@_builtins.property
|
|
621
|
+
@pulumi.getter
|
|
622
|
+
def limits(self) -> Optional[Sequence['outputs.DiscoveryAgentConfigKuberneteResourceLimit']]:
|
|
623
|
+
"""
|
|
624
|
+
Maximum amount of compute resources allowed.
|
|
625
|
+
"""
|
|
626
|
+
return pulumi.get(self, "limits")
|
|
627
|
+
|
|
628
|
+
@_builtins.property
|
|
629
|
+
@pulumi.getter
|
|
630
|
+
def requests(self) -> Optional[Sequence['outputs.DiscoveryAgentConfigKuberneteResourceRequest']]:
|
|
631
|
+
"""
|
|
632
|
+
Minimum amount of compute resources required.
|
|
633
|
+
"""
|
|
634
|
+
return pulumi.get(self, "requests")
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
@pulumi.output_type
|
|
638
|
+
class DiscoveryAgentConfigKuberneteResourceLimit(dict):
|
|
639
|
+
def __init__(__self__, *,
|
|
640
|
+
cpu: Optional[_builtins.str] = None,
|
|
641
|
+
memory: Optional[_builtins.str] = None):
|
|
642
|
+
"""
|
|
643
|
+
:param _builtins.str cpu: CPU limit in CPU units (e.g., 500m = 0.5 CPU, 2 = 2 CPUs).
|
|
644
|
+
:param _builtins.str memory: Memory limit in bytes (e.g., 128Mi, 1Gi).
|
|
645
|
+
"""
|
|
646
|
+
if cpu is not None:
|
|
647
|
+
pulumi.set(__self__, "cpu", cpu)
|
|
648
|
+
if memory is not None:
|
|
649
|
+
pulumi.set(__self__, "memory", memory)
|
|
650
|
+
|
|
651
|
+
@_builtins.property
|
|
652
|
+
@pulumi.getter
|
|
653
|
+
def cpu(self) -> Optional[_builtins.str]:
|
|
654
|
+
"""
|
|
655
|
+
CPU limit in CPU units (e.g., 500m = 0.5 CPU, 2 = 2 CPUs).
|
|
656
|
+
"""
|
|
657
|
+
return pulumi.get(self, "cpu")
|
|
658
|
+
|
|
659
|
+
@_builtins.property
|
|
660
|
+
@pulumi.getter
|
|
661
|
+
def memory(self) -> Optional[_builtins.str]:
|
|
662
|
+
"""
|
|
663
|
+
Memory limit in bytes (e.g., 128Mi, 1Gi).
|
|
664
|
+
"""
|
|
665
|
+
return pulumi.get(self, "memory")
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
@pulumi.output_type
|
|
669
|
+
class DiscoveryAgentConfigKuberneteResourceRequest(dict):
|
|
670
|
+
def __init__(__self__, *,
|
|
671
|
+
cpu: Optional[_builtins.str] = None,
|
|
672
|
+
memory: Optional[_builtins.str] = None):
|
|
673
|
+
"""
|
|
674
|
+
:param _builtins.str cpu: CPU request in CPU units (e.g., 100m = 0.1 CPU).
|
|
675
|
+
:param _builtins.str memory: Memory request in bytes (e.g., 128Mi, 1Gi).
|
|
676
|
+
"""
|
|
677
|
+
if cpu is not None:
|
|
678
|
+
pulumi.set(__self__, "cpu", cpu)
|
|
679
|
+
if memory is not None:
|
|
680
|
+
pulumi.set(__self__, "memory", memory)
|
|
681
|
+
|
|
682
|
+
@_builtins.property
|
|
683
|
+
@pulumi.getter
|
|
684
|
+
def cpu(self) -> Optional[_builtins.str]:
|
|
685
|
+
"""
|
|
686
|
+
CPU request in CPU units (e.g., 100m = 0.1 CPU).
|
|
687
|
+
"""
|
|
688
|
+
return pulumi.get(self, "cpu")
|
|
689
|
+
|
|
690
|
+
@_builtins.property
|
|
691
|
+
@pulumi.getter
|
|
692
|
+
def memory(self) -> Optional[_builtins.str]:
|
|
693
|
+
"""
|
|
694
|
+
Memory request in bytes (e.g., 128Mi, 1Gi).
|
|
695
|
+
"""
|
|
696
|
+
return pulumi.get(self, "memory")
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
@pulumi.output_type
|
|
700
|
+
class DiscoveryAgentConfigKuberneteToleration(dict):
|
|
701
|
+
@staticmethod
|
|
702
|
+
def __key_warning(key: str):
|
|
703
|
+
suggest = None
|
|
704
|
+
if key == "tolerationSeconds":
|
|
705
|
+
suggest = "toleration_seconds"
|
|
706
|
+
|
|
707
|
+
if suggest:
|
|
708
|
+
pulumi.log.warn(f"Key '{key}' not found in DiscoveryAgentConfigKuberneteToleration. Access the value via the '{suggest}' property getter instead.")
|
|
709
|
+
|
|
710
|
+
def __getitem__(self, key: str) -> Any:
|
|
711
|
+
DiscoveryAgentConfigKuberneteToleration.__key_warning(key)
|
|
712
|
+
return super().__getitem__(key)
|
|
713
|
+
|
|
714
|
+
def get(self, key: str, default = None) -> Any:
|
|
715
|
+
DiscoveryAgentConfigKuberneteToleration.__key_warning(key)
|
|
716
|
+
return super().get(key, default)
|
|
717
|
+
|
|
718
|
+
def __init__(__self__, *,
|
|
719
|
+
effect: _builtins.str,
|
|
720
|
+
key: _builtins.str,
|
|
721
|
+
operator: _builtins.str,
|
|
722
|
+
toleration_seconds: Optional[_builtins.int] = None,
|
|
723
|
+
value: Optional[_builtins.str] = None):
|
|
724
|
+
"""
|
|
725
|
+
:param _builtins.str effect: Effect indicates the taint effect to match.
|
|
726
|
+
:param _builtins.str key: The taint key that the toleration applies to.
|
|
727
|
+
:param _builtins.str operator: Operator represents a key's relationship to the value.
|
|
728
|
+
:param _builtins.int toleration_seconds: TolerationSeconds represents the period of time the toleration tolerates the taint.
|
|
729
|
+
:param _builtins.str value: The taint value the toleration matches to.
|
|
730
|
+
"""
|
|
731
|
+
pulumi.set(__self__, "effect", effect)
|
|
732
|
+
pulumi.set(__self__, "key", key)
|
|
733
|
+
pulumi.set(__self__, "operator", operator)
|
|
734
|
+
if toleration_seconds is not None:
|
|
735
|
+
pulumi.set(__self__, "toleration_seconds", toleration_seconds)
|
|
736
|
+
if value is not None:
|
|
737
|
+
pulumi.set(__self__, "value", value)
|
|
738
|
+
|
|
739
|
+
@_builtins.property
|
|
740
|
+
@pulumi.getter
|
|
741
|
+
def effect(self) -> _builtins.str:
|
|
742
|
+
"""
|
|
743
|
+
Effect indicates the taint effect to match.
|
|
744
|
+
"""
|
|
745
|
+
return pulumi.get(self, "effect")
|
|
746
|
+
|
|
747
|
+
@_builtins.property
|
|
748
|
+
@pulumi.getter
|
|
749
|
+
def key(self) -> _builtins.str:
|
|
750
|
+
"""
|
|
751
|
+
The taint key that the toleration applies to.
|
|
752
|
+
"""
|
|
753
|
+
return pulumi.get(self, "key")
|
|
754
|
+
|
|
755
|
+
@_builtins.property
|
|
756
|
+
@pulumi.getter
|
|
757
|
+
def operator(self) -> _builtins.str:
|
|
758
|
+
"""
|
|
759
|
+
Operator represents a key's relationship to the value.
|
|
760
|
+
"""
|
|
761
|
+
return pulumi.get(self, "operator")
|
|
762
|
+
|
|
763
|
+
@_builtins.property
|
|
764
|
+
@pulumi.getter(name="tolerationSeconds")
|
|
765
|
+
def toleration_seconds(self) -> Optional[_builtins.int]:
|
|
766
|
+
"""
|
|
767
|
+
TolerationSeconds represents the period of time the toleration tolerates the taint.
|
|
768
|
+
"""
|
|
769
|
+
return pulumi.get(self, "toleration_seconds")
|
|
770
|
+
|
|
771
|
+
@_builtins.property
|
|
772
|
+
@pulumi.getter
|
|
773
|
+
def value(self) -> Optional[_builtins.str]:
|
|
774
|
+
"""
|
|
775
|
+
The taint value the toleration matches to.
|
|
776
|
+
"""
|
|
777
|
+
return pulumi.get(self, "value")
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
@pulumi.output_type
|
|
781
|
+
class DiscoveryAgentConfigMtl(dict):
|
|
782
|
+
@staticmethod
|
|
783
|
+
def __key_warning(key: str):
|
|
784
|
+
suggest = None
|
|
785
|
+
if key == "certPath":
|
|
786
|
+
suggest = "cert_path"
|
|
787
|
+
elif key == "keyPath":
|
|
788
|
+
suggest = "key_path"
|
|
789
|
+
elif key == "secretName":
|
|
790
|
+
suggest = "secret_name"
|
|
791
|
+
|
|
792
|
+
if suggest:
|
|
793
|
+
pulumi.log.warn(f"Key '{key}' not found in DiscoveryAgentConfigMtl. Access the value via the '{suggest}' property getter instead.")
|
|
794
|
+
|
|
795
|
+
def __getitem__(self, key: str) -> Any:
|
|
796
|
+
DiscoveryAgentConfigMtl.__key_warning(key)
|
|
797
|
+
return super().__getitem__(key)
|
|
798
|
+
|
|
799
|
+
def get(self, key: str, default = None) -> Any:
|
|
800
|
+
DiscoveryAgentConfigMtl.__key_warning(key)
|
|
801
|
+
return super().get(key, default)
|
|
802
|
+
|
|
803
|
+
def __init__(__self__, *,
|
|
804
|
+
cert_path: Optional[_builtins.str] = None,
|
|
805
|
+
key_path: Optional[_builtins.str] = None,
|
|
806
|
+
secret_name: Optional[_builtins.str] = None,
|
|
807
|
+
url: Optional[_builtins.str] = None):
|
|
808
|
+
"""
|
|
809
|
+
:param _builtins.str cert_path: Path to the certificate file.
|
|
810
|
+
:param _builtins.str key_path: Path to the key file.
|
|
811
|
+
:param _builtins.str secret_name: Name of the Kubernetes secret containing the certificate and key.
|
|
812
|
+
:param _builtins.str url: URL of the mTLS server.
|
|
813
|
+
"""
|
|
814
|
+
if cert_path is not None:
|
|
815
|
+
pulumi.set(__self__, "cert_path", cert_path)
|
|
816
|
+
if key_path is not None:
|
|
817
|
+
pulumi.set(__self__, "key_path", key_path)
|
|
818
|
+
if secret_name is not None:
|
|
819
|
+
pulumi.set(__self__, "secret_name", secret_name)
|
|
820
|
+
if url is not None:
|
|
821
|
+
pulumi.set(__self__, "url", url)
|
|
822
|
+
|
|
823
|
+
@_builtins.property
|
|
824
|
+
@pulumi.getter(name="certPath")
|
|
825
|
+
def cert_path(self) -> Optional[_builtins.str]:
|
|
826
|
+
"""
|
|
827
|
+
Path to the certificate file.
|
|
828
|
+
"""
|
|
829
|
+
return pulumi.get(self, "cert_path")
|
|
830
|
+
|
|
831
|
+
@_builtins.property
|
|
832
|
+
@pulumi.getter(name="keyPath")
|
|
833
|
+
def key_path(self) -> Optional[_builtins.str]:
|
|
834
|
+
"""
|
|
835
|
+
Path to the key file.
|
|
836
|
+
"""
|
|
837
|
+
return pulumi.get(self, "key_path")
|
|
838
|
+
|
|
839
|
+
@_builtins.property
|
|
840
|
+
@pulumi.getter(name="secretName")
|
|
841
|
+
def secret_name(self) -> Optional[_builtins.str]:
|
|
842
|
+
"""
|
|
843
|
+
Name of the Kubernetes secret containing the certificate and key.
|
|
844
|
+
"""
|
|
845
|
+
return pulumi.get(self, "secret_name")
|
|
846
|
+
|
|
847
|
+
@_builtins.property
|
|
848
|
+
@pulumi.getter
|
|
849
|
+
def url(self) -> Optional[_builtins.str]:
|
|
850
|
+
"""
|
|
851
|
+
URL of the mTLS server.
|
|
852
|
+
"""
|
|
853
|
+
return pulumi.get(self, "url")
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
@pulumi.output_type
|
|
857
|
+
class DiscoveryAgentConfigProxy(dict):
|
|
858
|
+
@staticmethod
|
|
859
|
+
def __key_warning(key: str):
|
|
860
|
+
suggest = None
|
|
861
|
+
if key == "httpProxy":
|
|
862
|
+
suggest = "http_proxy"
|
|
863
|
+
elif key == "httpsProxy":
|
|
864
|
+
suggest = "https_proxy"
|
|
865
|
+
elif key == "noProxy":
|
|
866
|
+
suggest = "no_proxy"
|
|
867
|
+
|
|
868
|
+
if suggest:
|
|
869
|
+
pulumi.log.warn(f"Key '{key}' not found in DiscoveryAgentConfigProxy. Access the value via the '{suggest}' property getter instead.")
|
|
870
|
+
|
|
871
|
+
def __getitem__(self, key: str) -> Any:
|
|
872
|
+
DiscoveryAgentConfigProxy.__key_warning(key)
|
|
873
|
+
return super().__getitem__(key)
|
|
874
|
+
|
|
875
|
+
def get(self, key: str, default = None) -> Any:
|
|
876
|
+
DiscoveryAgentConfigProxy.__key_warning(key)
|
|
877
|
+
return super().get(key, default)
|
|
878
|
+
|
|
879
|
+
def __init__(__self__, *,
|
|
880
|
+
http_proxy: Optional[_builtins.str] = None,
|
|
881
|
+
https_proxy: Optional[_builtins.str] = None,
|
|
882
|
+
no_proxy: Optional[_builtins.str] = None,
|
|
883
|
+
url: Optional[_builtins.str] = None):
|
|
884
|
+
"""
|
|
885
|
+
:param _builtins.str http_proxy: HTTP proxy URL.
|
|
886
|
+
:param _builtins.str https_proxy: HTTPS proxy URL.
|
|
887
|
+
:param _builtins.str no_proxy: Comma-separated list of hosts that should not use the proxy.
|
|
888
|
+
:param _builtins.str url: Proxy server URL.
|
|
889
|
+
"""
|
|
890
|
+
if http_proxy is not None:
|
|
891
|
+
pulumi.set(__self__, "http_proxy", http_proxy)
|
|
892
|
+
if https_proxy is not None:
|
|
893
|
+
pulumi.set(__self__, "https_proxy", https_proxy)
|
|
894
|
+
if no_proxy is not None:
|
|
895
|
+
pulumi.set(__self__, "no_proxy", no_proxy)
|
|
896
|
+
if url is not None:
|
|
897
|
+
pulumi.set(__self__, "url", url)
|
|
898
|
+
|
|
899
|
+
@_builtins.property
|
|
900
|
+
@pulumi.getter(name="httpProxy")
|
|
901
|
+
def http_proxy(self) -> Optional[_builtins.str]:
|
|
902
|
+
"""
|
|
903
|
+
HTTP proxy URL.
|
|
904
|
+
"""
|
|
905
|
+
return pulumi.get(self, "http_proxy")
|
|
906
|
+
|
|
907
|
+
@_builtins.property
|
|
908
|
+
@pulumi.getter(name="httpsProxy")
|
|
909
|
+
def https_proxy(self) -> Optional[_builtins.str]:
|
|
910
|
+
"""
|
|
911
|
+
HTTPS proxy URL.
|
|
912
|
+
"""
|
|
913
|
+
return pulumi.get(self, "https_proxy")
|
|
914
|
+
|
|
915
|
+
@_builtins.property
|
|
916
|
+
@pulumi.getter(name="noProxy")
|
|
917
|
+
def no_proxy(self) -> Optional[_builtins.str]:
|
|
918
|
+
"""
|
|
919
|
+
Comma-separated list of hosts that should not use the proxy.
|
|
920
|
+
"""
|
|
921
|
+
return pulumi.get(self, "no_proxy")
|
|
922
|
+
|
|
923
|
+
@_builtins.property
|
|
924
|
+
@pulumi.getter
|
|
925
|
+
def url(self) -> Optional[_builtins.str]:
|
|
926
|
+
"""
|
|
927
|
+
Proxy server URL.
|
|
928
|
+
"""
|
|
929
|
+
return pulumi.get(self, "url")
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
@pulumi.output_type
|
|
933
|
+
class DiscoveryAgentInstallationDetail(dict):
|
|
934
|
+
@staticmethod
|
|
935
|
+
def __key_warning(key: str):
|
|
936
|
+
suggest = None
|
|
937
|
+
if key == "accountIdentifier":
|
|
938
|
+
suggest = "account_identifier"
|
|
939
|
+
elif key == "agentDetails":
|
|
940
|
+
suggest = "agent_details"
|
|
941
|
+
elif key == "agentId":
|
|
942
|
+
suggest = "agent_id"
|
|
943
|
+
elif key == "createdAt":
|
|
944
|
+
suggest = "created_at"
|
|
945
|
+
elif key == "createdBy":
|
|
946
|
+
suggest = "created_by"
|
|
947
|
+
elif key == "delegateId":
|
|
948
|
+
suggest = "delegate_id"
|
|
949
|
+
elif key == "delegateTaskId":
|
|
950
|
+
suggest = "delegate_task_id"
|
|
951
|
+
elif key == "delegateTaskStatus":
|
|
952
|
+
suggest = "delegate_task_status"
|
|
953
|
+
elif key == "environmentIdentifier":
|
|
954
|
+
suggest = "environment_identifier"
|
|
955
|
+
elif key == "isCronTriggered":
|
|
956
|
+
suggest = "is_cron_triggered"
|
|
957
|
+
elif key == "logStreamCreatedAt":
|
|
958
|
+
suggest = "log_stream_created_at"
|
|
959
|
+
elif key == "logStreamId":
|
|
960
|
+
suggest = "log_stream_id"
|
|
961
|
+
elif key == "organizationIdentifier":
|
|
962
|
+
suggest = "organization_identifier"
|
|
963
|
+
elif key == "projectIdentifier":
|
|
964
|
+
suggest = "project_identifier"
|
|
965
|
+
elif key == "updatedAt":
|
|
966
|
+
suggest = "updated_at"
|
|
967
|
+
elif key == "updatedBy":
|
|
968
|
+
suggest = "updated_by"
|
|
969
|
+
|
|
970
|
+
if suggest:
|
|
971
|
+
pulumi.log.warn(f"Key '{key}' not found in DiscoveryAgentInstallationDetail. Access the value via the '{suggest}' property getter instead.")
|
|
972
|
+
|
|
973
|
+
def __getitem__(self, key: str) -> Any:
|
|
974
|
+
DiscoveryAgentInstallationDetail.__key_warning(key)
|
|
975
|
+
return super().__getitem__(key)
|
|
976
|
+
|
|
977
|
+
def get(self, key: str, default = None) -> Any:
|
|
978
|
+
DiscoveryAgentInstallationDetail.__key_warning(key)
|
|
979
|
+
return super().get(key, default)
|
|
980
|
+
|
|
981
|
+
def __init__(__self__, *,
|
|
982
|
+
account_identifier: Optional[_builtins.str] = None,
|
|
983
|
+
agent_details: Optional[Sequence['outputs.DiscoveryAgentInstallationDetailAgentDetail']] = None,
|
|
984
|
+
agent_id: Optional[_builtins.str] = None,
|
|
985
|
+
created_at: Optional[_builtins.str] = None,
|
|
986
|
+
created_by: Optional[_builtins.str] = None,
|
|
987
|
+
delegate_id: Optional[_builtins.str] = None,
|
|
988
|
+
delegate_task_id: Optional[_builtins.str] = None,
|
|
989
|
+
delegate_task_status: Optional[_builtins.str] = None,
|
|
990
|
+
environment_identifier: Optional[_builtins.str] = None,
|
|
991
|
+
id: Optional[_builtins.str] = None,
|
|
992
|
+
is_cron_triggered: Optional[_builtins.bool] = None,
|
|
993
|
+
log_stream_created_at: Optional[_builtins.str] = None,
|
|
994
|
+
log_stream_id: Optional[_builtins.str] = None,
|
|
995
|
+
organization_identifier: Optional[_builtins.str] = None,
|
|
996
|
+
project_identifier: Optional[_builtins.str] = None,
|
|
997
|
+
removed: Optional[_builtins.bool] = None,
|
|
998
|
+
stopped: Optional[_builtins.bool] = None,
|
|
999
|
+
updated_at: Optional[_builtins.str] = None,
|
|
1000
|
+
updated_by: Optional[_builtins.str] = None):
|
|
1001
|
+
"""
|
|
1002
|
+
:param _builtins.str account_identifier: The account identifier for the installation.
|
|
1003
|
+
:param Sequence['DiscoveryAgentInstallationDetailAgentDetailArgs'] agent_details: Details about the installed agent.
|
|
1004
|
+
:param _builtins.str agent_id: The ID of the installed agent.
|
|
1005
|
+
:param _builtins.str created_at: The timestamp when the installation was created.
|
|
1006
|
+
:param _builtins.str created_by: The user who created the installation.
|
|
1007
|
+
:param _builtins.str delegate_id: The ID of the delegate used for installation.
|
|
1008
|
+
:param _builtins.str delegate_task_id: The ID of the delegate task for the installation.
|
|
1009
|
+
:param _builtins.str delegate_task_status: The status of the delegate task (e.g., 'SUCCESS').
|
|
1010
|
+
:param _builtins.str environment_identifier: The environment identifier for the installation.
|
|
1011
|
+
:param _builtins.str id: The unique identifier of the installation.
|
|
1012
|
+
:param _builtins.bool is_cron_triggered: Whether the installation was triggered by a cron job.
|
|
1013
|
+
:param _builtins.str log_stream_created_at: The timestamp when the log stream was created.
|
|
1014
|
+
:param _builtins.str log_stream_id: The ID of the log stream for the installation.
|
|
1015
|
+
:param _builtins.str organization_identifier: The organization identifier for the installation.
|
|
1016
|
+
:param _builtins.str project_identifier: The project identifier for the installation.
|
|
1017
|
+
:param _builtins.bool removed: Whether the installation has been removed.
|
|
1018
|
+
:param _builtins.bool stopped: Whether the installation has been stopped.
|
|
1019
|
+
:param _builtins.str updated_at: The timestamp when the installation was last updated.
|
|
1020
|
+
:param _builtins.str updated_by: The user who last updated the installation.
|
|
1021
|
+
"""
|
|
1022
|
+
if account_identifier is not None:
|
|
1023
|
+
pulumi.set(__self__, "account_identifier", account_identifier)
|
|
1024
|
+
if agent_details is not None:
|
|
1025
|
+
pulumi.set(__self__, "agent_details", agent_details)
|
|
1026
|
+
if agent_id is not None:
|
|
1027
|
+
pulumi.set(__self__, "agent_id", agent_id)
|
|
1028
|
+
if created_at is not None:
|
|
1029
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
1030
|
+
if created_by is not None:
|
|
1031
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
1032
|
+
if delegate_id is not None:
|
|
1033
|
+
pulumi.set(__self__, "delegate_id", delegate_id)
|
|
1034
|
+
if delegate_task_id is not None:
|
|
1035
|
+
pulumi.set(__self__, "delegate_task_id", delegate_task_id)
|
|
1036
|
+
if delegate_task_status is not None:
|
|
1037
|
+
pulumi.set(__self__, "delegate_task_status", delegate_task_status)
|
|
1038
|
+
if environment_identifier is not None:
|
|
1039
|
+
pulumi.set(__self__, "environment_identifier", environment_identifier)
|
|
1040
|
+
if id is not None:
|
|
1041
|
+
pulumi.set(__self__, "id", id)
|
|
1042
|
+
if is_cron_triggered is not None:
|
|
1043
|
+
pulumi.set(__self__, "is_cron_triggered", is_cron_triggered)
|
|
1044
|
+
if log_stream_created_at is not None:
|
|
1045
|
+
pulumi.set(__self__, "log_stream_created_at", log_stream_created_at)
|
|
1046
|
+
if log_stream_id is not None:
|
|
1047
|
+
pulumi.set(__self__, "log_stream_id", log_stream_id)
|
|
1048
|
+
if organization_identifier is not None:
|
|
1049
|
+
pulumi.set(__self__, "organization_identifier", organization_identifier)
|
|
1050
|
+
if project_identifier is not None:
|
|
1051
|
+
pulumi.set(__self__, "project_identifier", project_identifier)
|
|
1052
|
+
if removed is not None:
|
|
1053
|
+
pulumi.set(__self__, "removed", removed)
|
|
1054
|
+
if stopped is not None:
|
|
1055
|
+
pulumi.set(__self__, "stopped", stopped)
|
|
1056
|
+
if updated_at is not None:
|
|
1057
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
|
1058
|
+
if updated_by is not None:
|
|
1059
|
+
pulumi.set(__self__, "updated_by", updated_by)
|
|
1060
|
+
|
|
1061
|
+
@_builtins.property
|
|
1062
|
+
@pulumi.getter(name="accountIdentifier")
|
|
1063
|
+
def account_identifier(self) -> Optional[_builtins.str]:
|
|
1064
|
+
"""
|
|
1065
|
+
The account identifier for the installation.
|
|
1066
|
+
"""
|
|
1067
|
+
return pulumi.get(self, "account_identifier")
|
|
1068
|
+
|
|
1069
|
+
@_builtins.property
|
|
1070
|
+
@pulumi.getter(name="agentDetails")
|
|
1071
|
+
def agent_details(self) -> Optional[Sequence['outputs.DiscoveryAgentInstallationDetailAgentDetail']]:
|
|
1072
|
+
"""
|
|
1073
|
+
Details about the installed agent.
|
|
1074
|
+
"""
|
|
1075
|
+
return pulumi.get(self, "agent_details")
|
|
1076
|
+
|
|
1077
|
+
@_builtins.property
|
|
1078
|
+
@pulumi.getter(name="agentId")
|
|
1079
|
+
def agent_id(self) -> Optional[_builtins.str]:
|
|
1080
|
+
"""
|
|
1081
|
+
The ID of the installed agent.
|
|
1082
|
+
"""
|
|
1083
|
+
return pulumi.get(self, "agent_id")
|
|
1084
|
+
|
|
1085
|
+
@_builtins.property
|
|
1086
|
+
@pulumi.getter(name="createdAt")
|
|
1087
|
+
def created_at(self) -> Optional[_builtins.str]:
|
|
1088
|
+
"""
|
|
1089
|
+
The timestamp when the installation was created.
|
|
1090
|
+
"""
|
|
1091
|
+
return pulumi.get(self, "created_at")
|
|
1092
|
+
|
|
1093
|
+
@_builtins.property
|
|
1094
|
+
@pulumi.getter(name="createdBy")
|
|
1095
|
+
def created_by(self) -> Optional[_builtins.str]:
|
|
1096
|
+
"""
|
|
1097
|
+
The user who created the installation.
|
|
1098
|
+
"""
|
|
1099
|
+
return pulumi.get(self, "created_by")
|
|
1100
|
+
|
|
1101
|
+
@_builtins.property
|
|
1102
|
+
@pulumi.getter(name="delegateId")
|
|
1103
|
+
def delegate_id(self) -> Optional[_builtins.str]:
|
|
1104
|
+
"""
|
|
1105
|
+
The ID of the delegate used for installation.
|
|
1106
|
+
"""
|
|
1107
|
+
return pulumi.get(self, "delegate_id")
|
|
1108
|
+
|
|
1109
|
+
@_builtins.property
|
|
1110
|
+
@pulumi.getter(name="delegateTaskId")
|
|
1111
|
+
def delegate_task_id(self) -> Optional[_builtins.str]:
|
|
1112
|
+
"""
|
|
1113
|
+
The ID of the delegate task for the installation.
|
|
1114
|
+
"""
|
|
1115
|
+
return pulumi.get(self, "delegate_task_id")
|
|
1116
|
+
|
|
1117
|
+
@_builtins.property
|
|
1118
|
+
@pulumi.getter(name="delegateTaskStatus")
|
|
1119
|
+
def delegate_task_status(self) -> Optional[_builtins.str]:
|
|
1120
|
+
"""
|
|
1121
|
+
The status of the delegate task (e.g., 'SUCCESS').
|
|
1122
|
+
"""
|
|
1123
|
+
return pulumi.get(self, "delegate_task_status")
|
|
1124
|
+
|
|
1125
|
+
@_builtins.property
|
|
1126
|
+
@pulumi.getter(name="environmentIdentifier")
|
|
1127
|
+
def environment_identifier(self) -> Optional[_builtins.str]:
|
|
1128
|
+
"""
|
|
1129
|
+
The environment identifier for the installation.
|
|
1130
|
+
"""
|
|
1131
|
+
return pulumi.get(self, "environment_identifier")
|
|
1132
|
+
|
|
1133
|
+
@_builtins.property
|
|
1134
|
+
@pulumi.getter
|
|
1135
|
+
def id(self) -> Optional[_builtins.str]:
|
|
1136
|
+
"""
|
|
1137
|
+
The unique identifier of the installation.
|
|
1138
|
+
"""
|
|
1139
|
+
return pulumi.get(self, "id")
|
|
1140
|
+
|
|
1141
|
+
@_builtins.property
|
|
1142
|
+
@pulumi.getter(name="isCronTriggered")
|
|
1143
|
+
def is_cron_triggered(self) -> Optional[_builtins.bool]:
|
|
1144
|
+
"""
|
|
1145
|
+
Whether the installation was triggered by a cron job.
|
|
1146
|
+
"""
|
|
1147
|
+
return pulumi.get(self, "is_cron_triggered")
|
|
1148
|
+
|
|
1149
|
+
@_builtins.property
|
|
1150
|
+
@pulumi.getter(name="logStreamCreatedAt")
|
|
1151
|
+
def log_stream_created_at(self) -> Optional[_builtins.str]:
|
|
1152
|
+
"""
|
|
1153
|
+
The timestamp when the log stream was created.
|
|
1154
|
+
"""
|
|
1155
|
+
return pulumi.get(self, "log_stream_created_at")
|
|
1156
|
+
|
|
1157
|
+
@_builtins.property
|
|
1158
|
+
@pulumi.getter(name="logStreamId")
|
|
1159
|
+
def log_stream_id(self) -> Optional[_builtins.str]:
|
|
1160
|
+
"""
|
|
1161
|
+
The ID of the log stream for the installation.
|
|
1162
|
+
"""
|
|
1163
|
+
return pulumi.get(self, "log_stream_id")
|
|
1164
|
+
|
|
1165
|
+
@_builtins.property
|
|
1166
|
+
@pulumi.getter(name="organizationIdentifier")
|
|
1167
|
+
def organization_identifier(self) -> Optional[_builtins.str]:
|
|
1168
|
+
"""
|
|
1169
|
+
The organization identifier for the installation.
|
|
1170
|
+
"""
|
|
1171
|
+
return pulumi.get(self, "organization_identifier")
|
|
1172
|
+
|
|
1173
|
+
@_builtins.property
|
|
1174
|
+
@pulumi.getter(name="projectIdentifier")
|
|
1175
|
+
def project_identifier(self) -> Optional[_builtins.str]:
|
|
1176
|
+
"""
|
|
1177
|
+
The project identifier for the installation.
|
|
1178
|
+
"""
|
|
1179
|
+
return pulumi.get(self, "project_identifier")
|
|
1180
|
+
|
|
1181
|
+
@_builtins.property
|
|
1182
|
+
@pulumi.getter
|
|
1183
|
+
def removed(self) -> Optional[_builtins.bool]:
|
|
1184
|
+
"""
|
|
1185
|
+
Whether the installation has been removed.
|
|
1186
|
+
"""
|
|
1187
|
+
return pulumi.get(self, "removed")
|
|
1188
|
+
|
|
1189
|
+
@_builtins.property
|
|
1190
|
+
@pulumi.getter
|
|
1191
|
+
def stopped(self) -> Optional[_builtins.bool]:
|
|
1192
|
+
"""
|
|
1193
|
+
Whether the installation has been stopped.
|
|
1194
|
+
"""
|
|
1195
|
+
return pulumi.get(self, "stopped")
|
|
1196
|
+
|
|
1197
|
+
@_builtins.property
|
|
1198
|
+
@pulumi.getter(name="updatedAt")
|
|
1199
|
+
def updated_at(self) -> Optional[_builtins.str]:
|
|
1200
|
+
"""
|
|
1201
|
+
The timestamp when the installation was last updated.
|
|
1202
|
+
"""
|
|
1203
|
+
return pulumi.get(self, "updated_at")
|
|
1204
|
+
|
|
1205
|
+
@_builtins.property
|
|
1206
|
+
@pulumi.getter(name="updatedBy")
|
|
1207
|
+
def updated_by(self) -> Optional[_builtins.str]:
|
|
1208
|
+
"""
|
|
1209
|
+
The user who last updated the installation.
|
|
1210
|
+
"""
|
|
1211
|
+
return pulumi.get(self, "updated_by")
|
|
1212
|
+
|
|
1213
|
+
|
|
1214
|
+
@pulumi.output_type
|
|
1215
|
+
class DiscoveryAgentInstallationDetailAgentDetail(dict):
|
|
1216
|
+
def __init__(__self__, *,
|
|
1217
|
+
clusters: Optional[Sequence['outputs.DiscoveryAgentInstallationDetailAgentDetailCluster']] = None,
|
|
1218
|
+
status: Optional[_builtins.str] = None):
|
|
1219
|
+
"""
|
|
1220
|
+
:param Sequence['DiscoveryAgentInstallationDetailAgentDetailClusterArgs'] clusters: Details about the cluster where the agent is installed.
|
|
1221
|
+
:param _builtins.str status: The status of the agent installation.
|
|
1222
|
+
"""
|
|
1223
|
+
if clusters is not None:
|
|
1224
|
+
pulumi.set(__self__, "clusters", clusters)
|
|
1225
|
+
if status is not None:
|
|
1226
|
+
pulumi.set(__self__, "status", status)
|
|
1227
|
+
|
|
1228
|
+
@_builtins.property
|
|
1229
|
+
@pulumi.getter
|
|
1230
|
+
def clusters(self) -> Optional[Sequence['outputs.DiscoveryAgentInstallationDetailAgentDetailCluster']]:
|
|
1231
|
+
"""
|
|
1232
|
+
Details about the cluster where the agent is installed.
|
|
1233
|
+
"""
|
|
1234
|
+
return pulumi.get(self, "clusters")
|
|
1235
|
+
|
|
1236
|
+
@_builtins.property
|
|
1237
|
+
@pulumi.getter
|
|
1238
|
+
def status(self) -> Optional[_builtins.str]:
|
|
1239
|
+
"""
|
|
1240
|
+
The status of the agent installation.
|
|
1241
|
+
"""
|
|
1242
|
+
return pulumi.get(self, "status")
|
|
1243
|
+
|
|
1244
|
+
|
|
1245
|
+
@pulumi.output_type
|
|
1246
|
+
class DiscoveryAgentInstallationDetailAgentDetailCluster(dict):
|
|
1247
|
+
def __init__(__self__, *,
|
|
1248
|
+
name: Optional[_builtins.str] = None,
|
|
1249
|
+
namespace: Optional[_builtins.str] = None,
|
|
1250
|
+
status: Optional[_builtins.str] = None,
|
|
1251
|
+
uid: Optional[_builtins.str] = None):
|
|
1252
|
+
"""
|
|
1253
|
+
:param _builtins.str name: The name of the cluster.
|
|
1254
|
+
:param _builtins.str namespace: The namespace where the agent is installed.
|
|
1255
|
+
:param _builtins.str status: The status of the cluster (e.g., 'Succeeded').
|
|
1256
|
+
:param _builtins.str uid: The UID of the cluster.
|
|
1257
|
+
"""
|
|
1258
|
+
if name is not None:
|
|
1259
|
+
pulumi.set(__self__, "name", name)
|
|
1260
|
+
if namespace is not None:
|
|
1261
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
1262
|
+
if status is not None:
|
|
1263
|
+
pulumi.set(__self__, "status", status)
|
|
1264
|
+
if uid is not None:
|
|
1265
|
+
pulumi.set(__self__, "uid", uid)
|
|
1266
|
+
|
|
1267
|
+
@_builtins.property
|
|
1268
|
+
@pulumi.getter
|
|
1269
|
+
def name(self) -> Optional[_builtins.str]:
|
|
1270
|
+
"""
|
|
1271
|
+
The name of the cluster.
|
|
1272
|
+
"""
|
|
1273
|
+
return pulumi.get(self, "name")
|
|
1274
|
+
|
|
1275
|
+
@_builtins.property
|
|
1276
|
+
@pulumi.getter
|
|
1277
|
+
def namespace(self) -> Optional[_builtins.str]:
|
|
1278
|
+
"""
|
|
1279
|
+
The namespace where the agent is installed.
|
|
1280
|
+
"""
|
|
1281
|
+
return pulumi.get(self, "namespace")
|
|
1282
|
+
|
|
1283
|
+
@_builtins.property
|
|
1284
|
+
@pulumi.getter
|
|
1285
|
+
def status(self) -> Optional[_builtins.str]:
|
|
1286
|
+
"""
|
|
1287
|
+
The status of the cluster (e.g., 'Succeeded').
|
|
1288
|
+
"""
|
|
1289
|
+
return pulumi.get(self, "status")
|
|
1290
|
+
|
|
1291
|
+
@_builtins.property
|
|
1292
|
+
@pulumi.getter
|
|
1293
|
+
def uid(self) -> Optional[_builtins.str]:
|
|
1294
|
+
"""
|
|
1295
|
+
The UID of the cluster.
|
|
1296
|
+
"""
|
|
1297
|
+
return pulumi.get(self, "uid")
|
|
1298
|
+
|
|
1299
|
+
|
|
1300
|
+
@pulumi.output_type
|
|
1301
|
+
class DiscoverySettingImageRegistry(dict):
|
|
1302
|
+
def __init__(__self__, *,
|
|
1303
|
+
account: _builtins.str,
|
|
1304
|
+
server: _builtins.str,
|
|
1305
|
+
secrets: Optional[Sequence[_builtins.str]] = None):
|
|
1306
|
+
"""
|
|
1307
|
+
:param _builtins.str account: The account name for the image registry.
|
|
1308
|
+
:param _builtins.str server: The server URL for the image registry.
|
|
1309
|
+
:param Sequence[_builtins.str] secrets: List of secrets for the image registry.
|
|
1310
|
+
"""
|
|
1311
|
+
pulumi.set(__self__, "account", account)
|
|
1312
|
+
pulumi.set(__self__, "server", server)
|
|
1313
|
+
if secrets is not None:
|
|
1314
|
+
pulumi.set(__self__, "secrets", secrets)
|
|
1315
|
+
|
|
1316
|
+
@_builtins.property
|
|
1317
|
+
@pulumi.getter
|
|
1318
|
+
def account(self) -> _builtins.str:
|
|
1319
|
+
"""
|
|
1320
|
+
The account name for the image registry.
|
|
1321
|
+
"""
|
|
1322
|
+
return pulumi.get(self, "account")
|
|
1323
|
+
|
|
1324
|
+
@_builtins.property
|
|
1325
|
+
@pulumi.getter
|
|
1326
|
+
def server(self) -> _builtins.str:
|
|
1327
|
+
"""
|
|
1328
|
+
The server URL for the image registry.
|
|
1329
|
+
"""
|
|
1330
|
+
return pulumi.get(self, "server")
|
|
1331
|
+
|
|
1332
|
+
@_builtins.property
|
|
1333
|
+
@pulumi.getter
|
|
1334
|
+
def secrets(self) -> Optional[Sequence[_builtins.str]]:
|
|
1335
|
+
"""
|
|
1336
|
+
List of secrets for the image registry.
|
|
1337
|
+
"""
|
|
1338
|
+
return pulumi.get(self, "secrets")
|
|
1339
|
+
|
|
1340
|
+
|
|
109
1341
|
@pulumi.output_type
|
|
110
1342
|
class EcsVariable(dict):
|
|
111
1343
|
def __init__(__self__, *,
|
|
@@ -113,276 +1345,1294 @@ class EcsVariable(dict):
|
|
|
113
1345
|
type: _builtins.str,
|
|
114
1346
|
value: _builtins.str):
|
|
115
1347
|
"""
|
|
116
|
-
:param _builtins.str name: Name of the variable
|
|
117
|
-
:param _builtins.str type: Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
118
|
-
:param _builtins.str value: Value of the variable
|
|
1348
|
+
:param _builtins.str name: Name of the variable
|
|
1349
|
+
:param _builtins.str type: Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1350
|
+
:param _builtins.str value: Value of the variable
|
|
1351
|
+
"""
|
|
1352
|
+
pulumi.set(__self__, "name", name)
|
|
1353
|
+
pulumi.set(__self__, "type", type)
|
|
1354
|
+
pulumi.set(__self__, "value", value)
|
|
1355
|
+
|
|
1356
|
+
@_builtins.property
|
|
1357
|
+
@pulumi.getter
|
|
1358
|
+
def name(self) -> _builtins.str:
|
|
1359
|
+
"""
|
|
1360
|
+
Name of the variable
|
|
1361
|
+
"""
|
|
1362
|
+
return pulumi.get(self, "name")
|
|
1363
|
+
|
|
1364
|
+
@_builtins.property
|
|
1365
|
+
@pulumi.getter
|
|
1366
|
+
def type(self) -> _builtins.str:
|
|
1367
|
+
"""
|
|
1368
|
+
Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1369
|
+
"""
|
|
1370
|
+
return pulumi.get(self, "type")
|
|
1371
|
+
|
|
1372
|
+
@_builtins.property
|
|
1373
|
+
@pulumi.getter
|
|
1374
|
+
def value(self) -> _builtins.str:
|
|
1375
|
+
"""
|
|
1376
|
+
Value of the variable
|
|
1377
|
+
"""
|
|
1378
|
+
return pulumi.get(self, "value")
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
@pulumi.output_type
|
|
1382
|
+
class HelmVariable(dict):
|
|
1383
|
+
def __init__(__self__, *,
|
|
1384
|
+
name: _builtins.str,
|
|
1385
|
+
type: _builtins.str,
|
|
1386
|
+
value: _builtins.str):
|
|
1387
|
+
"""
|
|
1388
|
+
:param _builtins.str name: Name of the variable
|
|
1389
|
+
:param _builtins.str type: Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1390
|
+
:param _builtins.str value: Value of the variable
|
|
1391
|
+
"""
|
|
1392
|
+
pulumi.set(__self__, "name", name)
|
|
1393
|
+
pulumi.set(__self__, "type", type)
|
|
1394
|
+
pulumi.set(__self__, "value", value)
|
|
1395
|
+
|
|
1396
|
+
@_builtins.property
|
|
1397
|
+
@pulumi.getter
|
|
1398
|
+
def name(self) -> _builtins.str:
|
|
1399
|
+
"""
|
|
1400
|
+
Name of the variable
|
|
1401
|
+
"""
|
|
1402
|
+
return pulumi.get(self, "name")
|
|
1403
|
+
|
|
1404
|
+
@_builtins.property
|
|
1405
|
+
@pulumi.getter
|
|
1406
|
+
def type(self) -> _builtins.str:
|
|
1407
|
+
"""
|
|
1408
|
+
Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1409
|
+
"""
|
|
1410
|
+
return pulumi.get(self, "type")
|
|
1411
|
+
|
|
1412
|
+
@_builtins.property
|
|
1413
|
+
@pulumi.getter
|
|
1414
|
+
def value(self) -> _builtins.str:
|
|
1415
|
+
"""
|
|
1416
|
+
Value of the variable
|
|
1417
|
+
"""
|
|
1418
|
+
return pulumi.get(self, "value")
|
|
1419
|
+
|
|
1420
|
+
|
|
1421
|
+
@pulumi.output_type
|
|
1422
|
+
class KubernetesVariable(dict):
|
|
1423
|
+
def __init__(__self__, *,
|
|
1424
|
+
name: _builtins.str,
|
|
1425
|
+
type: _builtins.str,
|
|
1426
|
+
value: _builtins.str):
|
|
1427
|
+
"""
|
|
1428
|
+
:param _builtins.str name: Name of the variable
|
|
1429
|
+
:param _builtins.str type: Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1430
|
+
:param _builtins.str value: Value of the variable
|
|
1431
|
+
"""
|
|
1432
|
+
pulumi.set(__self__, "name", name)
|
|
1433
|
+
pulumi.set(__self__, "type", type)
|
|
1434
|
+
pulumi.set(__self__, "value", value)
|
|
1435
|
+
|
|
1436
|
+
@_builtins.property
|
|
1437
|
+
@pulumi.getter
|
|
1438
|
+
def name(self) -> _builtins.str:
|
|
1439
|
+
"""
|
|
1440
|
+
Name of the variable
|
|
1441
|
+
"""
|
|
1442
|
+
return pulumi.get(self, "name")
|
|
1443
|
+
|
|
1444
|
+
@_builtins.property
|
|
1445
|
+
@pulumi.getter
|
|
1446
|
+
def type(self) -> _builtins.str:
|
|
1447
|
+
"""
|
|
1448
|
+
Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1449
|
+
"""
|
|
1450
|
+
return pulumi.get(self, "type")
|
|
1451
|
+
|
|
1452
|
+
@_builtins.property
|
|
1453
|
+
@pulumi.getter
|
|
1454
|
+
def value(self) -> _builtins.str:
|
|
1455
|
+
"""
|
|
1456
|
+
Value of the variable
|
|
1457
|
+
"""
|
|
1458
|
+
return pulumi.get(self, "value")
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
@pulumi.output_type
|
|
1462
|
+
class LambdaVariable(dict):
|
|
1463
|
+
def __init__(__self__, *,
|
|
1464
|
+
name: _builtins.str,
|
|
1465
|
+
type: _builtins.str,
|
|
1466
|
+
value: _builtins.str):
|
|
1467
|
+
"""
|
|
1468
|
+
:param _builtins.str name: Name of the variable
|
|
1469
|
+
:param _builtins.str type: Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1470
|
+
:param _builtins.str value: Value of the variable
|
|
1471
|
+
"""
|
|
1472
|
+
pulumi.set(__self__, "name", name)
|
|
1473
|
+
pulumi.set(__self__, "type", type)
|
|
1474
|
+
pulumi.set(__self__, "value", value)
|
|
1475
|
+
|
|
1476
|
+
@_builtins.property
|
|
1477
|
+
@pulumi.getter
|
|
1478
|
+
def name(self) -> _builtins.str:
|
|
1479
|
+
"""
|
|
1480
|
+
Name of the variable
|
|
1481
|
+
"""
|
|
1482
|
+
return pulumi.get(self, "name")
|
|
1483
|
+
|
|
1484
|
+
@_builtins.property
|
|
1485
|
+
@pulumi.getter
|
|
1486
|
+
def type(self) -> _builtins.str:
|
|
1487
|
+
"""
|
|
1488
|
+
Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1489
|
+
"""
|
|
1490
|
+
return pulumi.get(self, "type")
|
|
1491
|
+
|
|
1492
|
+
@_builtins.property
|
|
1493
|
+
@pulumi.getter
|
|
1494
|
+
def value(self) -> _builtins.str:
|
|
1495
|
+
"""
|
|
1496
|
+
Value of the variable
|
|
1497
|
+
"""
|
|
1498
|
+
return pulumi.get(self, "value")
|
|
1499
|
+
|
|
1500
|
+
|
|
1501
|
+
@pulumi.output_type
|
|
1502
|
+
class SshVariable(dict):
|
|
1503
|
+
def __init__(__self__, *,
|
|
1504
|
+
name: _builtins.str,
|
|
1505
|
+
type: _builtins.str,
|
|
1506
|
+
value: _builtins.str):
|
|
1507
|
+
"""
|
|
1508
|
+
:param _builtins.str name: Name of the variable
|
|
1509
|
+
:param _builtins.str type: Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1510
|
+
:param _builtins.str value: Value of the variable
|
|
1511
|
+
"""
|
|
1512
|
+
pulumi.set(__self__, "name", name)
|
|
1513
|
+
pulumi.set(__self__, "type", type)
|
|
1514
|
+
pulumi.set(__self__, "value", value)
|
|
1515
|
+
|
|
1516
|
+
@_builtins.property
|
|
1517
|
+
@pulumi.getter
|
|
1518
|
+
def name(self) -> _builtins.str:
|
|
1519
|
+
"""
|
|
1520
|
+
Name of the variable
|
|
1521
|
+
"""
|
|
1522
|
+
return pulumi.get(self, "name")
|
|
1523
|
+
|
|
1524
|
+
@_builtins.property
|
|
1525
|
+
@pulumi.getter
|
|
1526
|
+
def type(self) -> _builtins.str:
|
|
1527
|
+
"""
|
|
1528
|
+
Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1529
|
+
"""
|
|
1530
|
+
return pulumi.get(self, "type")
|
|
1531
|
+
|
|
1532
|
+
@_builtins.property
|
|
1533
|
+
@pulumi.getter
|
|
1534
|
+
def value(self) -> _builtins.str:
|
|
1535
|
+
"""
|
|
1536
|
+
Value of the variable
|
|
1537
|
+
"""
|
|
1538
|
+
return pulumi.get(self, "value")
|
|
1539
|
+
|
|
1540
|
+
|
|
1541
|
+
@pulumi.output_type
|
|
1542
|
+
class TanzuVariable(dict):
|
|
1543
|
+
def __init__(__self__, *,
|
|
1544
|
+
name: _builtins.str,
|
|
1545
|
+
type: _builtins.str,
|
|
1546
|
+
value: _builtins.str):
|
|
1547
|
+
"""
|
|
1548
|
+
:param _builtins.str name: Name of the variable
|
|
1549
|
+
:param _builtins.str type: Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1550
|
+
:param _builtins.str value: Value of the variable
|
|
1551
|
+
"""
|
|
1552
|
+
pulumi.set(__self__, "name", name)
|
|
1553
|
+
pulumi.set(__self__, "type", type)
|
|
1554
|
+
pulumi.set(__self__, "value", value)
|
|
1555
|
+
|
|
1556
|
+
@_builtins.property
|
|
1557
|
+
@pulumi.getter
|
|
1558
|
+
def name(self) -> _builtins.str:
|
|
1559
|
+
"""
|
|
1560
|
+
Name of the variable
|
|
1561
|
+
"""
|
|
1562
|
+
return pulumi.get(self, "name")
|
|
1563
|
+
|
|
1564
|
+
@_builtins.property
|
|
1565
|
+
@pulumi.getter
|
|
1566
|
+
def type(self) -> _builtins.str:
|
|
1567
|
+
"""
|
|
1568
|
+
Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1569
|
+
"""
|
|
1570
|
+
return pulumi.get(self, "type")
|
|
1571
|
+
|
|
1572
|
+
@_builtins.property
|
|
1573
|
+
@pulumi.getter
|
|
1574
|
+
def value(self) -> _builtins.str:
|
|
1575
|
+
"""
|
|
1576
|
+
Value of the variable
|
|
1577
|
+
"""
|
|
1578
|
+
return pulumi.get(self, "value")
|
|
1579
|
+
|
|
1580
|
+
|
|
1581
|
+
@pulumi.output_type
|
|
1582
|
+
class WinrmVariable(dict):
|
|
1583
|
+
def __init__(__self__, *,
|
|
1584
|
+
name: _builtins.str,
|
|
1585
|
+
type: _builtins.str,
|
|
1586
|
+
value: _builtins.str):
|
|
1587
|
+
"""
|
|
1588
|
+
:param _builtins.str name: Name of the variable
|
|
1589
|
+
:param _builtins.str type: Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1590
|
+
:param _builtins.str value: Value of the variable
|
|
1591
|
+
"""
|
|
1592
|
+
pulumi.set(__self__, "name", name)
|
|
1593
|
+
pulumi.set(__self__, "type", type)
|
|
1594
|
+
pulumi.set(__self__, "value", value)
|
|
1595
|
+
|
|
1596
|
+
@_builtins.property
|
|
1597
|
+
@pulumi.getter
|
|
1598
|
+
def name(self) -> _builtins.str:
|
|
1599
|
+
"""
|
|
1600
|
+
Name of the variable
|
|
1601
|
+
"""
|
|
1602
|
+
return pulumi.get(self, "name")
|
|
1603
|
+
|
|
1604
|
+
@_builtins.property
|
|
1605
|
+
@pulumi.getter
|
|
1606
|
+
def type(self) -> _builtins.str:
|
|
1607
|
+
"""
|
|
1608
|
+
Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
1609
|
+
"""
|
|
1610
|
+
return pulumi.get(self, "type")
|
|
1611
|
+
|
|
1612
|
+
@_builtins.property
|
|
1613
|
+
@pulumi.getter
|
|
1614
|
+
def value(self) -> _builtins.str:
|
|
1615
|
+
"""
|
|
1616
|
+
Value of the variable
|
|
1617
|
+
"""
|
|
1618
|
+
return pulumi.get(self, "value")
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
@pulumi.output_type
|
|
1622
|
+
class GetDiscoveryAgentConfigResult(dict):
|
|
1623
|
+
def __init__(__self__, *,
|
|
1624
|
+
collector_image: _builtins.str,
|
|
1625
|
+
datas: Sequence['outputs.GetDiscoveryAgentConfigDataResult'],
|
|
1626
|
+
image_pull_secrets: Sequence[_builtins.str],
|
|
1627
|
+
kubernetes: Sequence['outputs.GetDiscoveryAgentConfigKuberneteResult'],
|
|
1628
|
+
log_watcher_image: _builtins.str,
|
|
1629
|
+
mtls: Sequence['outputs.GetDiscoveryAgentConfigMtlResult'],
|
|
1630
|
+
proxies: Sequence['outputs.GetDiscoveryAgentConfigProxyResult'],
|
|
1631
|
+
skip_secure_verify: _builtins.bool):
|
|
1632
|
+
"""
|
|
1633
|
+
:param _builtins.str collector_image: Docker image for the collector.
|
|
1634
|
+
:param Sequence['GetDiscoveryAgentConfigDataArgs'] datas: Data collection configuration.
|
|
1635
|
+
:param Sequence[_builtins.str] image_pull_secrets: List of image pull secrets.
|
|
1636
|
+
:param Sequence['GetDiscoveryAgentConfigKuberneteArgs'] kubernetes: Kubernetes-specific configuration.
|
|
1637
|
+
:param _builtins.str log_watcher_image: Docker image for the log watcher.
|
|
1638
|
+
:param Sequence['GetDiscoveryAgentConfigMtlArgs'] mtls: mTLS configuration.
|
|
1639
|
+
:param Sequence['GetDiscoveryAgentConfigProxyArgs'] proxies: Proxy configuration.
|
|
1640
|
+
:param _builtins.bool skip_secure_verify: Whether to skip TLS verification.
|
|
1641
|
+
"""
|
|
1642
|
+
pulumi.set(__self__, "collector_image", collector_image)
|
|
1643
|
+
pulumi.set(__self__, "datas", datas)
|
|
1644
|
+
pulumi.set(__self__, "image_pull_secrets", image_pull_secrets)
|
|
1645
|
+
pulumi.set(__self__, "kubernetes", kubernetes)
|
|
1646
|
+
pulumi.set(__self__, "log_watcher_image", log_watcher_image)
|
|
1647
|
+
pulumi.set(__self__, "mtls", mtls)
|
|
1648
|
+
pulumi.set(__self__, "proxies", proxies)
|
|
1649
|
+
pulumi.set(__self__, "skip_secure_verify", skip_secure_verify)
|
|
1650
|
+
|
|
1651
|
+
@_builtins.property
|
|
1652
|
+
@pulumi.getter(name="collectorImage")
|
|
1653
|
+
def collector_image(self) -> _builtins.str:
|
|
1654
|
+
"""
|
|
1655
|
+
Docker image for the collector.
|
|
1656
|
+
"""
|
|
1657
|
+
return pulumi.get(self, "collector_image")
|
|
1658
|
+
|
|
1659
|
+
@_builtins.property
|
|
1660
|
+
@pulumi.getter
|
|
1661
|
+
def datas(self) -> Sequence['outputs.GetDiscoveryAgentConfigDataResult']:
|
|
1662
|
+
"""
|
|
1663
|
+
Data collection configuration.
|
|
1664
|
+
"""
|
|
1665
|
+
return pulumi.get(self, "datas")
|
|
1666
|
+
|
|
1667
|
+
@_builtins.property
|
|
1668
|
+
@pulumi.getter(name="imagePullSecrets")
|
|
1669
|
+
def image_pull_secrets(self) -> Sequence[_builtins.str]:
|
|
1670
|
+
"""
|
|
1671
|
+
List of image pull secrets.
|
|
1672
|
+
"""
|
|
1673
|
+
return pulumi.get(self, "image_pull_secrets")
|
|
1674
|
+
|
|
1675
|
+
@_builtins.property
|
|
1676
|
+
@pulumi.getter
|
|
1677
|
+
def kubernetes(self) -> Sequence['outputs.GetDiscoveryAgentConfigKuberneteResult']:
|
|
1678
|
+
"""
|
|
1679
|
+
Kubernetes-specific configuration.
|
|
1680
|
+
"""
|
|
1681
|
+
return pulumi.get(self, "kubernetes")
|
|
1682
|
+
|
|
1683
|
+
@_builtins.property
|
|
1684
|
+
@pulumi.getter(name="logWatcherImage")
|
|
1685
|
+
def log_watcher_image(self) -> _builtins.str:
|
|
1686
|
+
"""
|
|
1687
|
+
Docker image for the log watcher.
|
|
1688
|
+
"""
|
|
1689
|
+
return pulumi.get(self, "log_watcher_image")
|
|
1690
|
+
|
|
1691
|
+
@_builtins.property
|
|
1692
|
+
@pulumi.getter
|
|
1693
|
+
def mtls(self) -> Sequence['outputs.GetDiscoveryAgentConfigMtlResult']:
|
|
1694
|
+
"""
|
|
1695
|
+
mTLS configuration.
|
|
1696
|
+
"""
|
|
1697
|
+
return pulumi.get(self, "mtls")
|
|
1698
|
+
|
|
1699
|
+
@_builtins.property
|
|
1700
|
+
@pulumi.getter
|
|
1701
|
+
def proxies(self) -> Sequence['outputs.GetDiscoveryAgentConfigProxyResult']:
|
|
1702
|
+
"""
|
|
1703
|
+
Proxy configuration.
|
|
1704
|
+
"""
|
|
1705
|
+
return pulumi.get(self, "proxies")
|
|
1706
|
+
|
|
1707
|
+
@_builtins.property
|
|
1708
|
+
@pulumi.getter(name="skipSecureVerify")
|
|
1709
|
+
def skip_secure_verify(self) -> _builtins.bool:
|
|
1710
|
+
"""
|
|
1711
|
+
Whether to skip TLS verification.
|
|
1712
|
+
"""
|
|
1713
|
+
return pulumi.get(self, "skip_secure_verify")
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
@pulumi.output_type
|
|
1717
|
+
class GetDiscoveryAgentConfigDataResult(dict):
|
|
1718
|
+
def __init__(__self__, *,
|
|
1719
|
+
blacklisted_namespaces: Sequence[_builtins.str],
|
|
1720
|
+
collection_window_in_min: _builtins.int,
|
|
1721
|
+
crons: Sequence['outputs.GetDiscoveryAgentConfigDataCronResult'],
|
|
1722
|
+
enable_batch_resources: _builtins.bool,
|
|
1723
|
+
enable_node_agent: _builtins.bool,
|
|
1724
|
+
enable_orphaned_pod: _builtins.bool,
|
|
1725
|
+
namespace_selector: _builtins.str,
|
|
1726
|
+
node_agent_selector: _builtins.str,
|
|
1727
|
+
observed_namespaces: Sequence[_builtins.str]):
|
|
1728
|
+
"""
|
|
1729
|
+
:param Sequence[_builtins.str] blacklisted_namespaces: List of namespaces to exclude from discovery.
|
|
1730
|
+
:param _builtins.int collection_window_in_min: Collection window in minutes.
|
|
1731
|
+
:param Sequence['GetDiscoveryAgentConfigDataCronArgs'] crons: Cron schedule for data collection.
|
|
1732
|
+
:param _builtins.bool enable_batch_resources: Whether to enable batch resources.
|
|
1733
|
+
:param _builtins.bool enable_node_agent: Whether to enable node agent.
|
|
1734
|
+
:param _builtins.bool enable_orphaned_pod: Whether to enable orphaned pod detection.
|
|
1735
|
+
:param _builtins.str namespace_selector: Namespace selector for the agent.
|
|
1736
|
+
:param _builtins.str node_agent_selector: Node selector for the node agent.
|
|
1737
|
+
:param Sequence[_builtins.str] observed_namespaces: List of namespaces to observe.
|
|
1738
|
+
"""
|
|
1739
|
+
pulumi.set(__self__, "blacklisted_namespaces", blacklisted_namespaces)
|
|
1740
|
+
pulumi.set(__self__, "collection_window_in_min", collection_window_in_min)
|
|
1741
|
+
pulumi.set(__self__, "crons", crons)
|
|
1742
|
+
pulumi.set(__self__, "enable_batch_resources", enable_batch_resources)
|
|
1743
|
+
pulumi.set(__self__, "enable_node_agent", enable_node_agent)
|
|
1744
|
+
pulumi.set(__self__, "enable_orphaned_pod", enable_orphaned_pod)
|
|
1745
|
+
pulumi.set(__self__, "namespace_selector", namespace_selector)
|
|
1746
|
+
pulumi.set(__self__, "node_agent_selector", node_agent_selector)
|
|
1747
|
+
pulumi.set(__self__, "observed_namespaces", observed_namespaces)
|
|
1748
|
+
|
|
1749
|
+
@_builtins.property
|
|
1750
|
+
@pulumi.getter(name="blacklistedNamespaces")
|
|
1751
|
+
def blacklisted_namespaces(self) -> Sequence[_builtins.str]:
|
|
1752
|
+
"""
|
|
1753
|
+
List of namespaces to exclude from discovery.
|
|
1754
|
+
"""
|
|
1755
|
+
return pulumi.get(self, "blacklisted_namespaces")
|
|
1756
|
+
|
|
1757
|
+
@_builtins.property
|
|
1758
|
+
@pulumi.getter(name="collectionWindowInMin")
|
|
1759
|
+
def collection_window_in_min(self) -> _builtins.int:
|
|
1760
|
+
"""
|
|
1761
|
+
Collection window in minutes.
|
|
1762
|
+
"""
|
|
1763
|
+
return pulumi.get(self, "collection_window_in_min")
|
|
1764
|
+
|
|
1765
|
+
@_builtins.property
|
|
1766
|
+
@pulumi.getter
|
|
1767
|
+
def crons(self) -> Sequence['outputs.GetDiscoveryAgentConfigDataCronResult']:
|
|
1768
|
+
"""
|
|
1769
|
+
Cron schedule for data collection.
|
|
1770
|
+
"""
|
|
1771
|
+
return pulumi.get(self, "crons")
|
|
1772
|
+
|
|
1773
|
+
@_builtins.property
|
|
1774
|
+
@pulumi.getter(name="enableBatchResources")
|
|
1775
|
+
def enable_batch_resources(self) -> _builtins.bool:
|
|
1776
|
+
"""
|
|
1777
|
+
Whether to enable batch resources.
|
|
1778
|
+
"""
|
|
1779
|
+
return pulumi.get(self, "enable_batch_resources")
|
|
1780
|
+
|
|
1781
|
+
@_builtins.property
|
|
1782
|
+
@pulumi.getter(name="enableNodeAgent")
|
|
1783
|
+
def enable_node_agent(self) -> _builtins.bool:
|
|
1784
|
+
"""
|
|
1785
|
+
Whether to enable node agent.
|
|
1786
|
+
"""
|
|
1787
|
+
return pulumi.get(self, "enable_node_agent")
|
|
1788
|
+
|
|
1789
|
+
@_builtins.property
|
|
1790
|
+
@pulumi.getter(name="enableOrphanedPod")
|
|
1791
|
+
def enable_orphaned_pod(self) -> _builtins.bool:
|
|
1792
|
+
"""
|
|
1793
|
+
Whether to enable orphaned pod detection.
|
|
1794
|
+
"""
|
|
1795
|
+
return pulumi.get(self, "enable_orphaned_pod")
|
|
1796
|
+
|
|
1797
|
+
@_builtins.property
|
|
1798
|
+
@pulumi.getter(name="namespaceSelector")
|
|
1799
|
+
def namespace_selector(self) -> _builtins.str:
|
|
1800
|
+
"""
|
|
1801
|
+
Namespace selector for the agent.
|
|
1802
|
+
"""
|
|
1803
|
+
return pulumi.get(self, "namespace_selector")
|
|
1804
|
+
|
|
1805
|
+
@_builtins.property
|
|
1806
|
+
@pulumi.getter(name="nodeAgentSelector")
|
|
1807
|
+
def node_agent_selector(self) -> _builtins.str:
|
|
1808
|
+
"""
|
|
1809
|
+
Node selector for the node agent.
|
|
1810
|
+
"""
|
|
1811
|
+
return pulumi.get(self, "node_agent_selector")
|
|
1812
|
+
|
|
1813
|
+
@_builtins.property
|
|
1814
|
+
@pulumi.getter(name="observedNamespaces")
|
|
1815
|
+
def observed_namespaces(self) -> Sequence[_builtins.str]:
|
|
1816
|
+
"""
|
|
1817
|
+
List of namespaces to observe.
|
|
1818
|
+
"""
|
|
1819
|
+
return pulumi.get(self, "observed_namespaces")
|
|
1820
|
+
|
|
1821
|
+
|
|
1822
|
+
@pulumi.output_type
|
|
1823
|
+
class GetDiscoveryAgentConfigDataCronResult(dict):
|
|
1824
|
+
def __init__(__self__, *,
|
|
1825
|
+
expression: _builtins.str):
|
|
1826
|
+
"""
|
|
1827
|
+
:param _builtins.str expression: Cron expression for scheduling.
|
|
1828
|
+
"""
|
|
1829
|
+
pulumi.set(__self__, "expression", expression)
|
|
1830
|
+
|
|
1831
|
+
@_builtins.property
|
|
1832
|
+
@pulumi.getter
|
|
1833
|
+
def expression(self) -> _builtins.str:
|
|
1834
|
+
"""
|
|
1835
|
+
Cron expression for scheduling.
|
|
1836
|
+
"""
|
|
1837
|
+
return pulumi.get(self, "expression")
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
@pulumi.output_type
|
|
1841
|
+
class GetDiscoveryAgentConfigKuberneteResult(dict):
|
|
1842
|
+
def __init__(__self__, *,
|
|
1843
|
+
annotations: Mapping[str, _builtins.str],
|
|
1844
|
+
disable_namespace_creation: _builtins.bool,
|
|
1845
|
+
image_pull_policy: _builtins.str,
|
|
1846
|
+
labels: Mapping[str, _builtins.str],
|
|
1847
|
+
namespace: _builtins.str,
|
|
1848
|
+
namespaced: _builtins.bool,
|
|
1849
|
+
node_selector: Mapping[str, _builtins.str],
|
|
1850
|
+
resources: Sequence['outputs.GetDiscoveryAgentConfigKuberneteResourceResult'],
|
|
1851
|
+
run_as_group: _builtins.int,
|
|
1852
|
+
run_as_user: _builtins.int,
|
|
1853
|
+
service_account: _builtins.str,
|
|
1854
|
+
tolerations: Sequence['outputs.GetDiscoveryAgentConfigKuberneteTolerationResult']):
|
|
1855
|
+
"""
|
|
1856
|
+
:param Mapping[str, _builtins.str] annotations: Annotations to add to all resources.
|
|
1857
|
+
:param _builtins.bool disable_namespace_creation: Whether to disable namespace creation.
|
|
1858
|
+
:param _builtins.str image_pull_policy: The image pull policy.
|
|
1859
|
+
:param Mapping[str, _builtins.str] labels: Labels to add to all resources.
|
|
1860
|
+
:param _builtins.str namespace: Kubernetes namespace to use
|
|
1861
|
+
:param _builtins.bool namespaced: Whether the agent is namespaced.
|
|
1862
|
+
:param Mapping[str, _builtins.str] node_selector: Node selector labels.
|
|
1863
|
+
:param Sequence['GetDiscoveryAgentConfigKuberneteResourceArgs'] resources: Compute resource requirements for the agent container.
|
|
1864
|
+
:param _builtins.int run_as_group: The group ID to run as.
|
|
1865
|
+
:param _builtins.int run_as_user: The user ID to run as.
|
|
1866
|
+
:param _builtins.str service_account: Service account to use
|
|
1867
|
+
:param Sequence['GetDiscoveryAgentConfigKuberneteTolerationArgs'] tolerations: Tolerations for pod assignment.
|
|
1868
|
+
"""
|
|
1869
|
+
pulumi.set(__self__, "annotations", annotations)
|
|
1870
|
+
pulumi.set(__self__, "disable_namespace_creation", disable_namespace_creation)
|
|
1871
|
+
pulumi.set(__self__, "image_pull_policy", image_pull_policy)
|
|
1872
|
+
pulumi.set(__self__, "labels", labels)
|
|
1873
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
1874
|
+
pulumi.set(__self__, "namespaced", namespaced)
|
|
1875
|
+
pulumi.set(__self__, "node_selector", node_selector)
|
|
1876
|
+
pulumi.set(__self__, "resources", resources)
|
|
1877
|
+
pulumi.set(__self__, "run_as_group", run_as_group)
|
|
1878
|
+
pulumi.set(__self__, "run_as_user", run_as_user)
|
|
1879
|
+
pulumi.set(__self__, "service_account", service_account)
|
|
1880
|
+
pulumi.set(__self__, "tolerations", tolerations)
|
|
1881
|
+
|
|
1882
|
+
@_builtins.property
|
|
1883
|
+
@pulumi.getter
|
|
1884
|
+
def annotations(self) -> Mapping[str, _builtins.str]:
|
|
1885
|
+
"""
|
|
1886
|
+
Annotations to add to all resources.
|
|
1887
|
+
"""
|
|
1888
|
+
return pulumi.get(self, "annotations")
|
|
1889
|
+
|
|
1890
|
+
@_builtins.property
|
|
1891
|
+
@pulumi.getter(name="disableNamespaceCreation")
|
|
1892
|
+
def disable_namespace_creation(self) -> _builtins.bool:
|
|
1893
|
+
"""
|
|
1894
|
+
Whether to disable namespace creation.
|
|
1895
|
+
"""
|
|
1896
|
+
return pulumi.get(self, "disable_namespace_creation")
|
|
1897
|
+
|
|
1898
|
+
@_builtins.property
|
|
1899
|
+
@pulumi.getter(name="imagePullPolicy")
|
|
1900
|
+
def image_pull_policy(self) -> _builtins.str:
|
|
1901
|
+
"""
|
|
1902
|
+
The image pull policy.
|
|
1903
|
+
"""
|
|
1904
|
+
return pulumi.get(self, "image_pull_policy")
|
|
1905
|
+
|
|
1906
|
+
@_builtins.property
|
|
1907
|
+
@pulumi.getter
|
|
1908
|
+
def labels(self) -> Mapping[str, _builtins.str]:
|
|
1909
|
+
"""
|
|
1910
|
+
Labels to add to all resources.
|
|
1911
|
+
"""
|
|
1912
|
+
return pulumi.get(self, "labels")
|
|
1913
|
+
|
|
1914
|
+
@_builtins.property
|
|
1915
|
+
@pulumi.getter
|
|
1916
|
+
def namespace(self) -> _builtins.str:
|
|
1917
|
+
"""
|
|
1918
|
+
Kubernetes namespace to use
|
|
1919
|
+
"""
|
|
1920
|
+
return pulumi.get(self, "namespace")
|
|
1921
|
+
|
|
1922
|
+
@_builtins.property
|
|
1923
|
+
@pulumi.getter
|
|
1924
|
+
def namespaced(self) -> _builtins.bool:
|
|
1925
|
+
"""
|
|
1926
|
+
Whether the agent is namespaced.
|
|
1927
|
+
"""
|
|
1928
|
+
return pulumi.get(self, "namespaced")
|
|
1929
|
+
|
|
1930
|
+
@_builtins.property
|
|
1931
|
+
@pulumi.getter(name="nodeSelector")
|
|
1932
|
+
def node_selector(self) -> Mapping[str, _builtins.str]:
|
|
1933
|
+
"""
|
|
1934
|
+
Node selector labels.
|
|
1935
|
+
"""
|
|
1936
|
+
return pulumi.get(self, "node_selector")
|
|
1937
|
+
|
|
1938
|
+
@_builtins.property
|
|
1939
|
+
@pulumi.getter
|
|
1940
|
+
def resources(self) -> Sequence['outputs.GetDiscoveryAgentConfigKuberneteResourceResult']:
|
|
1941
|
+
"""
|
|
1942
|
+
Compute resource requirements for the agent container.
|
|
1943
|
+
"""
|
|
1944
|
+
return pulumi.get(self, "resources")
|
|
1945
|
+
|
|
1946
|
+
@_builtins.property
|
|
1947
|
+
@pulumi.getter(name="runAsGroup")
|
|
1948
|
+
def run_as_group(self) -> _builtins.int:
|
|
1949
|
+
"""
|
|
1950
|
+
The group ID to run as.
|
|
1951
|
+
"""
|
|
1952
|
+
return pulumi.get(self, "run_as_group")
|
|
1953
|
+
|
|
1954
|
+
@_builtins.property
|
|
1955
|
+
@pulumi.getter(name="runAsUser")
|
|
1956
|
+
def run_as_user(self) -> _builtins.int:
|
|
1957
|
+
"""
|
|
1958
|
+
The user ID to run as.
|
|
1959
|
+
"""
|
|
1960
|
+
return pulumi.get(self, "run_as_user")
|
|
1961
|
+
|
|
1962
|
+
@_builtins.property
|
|
1963
|
+
@pulumi.getter(name="serviceAccount")
|
|
1964
|
+
def service_account(self) -> _builtins.str:
|
|
1965
|
+
"""
|
|
1966
|
+
Service account to use
|
|
1967
|
+
"""
|
|
1968
|
+
return pulumi.get(self, "service_account")
|
|
1969
|
+
|
|
1970
|
+
@_builtins.property
|
|
1971
|
+
@pulumi.getter
|
|
1972
|
+
def tolerations(self) -> Sequence['outputs.GetDiscoveryAgentConfigKuberneteTolerationResult']:
|
|
1973
|
+
"""
|
|
1974
|
+
Tolerations for pod assignment.
|
|
1975
|
+
"""
|
|
1976
|
+
return pulumi.get(self, "tolerations")
|
|
1977
|
+
|
|
1978
|
+
|
|
1979
|
+
@pulumi.output_type
|
|
1980
|
+
class GetDiscoveryAgentConfigKuberneteResourceResult(dict):
|
|
1981
|
+
def __init__(__self__, *,
|
|
1982
|
+
limits: Sequence['outputs.GetDiscoveryAgentConfigKuberneteResourceLimitResult'],
|
|
1983
|
+
requests: Sequence['outputs.GetDiscoveryAgentConfigKuberneteResourceRequestResult']):
|
|
1984
|
+
"""
|
|
1985
|
+
:param Sequence['GetDiscoveryAgentConfigKuberneteResourceLimitArgs'] limits: Maximum amount of compute resources allowed.
|
|
1986
|
+
:param Sequence['GetDiscoveryAgentConfigKuberneteResourceRequestArgs'] requests: Minimum amount of compute resources required.
|
|
1987
|
+
"""
|
|
1988
|
+
pulumi.set(__self__, "limits", limits)
|
|
1989
|
+
pulumi.set(__self__, "requests", requests)
|
|
1990
|
+
|
|
1991
|
+
@_builtins.property
|
|
1992
|
+
@pulumi.getter
|
|
1993
|
+
def limits(self) -> Sequence['outputs.GetDiscoveryAgentConfigKuberneteResourceLimitResult']:
|
|
1994
|
+
"""
|
|
1995
|
+
Maximum amount of compute resources allowed.
|
|
1996
|
+
"""
|
|
1997
|
+
return pulumi.get(self, "limits")
|
|
1998
|
+
|
|
1999
|
+
@_builtins.property
|
|
2000
|
+
@pulumi.getter
|
|
2001
|
+
def requests(self) -> Sequence['outputs.GetDiscoveryAgentConfigKuberneteResourceRequestResult']:
|
|
2002
|
+
"""
|
|
2003
|
+
Minimum amount of compute resources required.
|
|
2004
|
+
"""
|
|
2005
|
+
return pulumi.get(self, "requests")
|
|
2006
|
+
|
|
2007
|
+
|
|
2008
|
+
@pulumi.output_type
|
|
2009
|
+
class GetDiscoveryAgentConfigKuberneteResourceLimitResult(dict):
|
|
2010
|
+
def __init__(__self__, *,
|
|
2011
|
+
cpu: _builtins.str,
|
|
2012
|
+
memory: _builtins.str):
|
|
2013
|
+
"""
|
|
2014
|
+
:param _builtins.str cpu: CPU limit in CPU units (e.g., 500m = 0.5 CPU, 2 = 2 CPUs).
|
|
2015
|
+
:param _builtins.str memory: Memory limit in bytes (e.g., 128Mi, 1Gi).
|
|
119
2016
|
"""
|
|
120
|
-
pulumi.set(__self__, "
|
|
121
|
-
pulumi.set(__self__, "
|
|
122
|
-
pulumi.set(__self__, "value", value)
|
|
2017
|
+
pulumi.set(__self__, "cpu", cpu)
|
|
2018
|
+
pulumi.set(__self__, "memory", memory)
|
|
123
2019
|
|
|
124
2020
|
@_builtins.property
|
|
125
2021
|
@pulumi.getter
|
|
126
|
-
def
|
|
2022
|
+
def cpu(self) -> _builtins.str:
|
|
127
2023
|
"""
|
|
128
|
-
|
|
2024
|
+
CPU limit in CPU units (e.g., 500m = 0.5 CPU, 2 = 2 CPUs).
|
|
129
2025
|
"""
|
|
130
|
-
return pulumi.get(self, "
|
|
2026
|
+
return pulumi.get(self, "cpu")
|
|
131
2027
|
|
|
132
2028
|
@_builtins.property
|
|
133
2029
|
@pulumi.getter
|
|
134
|
-
def
|
|
2030
|
+
def memory(self) -> _builtins.str:
|
|
135
2031
|
"""
|
|
136
|
-
|
|
2032
|
+
Memory limit in bytes (e.g., 128Mi, 1Gi).
|
|
137
2033
|
"""
|
|
138
|
-
return pulumi.get(self, "
|
|
2034
|
+
return pulumi.get(self, "memory")
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
@pulumi.output_type
|
|
2038
|
+
class GetDiscoveryAgentConfigKuberneteResourceRequestResult(dict):
|
|
2039
|
+
def __init__(__self__, *,
|
|
2040
|
+
cpu: _builtins.str,
|
|
2041
|
+
memory: _builtins.str):
|
|
2042
|
+
"""
|
|
2043
|
+
:param _builtins.str cpu: CPU request in CPU units (e.g., 100m = 0.1 CPU).
|
|
2044
|
+
:param _builtins.str memory: Memory request in bytes (e.g., 128Mi, 1Gi).
|
|
2045
|
+
"""
|
|
2046
|
+
pulumi.set(__self__, "cpu", cpu)
|
|
2047
|
+
pulumi.set(__self__, "memory", memory)
|
|
139
2048
|
|
|
140
2049
|
@_builtins.property
|
|
141
2050
|
@pulumi.getter
|
|
142
|
-
def
|
|
2051
|
+
def cpu(self) -> _builtins.str:
|
|
143
2052
|
"""
|
|
144
|
-
|
|
2053
|
+
CPU request in CPU units (e.g., 100m = 0.1 CPU).
|
|
145
2054
|
"""
|
|
146
|
-
return pulumi.get(self, "
|
|
2055
|
+
return pulumi.get(self, "cpu")
|
|
2056
|
+
|
|
2057
|
+
@_builtins.property
|
|
2058
|
+
@pulumi.getter
|
|
2059
|
+
def memory(self) -> _builtins.str:
|
|
2060
|
+
"""
|
|
2061
|
+
Memory request in bytes (e.g., 128Mi, 1Gi).
|
|
2062
|
+
"""
|
|
2063
|
+
return pulumi.get(self, "memory")
|
|
147
2064
|
|
|
148
2065
|
|
|
149
2066
|
@pulumi.output_type
|
|
150
|
-
class
|
|
2067
|
+
class GetDiscoveryAgentConfigKuberneteTolerationResult(dict):
|
|
151
2068
|
def __init__(__self__, *,
|
|
152
|
-
|
|
153
|
-
|
|
2069
|
+
effect: _builtins.str,
|
|
2070
|
+
key: _builtins.str,
|
|
2071
|
+
operator: _builtins.str,
|
|
2072
|
+
toleration_seconds: _builtins.int,
|
|
154
2073
|
value: _builtins.str):
|
|
155
2074
|
"""
|
|
156
|
-
:param _builtins.str
|
|
157
|
-
:param _builtins.str
|
|
158
|
-
:param _builtins.str
|
|
2075
|
+
:param _builtins.str effect: Effect indicates the taint effect to match.
|
|
2076
|
+
:param _builtins.str key: The taint key that the toleration applies to.
|
|
2077
|
+
:param _builtins.str operator: Operator represents a key's relationship to the value.
|
|
2078
|
+
:param _builtins.int toleration_seconds: TolerationSeconds represents the period of time the toleration tolerates the taint.
|
|
2079
|
+
:param _builtins.str value: The taint value the toleration matches to.
|
|
159
2080
|
"""
|
|
160
|
-
pulumi.set(__self__, "
|
|
161
|
-
pulumi.set(__self__, "
|
|
2081
|
+
pulumi.set(__self__, "effect", effect)
|
|
2082
|
+
pulumi.set(__self__, "key", key)
|
|
2083
|
+
pulumi.set(__self__, "operator", operator)
|
|
2084
|
+
pulumi.set(__self__, "toleration_seconds", toleration_seconds)
|
|
162
2085
|
pulumi.set(__self__, "value", value)
|
|
163
2086
|
|
|
164
2087
|
@_builtins.property
|
|
165
2088
|
@pulumi.getter
|
|
166
|
-
def
|
|
2089
|
+
def effect(self) -> _builtins.str:
|
|
167
2090
|
"""
|
|
168
|
-
|
|
2091
|
+
Effect indicates the taint effect to match.
|
|
169
2092
|
"""
|
|
170
|
-
return pulumi.get(self, "
|
|
2093
|
+
return pulumi.get(self, "effect")
|
|
171
2094
|
|
|
172
2095
|
@_builtins.property
|
|
173
2096
|
@pulumi.getter
|
|
174
|
-
def
|
|
2097
|
+
def key(self) -> _builtins.str:
|
|
175
2098
|
"""
|
|
176
|
-
|
|
2099
|
+
The taint key that the toleration applies to.
|
|
177
2100
|
"""
|
|
178
|
-
return pulumi.get(self, "
|
|
2101
|
+
return pulumi.get(self, "key")
|
|
2102
|
+
|
|
2103
|
+
@_builtins.property
|
|
2104
|
+
@pulumi.getter
|
|
2105
|
+
def operator(self) -> _builtins.str:
|
|
2106
|
+
"""
|
|
2107
|
+
Operator represents a key's relationship to the value.
|
|
2108
|
+
"""
|
|
2109
|
+
return pulumi.get(self, "operator")
|
|
2110
|
+
|
|
2111
|
+
@_builtins.property
|
|
2112
|
+
@pulumi.getter(name="tolerationSeconds")
|
|
2113
|
+
def toleration_seconds(self) -> _builtins.int:
|
|
2114
|
+
"""
|
|
2115
|
+
TolerationSeconds represents the period of time the toleration tolerates the taint.
|
|
2116
|
+
"""
|
|
2117
|
+
return pulumi.get(self, "toleration_seconds")
|
|
179
2118
|
|
|
180
2119
|
@_builtins.property
|
|
181
2120
|
@pulumi.getter
|
|
182
2121
|
def value(self) -> _builtins.str:
|
|
183
2122
|
"""
|
|
184
|
-
|
|
2123
|
+
The taint value the toleration matches to.
|
|
185
2124
|
"""
|
|
186
2125
|
return pulumi.get(self, "value")
|
|
187
2126
|
|
|
188
2127
|
|
|
189
2128
|
@pulumi.output_type
|
|
190
|
-
class
|
|
2129
|
+
class GetDiscoveryAgentConfigMtlResult(dict):
|
|
191
2130
|
def __init__(__self__, *,
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
2131
|
+
cert_path: _builtins.str,
|
|
2132
|
+
key_path: _builtins.str,
|
|
2133
|
+
secret_name: _builtins.str,
|
|
2134
|
+
url: _builtins.str):
|
|
2135
|
+
"""
|
|
2136
|
+
:param _builtins.str cert_path: Path to the certificate file.
|
|
2137
|
+
:param _builtins.str key_path: Path to the key file.
|
|
2138
|
+
:param _builtins.str secret_name: Name of the Kubernetes secret containing the certificate and key.
|
|
2139
|
+
:param _builtins.str url: URL of the mTLS server.
|
|
2140
|
+
"""
|
|
2141
|
+
pulumi.set(__self__, "cert_path", cert_path)
|
|
2142
|
+
pulumi.set(__self__, "key_path", key_path)
|
|
2143
|
+
pulumi.set(__self__, "secret_name", secret_name)
|
|
2144
|
+
pulumi.set(__self__, "url", url)
|
|
2145
|
+
|
|
2146
|
+
@_builtins.property
|
|
2147
|
+
@pulumi.getter(name="certPath")
|
|
2148
|
+
def cert_path(self) -> _builtins.str:
|
|
195
2149
|
"""
|
|
196
|
-
|
|
197
|
-
:param _builtins.str type: Type of the variable. Options are 'TEXT' and 'ENCRYPTED_TEXT'
|
|
198
|
-
:param _builtins.str value: Value of the variable
|
|
2150
|
+
Path to the certificate file.
|
|
199
2151
|
"""
|
|
200
|
-
pulumi.
|
|
201
|
-
|
|
202
|
-
|
|
2152
|
+
return pulumi.get(self, "cert_path")
|
|
2153
|
+
|
|
2154
|
+
@_builtins.property
|
|
2155
|
+
@pulumi.getter(name="keyPath")
|
|
2156
|
+
def key_path(self) -> _builtins.str:
|
|
2157
|
+
"""
|
|
2158
|
+
Path to the key file.
|
|
2159
|
+
"""
|
|
2160
|
+
return pulumi.get(self, "key_path")
|
|
2161
|
+
|
|
2162
|
+
@_builtins.property
|
|
2163
|
+
@pulumi.getter(name="secretName")
|
|
2164
|
+
def secret_name(self) -> _builtins.str:
|
|
2165
|
+
"""
|
|
2166
|
+
Name of the Kubernetes secret containing the certificate and key.
|
|
2167
|
+
"""
|
|
2168
|
+
return pulumi.get(self, "secret_name")
|
|
203
2169
|
|
|
204
2170
|
@_builtins.property
|
|
205
2171
|
@pulumi.getter
|
|
206
|
-
def
|
|
2172
|
+
def url(self) -> _builtins.str:
|
|
207
2173
|
"""
|
|
208
|
-
|
|
2174
|
+
URL of the mTLS server.
|
|
209
2175
|
"""
|
|
210
|
-
return pulumi.get(self, "
|
|
2176
|
+
return pulumi.get(self, "url")
|
|
2177
|
+
|
|
2178
|
+
|
|
2179
|
+
@pulumi.output_type
|
|
2180
|
+
class GetDiscoveryAgentConfigProxyResult(dict):
|
|
2181
|
+
def __init__(__self__, *,
|
|
2182
|
+
http_proxy: _builtins.str,
|
|
2183
|
+
https_proxy: _builtins.str,
|
|
2184
|
+
no_proxy: _builtins.str,
|
|
2185
|
+
url: _builtins.str):
|
|
2186
|
+
"""
|
|
2187
|
+
:param _builtins.str http_proxy: HTTP proxy URL.
|
|
2188
|
+
:param _builtins.str https_proxy: HTTPS proxy URL.
|
|
2189
|
+
:param _builtins.str no_proxy: Comma-separated list of hosts that should not use the proxy.
|
|
2190
|
+
:param _builtins.str url: Proxy server URL.
|
|
2191
|
+
"""
|
|
2192
|
+
pulumi.set(__self__, "http_proxy", http_proxy)
|
|
2193
|
+
pulumi.set(__self__, "https_proxy", https_proxy)
|
|
2194
|
+
pulumi.set(__self__, "no_proxy", no_proxy)
|
|
2195
|
+
pulumi.set(__self__, "url", url)
|
|
2196
|
+
|
|
2197
|
+
@_builtins.property
|
|
2198
|
+
@pulumi.getter(name="httpProxy")
|
|
2199
|
+
def http_proxy(self) -> _builtins.str:
|
|
2200
|
+
"""
|
|
2201
|
+
HTTP proxy URL.
|
|
2202
|
+
"""
|
|
2203
|
+
return pulumi.get(self, "http_proxy")
|
|
2204
|
+
|
|
2205
|
+
@_builtins.property
|
|
2206
|
+
@pulumi.getter(name="httpsProxy")
|
|
2207
|
+
def https_proxy(self) -> _builtins.str:
|
|
2208
|
+
"""
|
|
2209
|
+
HTTPS proxy URL.
|
|
2210
|
+
"""
|
|
2211
|
+
return pulumi.get(self, "https_proxy")
|
|
2212
|
+
|
|
2213
|
+
@_builtins.property
|
|
2214
|
+
@pulumi.getter(name="noProxy")
|
|
2215
|
+
def no_proxy(self) -> _builtins.str:
|
|
2216
|
+
"""
|
|
2217
|
+
Comma-separated list of hosts that should not use the proxy.
|
|
2218
|
+
"""
|
|
2219
|
+
return pulumi.get(self, "no_proxy")
|
|
211
2220
|
|
|
212
2221
|
@_builtins.property
|
|
213
2222
|
@pulumi.getter
|
|
214
|
-
def
|
|
2223
|
+
def url(self) -> _builtins.str:
|
|
215
2224
|
"""
|
|
216
|
-
|
|
2225
|
+
Proxy server URL.
|
|
217
2226
|
"""
|
|
218
|
-
return pulumi.get(self, "
|
|
2227
|
+
return pulumi.get(self, "url")
|
|
2228
|
+
|
|
2229
|
+
|
|
2230
|
+
@pulumi.output_type
|
|
2231
|
+
class GetDiscoveryAgentInstallationDetailResult(dict):
|
|
2232
|
+
def __init__(__self__, *,
|
|
2233
|
+
account_identifier: _builtins.str,
|
|
2234
|
+
agent_details: Sequence['outputs.GetDiscoveryAgentInstallationDetailAgentDetailResult'],
|
|
2235
|
+
agent_id: _builtins.str,
|
|
2236
|
+
created_at: _builtins.str,
|
|
2237
|
+
created_by: _builtins.str,
|
|
2238
|
+
delegate_id: _builtins.str,
|
|
2239
|
+
delegate_task_id: _builtins.str,
|
|
2240
|
+
delegate_task_status: _builtins.str,
|
|
2241
|
+
environment_identifier: _builtins.str,
|
|
2242
|
+
id: _builtins.str,
|
|
2243
|
+
is_cron_triggered: _builtins.bool,
|
|
2244
|
+
log_stream_created_at: _builtins.str,
|
|
2245
|
+
log_stream_id: _builtins.str,
|
|
2246
|
+
org_identifier: _builtins.str,
|
|
2247
|
+
project_identifier: _builtins.str,
|
|
2248
|
+
removed: _builtins.bool,
|
|
2249
|
+
removed_at: _builtins.str,
|
|
2250
|
+
stopped: _builtins.bool,
|
|
2251
|
+
updated_at: _builtins.str,
|
|
2252
|
+
updated_by: _builtins.str):
|
|
2253
|
+
"""
|
|
2254
|
+
:param _builtins.str account_identifier: Account identifier of the installation.
|
|
2255
|
+
:param Sequence['GetDiscoveryAgentInstallationDetailAgentDetailArgs'] agent_details: Details about the agent installation.
|
|
2256
|
+
:param _builtins.str agent_id: ID of the agent.
|
|
2257
|
+
:param _builtins.str created_at: When the installation was created.
|
|
2258
|
+
:param _builtins.str created_by: Who created the installation.
|
|
2259
|
+
:param _builtins.str delegate_id: ID of the delegate.
|
|
2260
|
+
:param _builtins.str delegate_task_id: ID of the delegate task.
|
|
2261
|
+
:param _builtins.str delegate_task_status: Status of the delegate task.
|
|
2262
|
+
:param _builtins.str environment_identifier: Environment identifier of the installation.
|
|
2263
|
+
:param _builtins.str id: Installation ID.
|
|
2264
|
+
:param _builtins.bool is_cron_triggered: Whether the installation was triggered by a cron job.
|
|
2265
|
+
:param _builtins.str log_stream_created_at: When the log stream was created.
|
|
2266
|
+
:param _builtins.str log_stream_id: ID of the log stream.
|
|
2267
|
+
:param _builtins.str org_identifier: Organization identifier of the installation.
|
|
2268
|
+
:param _builtins.str project_identifier: Project identifier of the installation.
|
|
2269
|
+
:param _builtins.bool removed: Whether the installation has been removed.
|
|
2270
|
+
:param _builtins.str removed_at: When the installation was removed.
|
|
2271
|
+
:param _builtins.bool stopped: Whether the installation has been stopped.
|
|
2272
|
+
:param _builtins.str updated_at: When the installation was last updated.
|
|
2273
|
+
:param _builtins.str updated_by: Who last updated the installation.
|
|
2274
|
+
"""
|
|
2275
|
+
pulumi.set(__self__, "account_identifier", account_identifier)
|
|
2276
|
+
pulumi.set(__self__, "agent_details", agent_details)
|
|
2277
|
+
pulumi.set(__self__, "agent_id", agent_id)
|
|
2278
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
2279
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
2280
|
+
pulumi.set(__self__, "delegate_id", delegate_id)
|
|
2281
|
+
pulumi.set(__self__, "delegate_task_id", delegate_task_id)
|
|
2282
|
+
pulumi.set(__self__, "delegate_task_status", delegate_task_status)
|
|
2283
|
+
pulumi.set(__self__, "environment_identifier", environment_identifier)
|
|
2284
|
+
pulumi.set(__self__, "id", id)
|
|
2285
|
+
pulumi.set(__self__, "is_cron_triggered", is_cron_triggered)
|
|
2286
|
+
pulumi.set(__self__, "log_stream_created_at", log_stream_created_at)
|
|
2287
|
+
pulumi.set(__self__, "log_stream_id", log_stream_id)
|
|
2288
|
+
pulumi.set(__self__, "org_identifier", org_identifier)
|
|
2289
|
+
pulumi.set(__self__, "project_identifier", project_identifier)
|
|
2290
|
+
pulumi.set(__self__, "removed", removed)
|
|
2291
|
+
pulumi.set(__self__, "removed_at", removed_at)
|
|
2292
|
+
pulumi.set(__self__, "stopped", stopped)
|
|
2293
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
|
2294
|
+
pulumi.set(__self__, "updated_by", updated_by)
|
|
2295
|
+
|
|
2296
|
+
@_builtins.property
|
|
2297
|
+
@pulumi.getter(name="accountIdentifier")
|
|
2298
|
+
def account_identifier(self) -> _builtins.str:
|
|
2299
|
+
"""
|
|
2300
|
+
Account identifier of the installation.
|
|
2301
|
+
"""
|
|
2302
|
+
return pulumi.get(self, "account_identifier")
|
|
2303
|
+
|
|
2304
|
+
@_builtins.property
|
|
2305
|
+
@pulumi.getter(name="agentDetails")
|
|
2306
|
+
def agent_details(self) -> Sequence['outputs.GetDiscoveryAgentInstallationDetailAgentDetailResult']:
|
|
2307
|
+
"""
|
|
2308
|
+
Details about the agent installation.
|
|
2309
|
+
"""
|
|
2310
|
+
return pulumi.get(self, "agent_details")
|
|
2311
|
+
|
|
2312
|
+
@_builtins.property
|
|
2313
|
+
@pulumi.getter(name="agentId")
|
|
2314
|
+
def agent_id(self) -> _builtins.str:
|
|
2315
|
+
"""
|
|
2316
|
+
ID of the agent.
|
|
2317
|
+
"""
|
|
2318
|
+
return pulumi.get(self, "agent_id")
|
|
2319
|
+
|
|
2320
|
+
@_builtins.property
|
|
2321
|
+
@pulumi.getter(name="createdAt")
|
|
2322
|
+
def created_at(self) -> _builtins.str:
|
|
2323
|
+
"""
|
|
2324
|
+
When the installation was created.
|
|
2325
|
+
"""
|
|
2326
|
+
return pulumi.get(self, "created_at")
|
|
2327
|
+
|
|
2328
|
+
@_builtins.property
|
|
2329
|
+
@pulumi.getter(name="createdBy")
|
|
2330
|
+
def created_by(self) -> _builtins.str:
|
|
2331
|
+
"""
|
|
2332
|
+
Who created the installation.
|
|
2333
|
+
"""
|
|
2334
|
+
return pulumi.get(self, "created_by")
|
|
2335
|
+
|
|
2336
|
+
@_builtins.property
|
|
2337
|
+
@pulumi.getter(name="delegateId")
|
|
2338
|
+
def delegate_id(self) -> _builtins.str:
|
|
2339
|
+
"""
|
|
2340
|
+
ID of the delegate.
|
|
2341
|
+
"""
|
|
2342
|
+
return pulumi.get(self, "delegate_id")
|
|
2343
|
+
|
|
2344
|
+
@_builtins.property
|
|
2345
|
+
@pulumi.getter(name="delegateTaskId")
|
|
2346
|
+
def delegate_task_id(self) -> _builtins.str:
|
|
2347
|
+
"""
|
|
2348
|
+
ID of the delegate task.
|
|
2349
|
+
"""
|
|
2350
|
+
return pulumi.get(self, "delegate_task_id")
|
|
2351
|
+
|
|
2352
|
+
@_builtins.property
|
|
2353
|
+
@pulumi.getter(name="delegateTaskStatus")
|
|
2354
|
+
def delegate_task_status(self) -> _builtins.str:
|
|
2355
|
+
"""
|
|
2356
|
+
Status of the delegate task.
|
|
2357
|
+
"""
|
|
2358
|
+
return pulumi.get(self, "delegate_task_status")
|
|
2359
|
+
|
|
2360
|
+
@_builtins.property
|
|
2361
|
+
@pulumi.getter(name="environmentIdentifier")
|
|
2362
|
+
def environment_identifier(self) -> _builtins.str:
|
|
2363
|
+
"""
|
|
2364
|
+
Environment identifier of the installation.
|
|
2365
|
+
"""
|
|
2366
|
+
return pulumi.get(self, "environment_identifier")
|
|
219
2367
|
|
|
220
2368
|
@_builtins.property
|
|
221
2369
|
@pulumi.getter
|
|
222
|
-
def
|
|
2370
|
+
def id(self) -> _builtins.str:
|
|
223
2371
|
"""
|
|
224
|
-
|
|
2372
|
+
Installation ID.
|
|
225
2373
|
"""
|
|
226
|
-
return pulumi.get(self, "
|
|
2374
|
+
return pulumi.get(self, "id")
|
|
2375
|
+
|
|
2376
|
+
@_builtins.property
|
|
2377
|
+
@pulumi.getter(name="isCronTriggered")
|
|
2378
|
+
def is_cron_triggered(self) -> _builtins.bool:
|
|
2379
|
+
"""
|
|
2380
|
+
Whether the installation was triggered by a cron job.
|
|
2381
|
+
"""
|
|
2382
|
+
return pulumi.get(self, "is_cron_triggered")
|
|
2383
|
+
|
|
2384
|
+
@_builtins.property
|
|
2385
|
+
@pulumi.getter(name="logStreamCreatedAt")
|
|
2386
|
+
def log_stream_created_at(self) -> _builtins.str:
|
|
2387
|
+
"""
|
|
2388
|
+
When the log stream was created.
|
|
2389
|
+
"""
|
|
2390
|
+
return pulumi.get(self, "log_stream_created_at")
|
|
2391
|
+
|
|
2392
|
+
@_builtins.property
|
|
2393
|
+
@pulumi.getter(name="logStreamId")
|
|
2394
|
+
def log_stream_id(self) -> _builtins.str:
|
|
2395
|
+
"""
|
|
2396
|
+
ID of the log stream.
|
|
2397
|
+
"""
|
|
2398
|
+
return pulumi.get(self, "log_stream_id")
|
|
2399
|
+
|
|
2400
|
+
@_builtins.property
|
|
2401
|
+
@pulumi.getter(name="orgIdentifier")
|
|
2402
|
+
def org_identifier(self) -> _builtins.str:
|
|
2403
|
+
"""
|
|
2404
|
+
Organization identifier of the installation.
|
|
2405
|
+
"""
|
|
2406
|
+
return pulumi.get(self, "org_identifier")
|
|
2407
|
+
|
|
2408
|
+
@_builtins.property
|
|
2409
|
+
@pulumi.getter(name="projectIdentifier")
|
|
2410
|
+
def project_identifier(self) -> _builtins.str:
|
|
2411
|
+
"""
|
|
2412
|
+
Project identifier of the installation.
|
|
2413
|
+
"""
|
|
2414
|
+
return pulumi.get(self, "project_identifier")
|
|
2415
|
+
|
|
2416
|
+
@_builtins.property
|
|
2417
|
+
@pulumi.getter
|
|
2418
|
+
def removed(self) -> _builtins.bool:
|
|
2419
|
+
"""
|
|
2420
|
+
Whether the installation has been removed.
|
|
2421
|
+
"""
|
|
2422
|
+
return pulumi.get(self, "removed")
|
|
2423
|
+
|
|
2424
|
+
@_builtins.property
|
|
2425
|
+
@pulumi.getter(name="removedAt")
|
|
2426
|
+
def removed_at(self) -> _builtins.str:
|
|
2427
|
+
"""
|
|
2428
|
+
When the installation was removed.
|
|
2429
|
+
"""
|
|
2430
|
+
return pulumi.get(self, "removed_at")
|
|
2431
|
+
|
|
2432
|
+
@_builtins.property
|
|
2433
|
+
@pulumi.getter
|
|
2434
|
+
def stopped(self) -> _builtins.bool:
|
|
2435
|
+
"""
|
|
2436
|
+
Whether the installation has been stopped.
|
|
2437
|
+
"""
|
|
2438
|
+
return pulumi.get(self, "stopped")
|
|
2439
|
+
|
|
2440
|
+
@_builtins.property
|
|
2441
|
+
@pulumi.getter(name="updatedAt")
|
|
2442
|
+
def updated_at(self) -> _builtins.str:
|
|
2443
|
+
"""
|
|
2444
|
+
When the installation was last updated.
|
|
2445
|
+
"""
|
|
2446
|
+
return pulumi.get(self, "updated_at")
|
|
2447
|
+
|
|
2448
|
+
@_builtins.property
|
|
2449
|
+
@pulumi.getter(name="updatedBy")
|
|
2450
|
+
def updated_by(self) -> _builtins.str:
|
|
2451
|
+
"""
|
|
2452
|
+
Who last updated the installation.
|
|
2453
|
+
"""
|
|
2454
|
+
return pulumi.get(self, "updated_by")
|
|
227
2455
|
|
|
228
2456
|
|
|
229
2457
|
@pulumi.output_type
|
|
230
|
-
class
|
|
2458
|
+
class GetDiscoveryAgentInstallationDetailAgentDetailResult(dict):
|
|
231
2459
|
def __init__(__self__, *,
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
2460
|
+
clusters: Sequence['outputs.GetDiscoveryAgentInstallationDetailAgentDetailClusterResult'],
|
|
2461
|
+
nodes: Sequence['outputs.GetDiscoveryAgentInstallationDetailAgentDetailNodeResult'],
|
|
2462
|
+
status: _builtins.str):
|
|
235
2463
|
"""
|
|
236
|
-
:param
|
|
237
|
-
:param
|
|
238
|
-
:param _builtins.str
|
|
2464
|
+
:param Sequence['GetDiscoveryAgentInstallationDetailAgentDetailClusterArgs'] clusters: Cluster information.
|
|
2465
|
+
:param Sequence['GetDiscoveryAgentInstallationDetailAgentDetailNodeArgs'] nodes: List of nodes in the cluster.
|
|
2466
|
+
:param _builtins.str status: Status of the agent.
|
|
239
2467
|
"""
|
|
240
|
-
pulumi.set(__self__, "
|
|
241
|
-
pulumi.set(__self__, "
|
|
242
|
-
pulumi.set(__self__, "
|
|
2468
|
+
pulumi.set(__self__, "clusters", clusters)
|
|
2469
|
+
pulumi.set(__self__, "nodes", nodes)
|
|
2470
|
+
pulumi.set(__self__, "status", status)
|
|
243
2471
|
|
|
244
2472
|
@_builtins.property
|
|
245
2473
|
@pulumi.getter
|
|
246
|
-
def
|
|
2474
|
+
def clusters(self) -> Sequence['outputs.GetDiscoveryAgentInstallationDetailAgentDetailClusterResult']:
|
|
247
2475
|
"""
|
|
248
|
-
|
|
2476
|
+
Cluster information.
|
|
249
2477
|
"""
|
|
250
|
-
return pulumi.get(self, "
|
|
2478
|
+
return pulumi.get(self, "clusters")
|
|
251
2479
|
|
|
252
2480
|
@_builtins.property
|
|
253
2481
|
@pulumi.getter
|
|
254
|
-
def
|
|
2482
|
+
def nodes(self) -> Sequence['outputs.GetDiscoveryAgentInstallationDetailAgentDetailNodeResult']:
|
|
255
2483
|
"""
|
|
256
|
-
|
|
2484
|
+
List of nodes in the cluster.
|
|
257
2485
|
"""
|
|
258
|
-
return pulumi.get(self, "
|
|
2486
|
+
return pulumi.get(self, "nodes")
|
|
259
2487
|
|
|
260
2488
|
@_builtins.property
|
|
261
2489
|
@pulumi.getter
|
|
262
|
-
def
|
|
2490
|
+
def status(self) -> _builtins.str:
|
|
263
2491
|
"""
|
|
264
|
-
|
|
2492
|
+
Status of the agent.
|
|
265
2493
|
"""
|
|
266
|
-
return pulumi.get(self, "
|
|
2494
|
+
return pulumi.get(self, "status")
|
|
267
2495
|
|
|
268
2496
|
|
|
269
2497
|
@pulumi.output_type
|
|
270
|
-
class
|
|
2498
|
+
class GetDiscoveryAgentInstallationDetailAgentDetailClusterResult(dict):
|
|
271
2499
|
def __init__(__self__, *,
|
|
272
2500
|
name: _builtins.str,
|
|
273
|
-
|
|
274
|
-
|
|
2501
|
+
namespace: _builtins.str,
|
|
2502
|
+
status: _builtins.str,
|
|
2503
|
+
uid: _builtins.str):
|
|
275
2504
|
"""
|
|
276
|
-
:param _builtins.str name: Name of the
|
|
277
|
-
:param _builtins.str
|
|
278
|
-
:param _builtins.str
|
|
2505
|
+
:param _builtins.str name: Name of the cluster.
|
|
2506
|
+
:param _builtins.str namespace: Namespace of the cluster.
|
|
2507
|
+
:param _builtins.str status: Status of the cluster.
|
|
2508
|
+
:param _builtins.str uid: UID of the cluster.
|
|
279
2509
|
"""
|
|
280
2510
|
pulumi.set(__self__, "name", name)
|
|
281
|
-
pulumi.set(__self__, "
|
|
282
|
-
pulumi.set(__self__, "
|
|
2511
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
2512
|
+
pulumi.set(__self__, "status", status)
|
|
2513
|
+
pulumi.set(__self__, "uid", uid)
|
|
283
2514
|
|
|
284
2515
|
@_builtins.property
|
|
285
2516
|
@pulumi.getter
|
|
286
2517
|
def name(self) -> _builtins.str:
|
|
287
2518
|
"""
|
|
288
|
-
Name of the
|
|
2519
|
+
Name of the cluster.
|
|
289
2520
|
"""
|
|
290
2521
|
return pulumi.get(self, "name")
|
|
291
2522
|
|
|
292
2523
|
@_builtins.property
|
|
293
2524
|
@pulumi.getter
|
|
294
|
-
def
|
|
2525
|
+
def namespace(self) -> _builtins.str:
|
|
295
2526
|
"""
|
|
296
|
-
|
|
2527
|
+
Namespace of the cluster.
|
|
297
2528
|
"""
|
|
298
|
-
return pulumi.get(self, "
|
|
2529
|
+
return pulumi.get(self, "namespace")
|
|
299
2530
|
|
|
300
2531
|
@_builtins.property
|
|
301
2532
|
@pulumi.getter
|
|
302
|
-
def
|
|
2533
|
+
def status(self) -> _builtins.str:
|
|
303
2534
|
"""
|
|
304
|
-
|
|
2535
|
+
Status of the cluster.
|
|
305
2536
|
"""
|
|
306
|
-
return pulumi.get(self, "
|
|
2537
|
+
return pulumi.get(self, "status")
|
|
2538
|
+
|
|
2539
|
+
@_builtins.property
|
|
2540
|
+
@pulumi.getter
|
|
2541
|
+
def uid(self) -> _builtins.str:
|
|
2542
|
+
"""
|
|
2543
|
+
UID of the cluster.
|
|
2544
|
+
"""
|
|
2545
|
+
return pulumi.get(self, "uid")
|
|
307
2546
|
|
|
308
2547
|
|
|
309
2548
|
@pulumi.output_type
|
|
310
|
-
class
|
|
2549
|
+
class GetDiscoveryAgentInstallationDetailAgentDetailNodeResult(dict):
|
|
311
2550
|
def __init__(__self__, *,
|
|
312
2551
|
name: _builtins.str,
|
|
313
|
-
|
|
314
|
-
|
|
2552
|
+
namespace: _builtins.str,
|
|
2553
|
+
status: _builtins.str,
|
|
2554
|
+
uid: _builtins.str):
|
|
315
2555
|
"""
|
|
316
|
-
:param _builtins.str name: Name of the
|
|
317
|
-
:param _builtins.str
|
|
318
|
-
:param _builtins.str
|
|
2556
|
+
:param _builtins.str name: Name of the node.
|
|
2557
|
+
:param _builtins.str namespace: Namespace of the node.
|
|
2558
|
+
:param _builtins.str status: Status of the node.
|
|
2559
|
+
:param _builtins.str uid: UID of the node.
|
|
319
2560
|
"""
|
|
320
2561
|
pulumi.set(__self__, "name", name)
|
|
321
|
-
pulumi.set(__self__, "
|
|
322
|
-
pulumi.set(__self__, "
|
|
2562
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
2563
|
+
pulumi.set(__self__, "status", status)
|
|
2564
|
+
pulumi.set(__self__, "uid", uid)
|
|
323
2565
|
|
|
324
2566
|
@_builtins.property
|
|
325
2567
|
@pulumi.getter
|
|
326
2568
|
def name(self) -> _builtins.str:
|
|
327
2569
|
"""
|
|
328
|
-
Name of the
|
|
2570
|
+
Name of the node.
|
|
329
2571
|
"""
|
|
330
2572
|
return pulumi.get(self, "name")
|
|
331
2573
|
|
|
332
2574
|
@_builtins.property
|
|
333
2575
|
@pulumi.getter
|
|
334
|
-
def
|
|
2576
|
+
def namespace(self) -> _builtins.str:
|
|
335
2577
|
"""
|
|
336
|
-
|
|
2578
|
+
Namespace of the node.
|
|
337
2579
|
"""
|
|
338
|
-
return pulumi.get(self, "
|
|
2580
|
+
return pulumi.get(self, "namespace")
|
|
339
2581
|
|
|
340
2582
|
@_builtins.property
|
|
341
2583
|
@pulumi.getter
|
|
342
|
-
def
|
|
2584
|
+
def status(self) -> _builtins.str:
|
|
343
2585
|
"""
|
|
344
|
-
|
|
2586
|
+
Status of the node.
|
|
345
2587
|
"""
|
|
346
|
-
return pulumi.get(self, "
|
|
2588
|
+
return pulumi.get(self, "status")
|
|
2589
|
+
|
|
2590
|
+
@_builtins.property
|
|
2591
|
+
@pulumi.getter
|
|
2592
|
+
def uid(self) -> _builtins.str:
|
|
2593
|
+
"""
|
|
2594
|
+
UID of the node.
|
|
2595
|
+
"""
|
|
2596
|
+
return pulumi.get(self, "uid")
|
|
347
2597
|
|
|
348
2598
|
|
|
349
2599
|
@pulumi.output_type
|
|
350
|
-
class
|
|
2600
|
+
class GetDiscoverySettingImageRegistryResult(dict):
|
|
351
2601
|
def __init__(__self__, *,
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
2602
|
+
account: _builtins.str,
|
|
2603
|
+
secrets: Sequence[_builtins.str],
|
|
2604
|
+
server: _builtins.str):
|
|
355
2605
|
"""
|
|
356
|
-
:param _builtins.str
|
|
357
|
-
:param _builtins.str
|
|
358
|
-
:param _builtins.str
|
|
2606
|
+
:param _builtins.str account: The account name for the image registry.
|
|
2607
|
+
:param Sequence[_builtins.str] secrets: List of secrets for the image registry.
|
|
2608
|
+
:param _builtins.str server: The server URL for the image registry.
|
|
359
2609
|
"""
|
|
360
|
-
pulumi.set(__self__, "
|
|
361
|
-
pulumi.set(__self__, "
|
|
362
|
-
pulumi.set(__self__, "
|
|
2610
|
+
pulumi.set(__self__, "account", account)
|
|
2611
|
+
pulumi.set(__self__, "secrets", secrets)
|
|
2612
|
+
pulumi.set(__self__, "server", server)
|
|
363
2613
|
|
|
364
2614
|
@_builtins.property
|
|
365
2615
|
@pulumi.getter
|
|
366
|
-
def
|
|
2616
|
+
def account(self) -> _builtins.str:
|
|
367
2617
|
"""
|
|
368
|
-
|
|
2618
|
+
The account name for the image registry.
|
|
369
2619
|
"""
|
|
370
|
-
return pulumi.get(self, "
|
|
2620
|
+
return pulumi.get(self, "account")
|
|
371
2621
|
|
|
372
2622
|
@_builtins.property
|
|
373
2623
|
@pulumi.getter
|
|
374
|
-
def
|
|
2624
|
+
def secrets(self) -> Sequence[_builtins.str]:
|
|
375
2625
|
"""
|
|
376
|
-
|
|
2626
|
+
List of secrets for the image registry.
|
|
377
2627
|
"""
|
|
378
|
-
return pulumi.get(self, "
|
|
2628
|
+
return pulumi.get(self, "secrets")
|
|
379
2629
|
|
|
380
2630
|
@_builtins.property
|
|
381
2631
|
@pulumi.getter
|
|
382
|
-
def
|
|
2632
|
+
def server(self) -> _builtins.str:
|
|
383
2633
|
"""
|
|
384
|
-
|
|
2634
|
+
The server URL for the image registry.
|
|
385
2635
|
"""
|
|
386
|
-
return pulumi.get(self, "
|
|
2636
|
+
return pulumi.get(self, "server")
|
|
387
2637
|
|
|
388
2638
|
|