pulumi-harness 0.5.0a1736833425__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 +1257 -0
- pulumi_harness/_inputs.py +4025 -0
- pulumi_harness/_utilities.py +327 -0
- pulumi_harness/add_user_to_group.py +241 -0
- pulumi_harness/application.py +393 -0
- pulumi_harness/application_git_sync.py +411 -0
- pulumi_harness/autostopping/__init__.py +27 -0
- pulumi_harness/autostopping/_inputs.py +2688 -0
- pulumi_harness/autostopping/aws_alb.py +640 -0
- pulumi_harness/autostopping/aws_proxy.py +760 -0
- pulumi_harness/autostopping/azure_gateway.py +798 -0
- pulumi_harness/autostopping/azure_proxy.py +855 -0
- pulumi_harness/autostopping/gcp_proxy.py +779 -0
- pulumi_harness/autostopping/get_aws_alb.py +278 -0
- pulumi_harness/autostopping/get_aws_proxy.py +335 -0
- pulumi_harness/autostopping/get_azure_gateway.py +343 -0
- pulumi_harness/autostopping/get_azure_proxy.py +375 -0
- pulumi_harness/autostopping/get_gcp_proxy.py +340 -0
- pulumi_harness/autostopping/get_rule_ecs.py +225 -0
- pulumi_harness/autostopping/get_rule_rds.py +205 -0
- pulumi_harness/autostopping/get_rule_vm.py +265 -0
- pulumi_harness/autostopping/get_schedule.py +193 -0
- pulumi_harness/autostopping/outputs.py +1971 -0
- pulumi_harness/autostopping/rule_ecs.py +450 -0
- pulumi_harness/autostopping/rule_rds.py +448 -0
- pulumi_harness/autostopping/rule_vm.py +663 -0
- pulumi_harness/autostopping/schedule.py +465 -0
- pulumi_harness/cloudprovider/__init__.py +17 -0
- pulumi_harness/cloudprovider/_inputs.py +777 -0
- pulumi_harness/cloudprovider/aws.py +586 -0
- pulumi_harness/cloudprovider/azure.py +393 -0
- pulumi_harness/cloudprovider/datacenter.py +233 -0
- pulumi_harness/cloudprovider/gcp.py +340 -0
- pulumi_harness/cloudprovider/get_delegate_ids.py +148 -0
- pulumi_harness/cloudprovider/kubernetes.py +310 -0
- pulumi_harness/cloudprovider/outputs.py +657 -0
- pulumi_harness/cloudprovider/spot.py +296 -0
- pulumi_harness/cloudprovider/tanzu.py +441 -0
- pulumi_harness/cluster/__init__.py +9 -0
- pulumi_harness/cluster/get_orchestrator.py +134 -0
- pulumi_harness/cluster/orchestrator.py +286 -0
- pulumi_harness/config/__init__.py +8 -0
- pulumi_harness/config/__init__.pyi +40 -0
- pulumi_harness/config/vars.py +54 -0
- pulumi_harness/delegate_approval.py +267 -0
- pulumi_harness/encrypted_text.py +499 -0
- pulumi_harness/environment.py +446 -0
- pulumi_harness/get_application.py +180 -0
- pulumi_harness/get_current_account.py +108 -0
- pulumi_harness/get_delegate.py +280 -0
- pulumi_harness/get_encrypted_text.py +136 -0
- pulumi_harness/get_environment.py +184 -0
- pulumi_harness/get_git_connector.py +255 -0
- pulumi_harness/get_secret_manager.py +142 -0
- pulumi_harness/get_service.py +198 -0
- pulumi_harness/get_ssh_credential.py +122 -0
- pulumi_harness/get_sso_provider.py +114 -0
- pulumi_harness/get_trigger.py +177 -0
- pulumi_harness/get_user.py +184 -0
- pulumi_harness/get_user_group.py +100 -0
- pulumi_harness/get_yaml_config.py +142 -0
- pulumi_harness/git_connector.py +738 -0
- pulumi_harness/governance/__init__.py +13 -0
- pulumi_harness/governance/get_rule.py +168 -0
- pulumi_harness/governance/get_rule_enforcement.py +266 -0
- pulumi_harness/governance/get_rule_set.py +150 -0
- pulumi_harness/governance/rule.py +337 -0
- pulumi_harness/governance/rule_enforcement.py +668 -0
- pulumi_harness/governance/rule_set.py +321 -0
- pulumi_harness/infrastructure_definition.py +1246 -0
- pulumi_harness/outputs.py +3306 -0
- pulumi_harness/platform/__init__.py +220 -0
- pulumi_harness/platform/_inputs.py +22314 -0
- pulumi_harness/platform/app_dynamics_connector.py +733 -0
- pulumi_harness/platform/artifactory_connector.py +748 -0
- pulumi_harness/platform/aws_cc_connector.py +716 -0
- pulumi_harness/platform/aws_connector.py +851 -0
- pulumi_harness/platform/aws_kms_connector.py +619 -0
- pulumi_harness/platform/aws_secret_manager_connector.py +712 -0
- pulumi_harness/platform/azure_cloud_cost_connector.py +675 -0
- pulumi_harness/platform/azure_cloud_provider_connector.py +826 -0
- pulumi_harness/platform/azure_key_vault_connector.py +843 -0
- pulumi_harness/platform/bitbucket_connector.py +713 -0
- pulumi_harness/platform/connector_azure_artifacts.py +529 -0
- pulumi_harness/platform/connector_custom_secret_manager.py +887 -0
- pulumi_harness/platform/connector_customhealthsource.py +807 -0
- pulumi_harness/platform/connector_jdbc.py +609 -0
- pulumi_harness/platform/connector_pdc.py +527 -0
- pulumi_harness/platform/connector_rancher.py +617 -0
- pulumi_harness/platform/datadog_connector.py +651 -0
- pulumi_harness/platform/db_instance.py +636 -0
- pulumi_harness/platform/db_schema.py +547 -0
- pulumi_harness/platform/delegatetoken.py +520 -0
- pulumi_harness/platform/docker_connector.py +669 -0
- pulumi_harness/platform/dynatrace_connector.py +601 -0
- pulumi_harness/platform/elasticsearch_connector.py +744 -0
- pulumi_harness/platform/environment.py +1173 -0
- pulumi_harness/platform/environment_clusters_mapping.py +454 -0
- pulumi_harness/platform/environment_group.py +560 -0
- pulumi_harness/platform/environment_service_overrides.py +688 -0
- pulumi_harness/platform/feature_flag.py +724 -0
- pulumi_harness/platform/feature_flag_api_key.py +550 -0
- pulumi_harness/platform/feature_flag_target.py +473 -0
- pulumi_harness/platform/feature_flag_target_group.py +577 -0
- pulumi_harness/platform/file_store_file.py +822 -0
- pulumi_harness/platform/file_store_folder.py +628 -0
- pulumi_harness/platform/filters.py +511 -0
- pulumi_harness/platform/gcp_cloud_cost_connector.py +669 -0
- pulumi_harness/platform/gcp_connector.py +663 -0
- pulumi_harness/platform/gcp_secret_manager_connector.py +594 -0
- pulumi_harness/platform/get_api_key.py +292 -0
- pulumi_harness/platform/get_app_dynamics_connector.py +271 -0
- pulumi_harness/platform/get_artifactory_connector.py +243 -0
- pulumi_harness/platform/get_aws_cc_connector.py +271 -0
- pulumi_harness/platform/get_aws_connector.py +313 -0
- pulumi_harness/platform/get_aws_kms_connector.py +253 -0
- pulumi_harness/platform/get_aws_secret_manager_connector.py +267 -0
- pulumi_harness/platform/get_azure_cloud_cost_connector.py +257 -0
- pulumi_harness/platform/get_azure_cloud_provider_connector.py +257 -0
- pulumi_harness/platform/get_azure_key_vault_connector.py +308 -0
- pulumi_harness/platform/get_bitbucket_connector.py +285 -0
- pulumi_harness/platform/get_ccm_filters.py +221 -0
- pulumi_harness/platform/get_connector_custom_secret_manager.py +330 -0
- pulumi_harness/platform/get_connector_customhealthsource.py +281 -0
- pulumi_harness/platform/get_connector_jdbc.py +243 -0
- pulumi_harness/platform/get_connector_pdc.py +229 -0
- pulumi_harness/platform/get_connector_rancher.py +236 -0
- pulumi_harness/platform/get_current_account.py +126 -0
- pulumi_harness/platform/get_current_user.py +252 -0
- pulumi_harness/platform/get_datadog_connector.py +262 -0
- pulumi_harness/platform/get_db_instance.py +268 -0
- pulumi_harness/platform/get_db_schema.py +233 -0
- pulumi_harness/platform/get_delegatetoken.py +214 -0
- pulumi_harness/platform/get_docker_connector.py +257 -0
- pulumi_harness/platform/get_dynatrace_connector.py +242 -0
- pulumi_harness/platform/get_elasticsearch_connector.py +257 -0
- pulumi_harness/platform/get_environment.py +263 -0
- pulumi_harness/platform/get_environment_clusters_mapping.py +262 -0
- pulumi_harness/platform/get_environment_group.py +190 -0
- pulumi_harness/platform/get_environment_list.py +172 -0
- pulumi_harness/platform/get_environment_service_overrides.py +212 -0
- pulumi_harness/platform/get_file_store_file.py +327 -0
- pulumi_harness/platform/get_file_store_folder.py +271 -0
- pulumi_harness/platform/get_filters.py +217 -0
- pulumi_harness/platform/get_gcp_cloud_cost_connector.py +257 -0
- pulumi_harness/platform/get_gcp_connector.py +243 -0
- pulumi_harness/platform/get_gcp_secret_manager_connector.py +238 -0
- pulumi_harness/platform/get_git_connector.py +271 -0
- pulumi_harness/platform/get_github_connector.py +296 -0
- pulumi_harness/platform/get_gitlab_connector.py +285 -0
- pulumi_harness/platform/get_gitops_agent.py +303 -0
- pulumi_harness/platform/get_gitops_agent_deploy_yaml.py +257 -0
- pulumi_harness/platform/get_gitops_app_project.py +191 -0
- pulumi_harness/platform/get_gitops_app_project_mapping.py +189 -0
- pulumi_harness/platform/get_gitops_applications.py +351 -0
- pulumi_harness/platform/get_gitops_cluster.py +216 -0
- pulumi_harness/platform/get_gitops_gnupg.py +219 -0
- pulumi_harness/platform/get_gitops_repo_cert.py +155 -0
- pulumi_harness/platform/get_gitops_repo_cred.py +223 -0
- pulumi_harness/platform/get_gitops_repository.py +230 -0
- pulumi_harness/platform/get_gitx_webhook.py +194 -0
- pulumi_harness/platform/get_helm_connector.py +243 -0
- pulumi_harness/platform/get_iacm_default_pipeline.py +168 -0
- pulumi_harness/platform/get_infra_module.py +320 -0
- pulumi_harness/platform/get_infrastructure.py +287 -0
- pulumi_harness/platform/get_input_set.py +238 -0
- pulumi_harness/platform/get_jenkins_connector.py +243 -0
- pulumi_harness/platform/get_jira_connector.py +285 -0
- pulumi_harness/platform/get_kubernetes_cloud_cost_connector.py +228 -0
- pulumi_harness/platform/get_kubernetes_connector.py +285 -0
- pulumi_harness/platform/get_manual_freeze.py +305 -0
- pulumi_harness/platform/get_monitored_service.py +134 -0
- pulumi_harness/platform/get_nexus_connector.py +257 -0
- pulumi_harness/platform/get_notification_rule.py +156 -0
- pulumi_harness/platform/get_oci_helm_connector.py +243 -0
- pulumi_harness/platform/get_organization.py +156 -0
- pulumi_harness/platform/get_overrides.py +198 -0
- pulumi_harness/platform/get_pagerduty_connector.py +224 -0
- pulumi_harness/platform/get_permissions.py +149 -0
- pulumi_harness/platform/get_pipeline.py +268 -0
- pulumi_harness/platform/get_pipeline_filters.py +197 -0
- pulumi_harness/platform/get_pipeline_list.py +269 -0
- pulumi_harness/platform/get_policy.py +220 -0
- pulumi_harness/platform/get_policy_set.py +298 -0
- pulumi_harness/platform/get_project.py +210 -0
- pulumi_harness/platform/get_project_list.py +249 -0
- pulumi_harness/platform/get_prometheus_connector.py +271 -0
- pulumi_harness/platform/get_provider.py +85 -0
- pulumi_harness/platform/get_repo.py +362 -0
- pulumi_harness/platform/get_repo_rule_branch.py +312 -0
- pulumi_harness/platform/get_repo_webhook.py +316 -0
- pulumi_harness/platform/get_resource_group.py +267 -0
- pulumi_harness/platform/get_role_assignments.py +223 -0
- pulumi_harness/platform/get_roles.py +240 -0
- pulumi_harness/platform/get_secret_file.py +224 -0
- pulumi_harness/platform/get_secret_sshkey.py +239 -0
- pulumi_harness/platform/get_secret_text.py +264 -0
- pulumi_harness/platform/get_service.py +235 -0
- pulumi_harness/platform/get_service_account.py +224 -0
- pulumi_harness/platform/get_service_list.py +172 -0
- pulumi_harness/platform/get_service_now_connector.py +285 -0
- pulumi_harness/platform/get_service_overrides_v2.py +220 -0
- pulumi_harness/platform/get_slo.py +134 -0
- pulumi_harness/platform/get_splunk_connector.py +270 -0
- pulumi_harness/platform/get_spot_connector.py +215 -0
- pulumi_harness/platform/get_sumologic_connector.py +256 -0
- pulumi_harness/platform/get_tas_connector.py +243 -0
- pulumi_harness/platform/get_template.py +386 -0
- pulumi_harness/platform/get_template_filters.py +221 -0
- pulumi_harness/platform/get_terraform_cloud_connector.py +233 -0
- pulumi_harness/platform/get_token.py +430 -0
- pulumi_harness/platform/get_triggers.py +260 -0
- pulumi_harness/platform/get_user.py +222 -0
- pulumi_harness/platform/get_usergroup.py +340 -0
- pulumi_harness/platform/get_variables.py +209 -0
- pulumi_harness/platform/get_vault_connector.py +574 -0
- pulumi_harness/platform/get_workspace.py +411 -0
- pulumi_harness/platform/get_workspace_output_value.py +168 -0
- pulumi_harness/platform/git_connector.py +713 -0
- pulumi_harness/platform/git_ops_agent.py +727 -0
- pulumi_harness/platform/git_ops_applications.py +1090 -0
- pulumi_harness/platform/git_ops_cluster.py +438 -0
- pulumi_harness/platform/git_ops_gnupg.py +453 -0
- pulumi_harness/platform/git_ops_repo_cert.py +437 -0
- pulumi_harness/platform/git_ops_repo_cred.py +533 -0
- pulumi_harness/platform/git_ops_repository.py +831 -0
- pulumi_harness/platform/github_connector.py +807 -0
- pulumi_harness/platform/gitlab_connector.py +713 -0
- pulumi_harness/platform/gitops_app_project.py +485 -0
- pulumi_harness/platform/gitops_app_project_mapping.py +423 -0
- pulumi_harness/platform/gitx_webhook.py +616 -0
- pulumi_harness/platform/helm_connector.py +617 -0
- pulumi_harness/platform/iacm_default_pipeline.py +343 -0
- pulumi_harness/platform/infra_module.py +755 -0
- pulumi_harness/platform/infrastructure.py +937 -0
- pulumi_harness/platform/input_set.py +689 -0
- pulumi_harness/platform/jenkins_connector.py +566 -0
- pulumi_harness/platform/jira_connector.py +714 -0
- pulumi_harness/platform/kubernetes_cloud_cost_connector.py +558 -0
- pulumi_harness/platform/kubernetes_connector.py +895 -0
- pulumi_harness/platform/manual_freeze.py +835 -0
- pulumi_harness/platform/monitored_service.py +1984 -0
- pulumi_harness/platform/newrelic_connector.py +651 -0
- pulumi_harness/platform/nexus_connector.py +622 -0
- pulumi_harness/platform/notification_rule.py +526 -0
- pulumi_harness/platform/oci_helm_connector.py +617 -0
- pulumi_harness/platform/organization.py +336 -0
- pulumi_harness/platform/outputs.py +23361 -0
- pulumi_harness/platform/overrides.py +669 -0
- pulumi_harness/platform/pagerduty_connector.py +547 -0
- pulumi_harness/platform/pipeline.py +991 -0
- pulumi_harness/platform/pipeline_filters.py +711 -0
- pulumi_harness/platform/policy.py +944 -0
- pulumi_harness/platform/policy_set.py +594 -0
- pulumi_harness/platform/project.py +453 -0
- pulumi_harness/platform/prometheus_connector.py +710 -0
- pulumi_harness/platform/provider.py +349 -0
- pulumi_harness/platform/repo.py +737 -0
- pulumi_harness/platform/repo_rule_branch.py +645 -0
- pulumi_harness/platform/repo_webhook.py +664 -0
- pulumi_harness/platform/resource_group.py +718 -0
- pulumi_harness/platform/role_assignments.py +524 -0
- pulumi_harness/platform/roles.py +546 -0
- pulumi_harness/platform/secret_file.py +548 -0
- pulumi_harness/platform/secret_sshkey.py +569 -0
- pulumi_harness/platform/secret_text.py +620 -0
- pulumi_harness/platform/service.py +1195 -0
- pulumi_harness/platform/service_account.py +548 -0
- pulumi_harness/platform/service_now_connector.py +714 -0
- pulumi_harness/platform/service_overrides_v2.py +915 -0
- pulumi_harness/platform/slo.py +462 -0
- pulumi_harness/platform/splunk_connector.py +701 -0
- pulumi_harness/platform/spot_connector.py +452 -0
- pulumi_harness/platform/sumologic_connector.py +651 -0
- pulumi_harness/platform/tas_connector.py +570 -0
- pulumi_harness/platform/template.py +861 -0
- pulumi_harness/platform/template_filters.py +515 -0
- pulumi_harness/platform/terraform_cloud_connector.py +545 -0
- pulumi_harness/platform/token.py +977 -0
- pulumi_harness/platform/triggers.py +680 -0
- pulumi_harness/platform/user.py +522 -0
- pulumi_harness/platform/usergroup.py +1104 -0
- pulumi_harness/platform/variables.py +509 -0
- pulumi_harness/platform/vault_connector.py +1919 -0
- pulumi_harness/platform/workspace.py +1145 -0
- pulumi_harness/platform_api_key.py +617 -0
- pulumi_harness/platform_ccm_filters.py +515 -0
- pulumi_harness/provider.py +227 -0
- pulumi_harness/pulumi-plugin.json +6 -0
- pulumi_harness/py.typed +0 -0
- pulumi_harness/service/__init__.py +18 -0
- pulumi_harness/service/_inputs.py +660 -0
- pulumi_harness/service/ami.py +336 -0
- pulumi_harness/service/codedeploy.py +336 -0
- pulumi_harness/service/ecs.py +336 -0
- pulumi_harness/service/helm.py +336 -0
- pulumi_harness/service/kubernetes.py +409 -0
- pulumi_harness/service/lambda_.py +336 -0
- pulumi_harness/service/outputs.py +388 -0
- pulumi_harness/service/ssh.py +386 -0
- pulumi_harness/service/tanzu.py +336 -0
- pulumi_harness/service/winrm.py +386 -0
- pulumi_harness/ssh_credential.py +361 -0
- pulumi_harness/user.py +423 -0
- pulumi_harness/user_group.py +713 -0
- pulumi_harness/user_group_permissions.py +247 -0
- pulumi_harness/yaml_config.py +336 -0
- pulumi_harness-0.5.0a1736833425.dist-info/METADATA +69 -0
- pulumi_harness-0.5.0a1736833425.dist-info/RECORD +311 -0
- pulumi_harness-0.5.0a1736833425.dist-info/WHEEL +5 -0
- pulumi_harness-0.5.0a1736833425.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1971 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'AwsProxyCertificates',
|
|
20
|
+
'AzureProxyCertificates',
|
|
21
|
+
'GcpProxyCertificates',
|
|
22
|
+
'RuleEcsContainer',
|
|
23
|
+
'RuleEcsDepend',
|
|
24
|
+
'RuleEcsHttp',
|
|
25
|
+
'RuleRdsDatabase',
|
|
26
|
+
'RuleRdsDepend',
|
|
27
|
+
'RuleRdsTcp',
|
|
28
|
+
'RuleRdsTcpForwardRule',
|
|
29
|
+
'RuleVmDepend',
|
|
30
|
+
'RuleVmFilter',
|
|
31
|
+
'RuleVmFilterTag',
|
|
32
|
+
'RuleVmHttp',
|
|
33
|
+
'RuleVmHttpHealth',
|
|
34
|
+
'RuleVmHttpRouting',
|
|
35
|
+
'RuleVmTcp',
|
|
36
|
+
'RuleVmTcpForwardRule',
|
|
37
|
+
'RuleVmTcpRdp',
|
|
38
|
+
'RuleVmTcpSsh',
|
|
39
|
+
'ScheduleRepeat',
|
|
40
|
+
'GetAwsProxyCertificatesResult',
|
|
41
|
+
'GetAzureProxyCertificatesResult',
|
|
42
|
+
'GetGcpProxyCertificatesResult',
|
|
43
|
+
'GetRuleEcsContainerResult',
|
|
44
|
+
'GetRuleEcsDependResult',
|
|
45
|
+
'GetRuleEcsHttpResult',
|
|
46
|
+
'GetRuleRdsDatabaseResult',
|
|
47
|
+
'GetRuleRdsDependResult',
|
|
48
|
+
'GetRuleRdsTcpResult',
|
|
49
|
+
'GetRuleRdsTcpForwardRuleResult',
|
|
50
|
+
'GetRuleVmDependResult',
|
|
51
|
+
'GetRuleVmFilterResult',
|
|
52
|
+
'GetRuleVmFilterTagResult',
|
|
53
|
+
'GetRuleVmHttpResult',
|
|
54
|
+
'GetRuleVmHttpHealthResult',
|
|
55
|
+
'GetRuleVmHttpRoutingResult',
|
|
56
|
+
'GetRuleVmTcpResult',
|
|
57
|
+
'GetRuleVmTcpForwardRuleResult',
|
|
58
|
+
'GetRuleVmTcpRdpResult',
|
|
59
|
+
'GetRuleVmTcpSshResult',
|
|
60
|
+
'GetScheduleRepeatResult',
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
@pulumi.output_type
|
|
64
|
+
class AwsProxyCertificates(dict):
|
|
65
|
+
@staticmethod
|
|
66
|
+
def __key_warning(key: str):
|
|
67
|
+
suggest = None
|
|
68
|
+
if key == "certSecretId":
|
|
69
|
+
suggest = "cert_secret_id"
|
|
70
|
+
elif key == "keySecretId":
|
|
71
|
+
suggest = "key_secret_id"
|
|
72
|
+
|
|
73
|
+
if suggest:
|
|
74
|
+
pulumi.log.warn(f"Key '{key}' not found in AwsProxyCertificates. Access the value via the '{suggest}' property getter instead.")
|
|
75
|
+
|
|
76
|
+
def __getitem__(self, key: str) -> Any:
|
|
77
|
+
AwsProxyCertificates.__key_warning(key)
|
|
78
|
+
return super().__getitem__(key)
|
|
79
|
+
|
|
80
|
+
def get(self, key: str, default = None) -> Any:
|
|
81
|
+
AwsProxyCertificates.__key_warning(key)
|
|
82
|
+
return super().get(key, default)
|
|
83
|
+
|
|
84
|
+
def __init__(__self__, *,
|
|
85
|
+
cert_secret_id: str,
|
|
86
|
+
key_secret_id: str):
|
|
87
|
+
"""
|
|
88
|
+
:param str cert_secret_id: Certificate secret ID
|
|
89
|
+
:param str key_secret_id: Private key secret ID
|
|
90
|
+
"""
|
|
91
|
+
pulumi.set(__self__, "cert_secret_id", cert_secret_id)
|
|
92
|
+
pulumi.set(__self__, "key_secret_id", key_secret_id)
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter(name="certSecretId")
|
|
96
|
+
def cert_secret_id(self) -> str:
|
|
97
|
+
"""
|
|
98
|
+
Certificate secret ID
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "cert_secret_id")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter(name="keySecretId")
|
|
104
|
+
def key_secret_id(self) -> str:
|
|
105
|
+
"""
|
|
106
|
+
Private key secret ID
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "key_secret_id")
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
@pulumi.output_type
|
|
112
|
+
class AzureProxyCertificates(dict):
|
|
113
|
+
@staticmethod
|
|
114
|
+
def __key_warning(key: str):
|
|
115
|
+
suggest = None
|
|
116
|
+
if key == "certSecretId":
|
|
117
|
+
suggest = "cert_secret_id"
|
|
118
|
+
elif key == "keySecretId":
|
|
119
|
+
suggest = "key_secret_id"
|
|
120
|
+
|
|
121
|
+
if suggest:
|
|
122
|
+
pulumi.log.warn(f"Key '{key}' not found in AzureProxyCertificates. Access the value via the '{suggest}' property getter instead.")
|
|
123
|
+
|
|
124
|
+
def __getitem__(self, key: str) -> Any:
|
|
125
|
+
AzureProxyCertificates.__key_warning(key)
|
|
126
|
+
return super().__getitem__(key)
|
|
127
|
+
|
|
128
|
+
def get(self, key: str, default = None) -> Any:
|
|
129
|
+
AzureProxyCertificates.__key_warning(key)
|
|
130
|
+
return super().get(key, default)
|
|
131
|
+
|
|
132
|
+
def __init__(__self__, *,
|
|
133
|
+
cert_secret_id: str,
|
|
134
|
+
key_secret_id: str):
|
|
135
|
+
"""
|
|
136
|
+
:param str cert_secret_id: ID of certificate secret uploaded to vault
|
|
137
|
+
:param str key_secret_id: ID of certificate key uploaded to vault
|
|
138
|
+
"""
|
|
139
|
+
pulumi.set(__self__, "cert_secret_id", cert_secret_id)
|
|
140
|
+
pulumi.set(__self__, "key_secret_id", key_secret_id)
|
|
141
|
+
|
|
142
|
+
@property
|
|
143
|
+
@pulumi.getter(name="certSecretId")
|
|
144
|
+
def cert_secret_id(self) -> str:
|
|
145
|
+
"""
|
|
146
|
+
ID of certificate secret uploaded to vault
|
|
147
|
+
"""
|
|
148
|
+
return pulumi.get(self, "cert_secret_id")
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
@pulumi.getter(name="keySecretId")
|
|
152
|
+
def key_secret_id(self) -> str:
|
|
153
|
+
"""
|
|
154
|
+
ID of certificate key uploaded to vault
|
|
155
|
+
"""
|
|
156
|
+
return pulumi.get(self, "key_secret_id")
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
@pulumi.output_type
|
|
160
|
+
class GcpProxyCertificates(dict):
|
|
161
|
+
@staticmethod
|
|
162
|
+
def __key_warning(key: str):
|
|
163
|
+
suggest = None
|
|
164
|
+
if key == "certSecretId":
|
|
165
|
+
suggest = "cert_secret_id"
|
|
166
|
+
elif key == "keySecretId":
|
|
167
|
+
suggest = "key_secret_id"
|
|
168
|
+
|
|
169
|
+
if suggest:
|
|
170
|
+
pulumi.log.warn(f"Key '{key}' not found in GcpProxyCertificates. Access the value via the '{suggest}' property getter instead.")
|
|
171
|
+
|
|
172
|
+
def __getitem__(self, key: str) -> Any:
|
|
173
|
+
GcpProxyCertificates.__key_warning(key)
|
|
174
|
+
return super().__getitem__(key)
|
|
175
|
+
|
|
176
|
+
def get(self, key: str, default = None) -> Any:
|
|
177
|
+
GcpProxyCertificates.__key_warning(key)
|
|
178
|
+
return super().get(key, default)
|
|
179
|
+
|
|
180
|
+
def __init__(__self__, *,
|
|
181
|
+
cert_secret_id: str,
|
|
182
|
+
key_secret_id: str):
|
|
183
|
+
"""
|
|
184
|
+
:param str cert_secret_id: Certificate secret ID
|
|
185
|
+
:param str key_secret_id: Private key secret ID
|
|
186
|
+
"""
|
|
187
|
+
pulumi.set(__self__, "cert_secret_id", cert_secret_id)
|
|
188
|
+
pulumi.set(__self__, "key_secret_id", key_secret_id)
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
@pulumi.getter(name="certSecretId")
|
|
192
|
+
def cert_secret_id(self) -> str:
|
|
193
|
+
"""
|
|
194
|
+
Certificate secret ID
|
|
195
|
+
"""
|
|
196
|
+
return pulumi.get(self, "cert_secret_id")
|
|
197
|
+
|
|
198
|
+
@property
|
|
199
|
+
@pulumi.getter(name="keySecretId")
|
|
200
|
+
def key_secret_id(self) -> str:
|
|
201
|
+
"""
|
|
202
|
+
Private key secret ID
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "key_secret_id")
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
@pulumi.output_type
|
|
208
|
+
class RuleEcsContainer(dict):
|
|
209
|
+
@staticmethod
|
|
210
|
+
def __key_warning(key: str):
|
|
211
|
+
suggest = None
|
|
212
|
+
if key == "taskCount":
|
|
213
|
+
suggest = "task_count"
|
|
214
|
+
|
|
215
|
+
if suggest:
|
|
216
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleEcsContainer. Access the value via the '{suggest}' property getter instead.")
|
|
217
|
+
|
|
218
|
+
def __getitem__(self, key: str) -> Any:
|
|
219
|
+
RuleEcsContainer.__key_warning(key)
|
|
220
|
+
return super().__getitem__(key)
|
|
221
|
+
|
|
222
|
+
def get(self, key: str, default = None) -> Any:
|
|
223
|
+
RuleEcsContainer.__key_warning(key)
|
|
224
|
+
return super().get(key, default)
|
|
225
|
+
|
|
226
|
+
def __init__(__self__, *,
|
|
227
|
+
cluster: str,
|
|
228
|
+
region: str,
|
|
229
|
+
service: str,
|
|
230
|
+
task_count: Optional[int] = None):
|
|
231
|
+
"""
|
|
232
|
+
:param str cluster: Name of cluster in which service belong to
|
|
233
|
+
:param str region: Region of cluster
|
|
234
|
+
:param str service: Name of service to be onboarded
|
|
235
|
+
:param int task_count: Desired number of tasks on warming up a rule
|
|
236
|
+
"""
|
|
237
|
+
pulumi.set(__self__, "cluster", cluster)
|
|
238
|
+
pulumi.set(__self__, "region", region)
|
|
239
|
+
pulumi.set(__self__, "service", service)
|
|
240
|
+
if task_count is not None:
|
|
241
|
+
pulumi.set(__self__, "task_count", task_count)
|
|
242
|
+
|
|
243
|
+
@property
|
|
244
|
+
@pulumi.getter
|
|
245
|
+
def cluster(self) -> str:
|
|
246
|
+
"""
|
|
247
|
+
Name of cluster in which service belong to
|
|
248
|
+
"""
|
|
249
|
+
return pulumi.get(self, "cluster")
|
|
250
|
+
|
|
251
|
+
@property
|
|
252
|
+
@pulumi.getter
|
|
253
|
+
def region(self) -> str:
|
|
254
|
+
"""
|
|
255
|
+
Region of cluster
|
|
256
|
+
"""
|
|
257
|
+
return pulumi.get(self, "region")
|
|
258
|
+
|
|
259
|
+
@property
|
|
260
|
+
@pulumi.getter
|
|
261
|
+
def service(self) -> str:
|
|
262
|
+
"""
|
|
263
|
+
Name of service to be onboarded
|
|
264
|
+
"""
|
|
265
|
+
return pulumi.get(self, "service")
|
|
266
|
+
|
|
267
|
+
@property
|
|
268
|
+
@pulumi.getter(name="taskCount")
|
|
269
|
+
def task_count(self) -> Optional[int]:
|
|
270
|
+
"""
|
|
271
|
+
Desired number of tasks on warming up a rule
|
|
272
|
+
"""
|
|
273
|
+
return pulumi.get(self, "task_count")
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
@pulumi.output_type
|
|
277
|
+
class RuleEcsDepend(dict):
|
|
278
|
+
@staticmethod
|
|
279
|
+
def __key_warning(key: str):
|
|
280
|
+
suggest = None
|
|
281
|
+
if key == "ruleId":
|
|
282
|
+
suggest = "rule_id"
|
|
283
|
+
elif key == "delayInSec":
|
|
284
|
+
suggest = "delay_in_sec"
|
|
285
|
+
|
|
286
|
+
if suggest:
|
|
287
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleEcsDepend. Access the value via the '{suggest}' property getter instead.")
|
|
288
|
+
|
|
289
|
+
def __getitem__(self, key: str) -> Any:
|
|
290
|
+
RuleEcsDepend.__key_warning(key)
|
|
291
|
+
return super().__getitem__(key)
|
|
292
|
+
|
|
293
|
+
def get(self, key: str, default = None) -> Any:
|
|
294
|
+
RuleEcsDepend.__key_warning(key)
|
|
295
|
+
return super().get(key, default)
|
|
296
|
+
|
|
297
|
+
def __init__(__self__, *,
|
|
298
|
+
rule_id: int,
|
|
299
|
+
delay_in_sec: Optional[int] = None):
|
|
300
|
+
"""
|
|
301
|
+
:param int rule_id: Rule id of the dependent rule
|
|
302
|
+
:param int delay_in_sec: Number of seconds the rule should wait after warming up the dependent rule
|
|
303
|
+
"""
|
|
304
|
+
pulumi.set(__self__, "rule_id", rule_id)
|
|
305
|
+
if delay_in_sec is not None:
|
|
306
|
+
pulumi.set(__self__, "delay_in_sec", delay_in_sec)
|
|
307
|
+
|
|
308
|
+
@property
|
|
309
|
+
@pulumi.getter(name="ruleId")
|
|
310
|
+
def rule_id(self) -> int:
|
|
311
|
+
"""
|
|
312
|
+
Rule id of the dependent rule
|
|
313
|
+
"""
|
|
314
|
+
return pulumi.get(self, "rule_id")
|
|
315
|
+
|
|
316
|
+
@property
|
|
317
|
+
@pulumi.getter(name="delayInSec")
|
|
318
|
+
def delay_in_sec(self) -> Optional[int]:
|
|
319
|
+
"""
|
|
320
|
+
Number of seconds the rule should wait after warming up the dependent rule
|
|
321
|
+
"""
|
|
322
|
+
return pulumi.get(self, "delay_in_sec")
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
@pulumi.output_type
|
|
326
|
+
class RuleEcsHttp(dict):
|
|
327
|
+
@staticmethod
|
|
328
|
+
def __key_warning(key: str):
|
|
329
|
+
suggest = None
|
|
330
|
+
if key == "proxyId":
|
|
331
|
+
suggest = "proxy_id"
|
|
332
|
+
|
|
333
|
+
if suggest:
|
|
334
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleEcsHttp. Access the value via the '{suggest}' property getter instead.")
|
|
335
|
+
|
|
336
|
+
def __getitem__(self, key: str) -> Any:
|
|
337
|
+
RuleEcsHttp.__key_warning(key)
|
|
338
|
+
return super().__getitem__(key)
|
|
339
|
+
|
|
340
|
+
def get(self, key: str, default = None) -> Any:
|
|
341
|
+
RuleEcsHttp.__key_warning(key)
|
|
342
|
+
return super().get(key, default)
|
|
343
|
+
|
|
344
|
+
def __init__(__self__, *,
|
|
345
|
+
proxy_id: str):
|
|
346
|
+
"""
|
|
347
|
+
:param str proxy_id: Id of the proxy
|
|
348
|
+
"""
|
|
349
|
+
pulumi.set(__self__, "proxy_id", proxy_id)
|
|
350
|
+
|
|
351
|
+
@property
|
|
352
|
+
@pulumi.getter(name="proxyId")
|
|
353
|
+
def proxy_id(self) -> str:
|
|
354
|
+
"""
|
|
355
|
+
Id of the proxy
|
|
356
|
+
"""
|
|
357
|
+
return pulumi.get(self, "proxy_id")
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
@pulumi.output_type
|
|
361
|
+
class RuleRdsDatabase(dict):
|
|
362
|
+
def __init__(__self__, *,
|
|
363
|
+
id: str,
|
|
364
|
+
region: str):
|
|
365
|
+
"""
|
|
366
|
+
:param str id: ID of the database
|
|
367
|
+
:param str region: Region to which database belong to
|
|
368
|
+
"""
|
|
369
|
+
pulumi.set(__self__, "id", id)
|
|
370
|
+
pulumi.set(__self__, "region", region)
|
|
371
|
+
|
|
372
|
+
@property
|
|
373
|
+
@pulumi.getter
|
|
374
|
+
def id(self) -> str:
|
|
375
|
+
"""
|
|
376
|
+
ID of the database
|
|
377
|
+
"""
|
|
378
|
+
return pulumi.get(self, "id")
|
|
379
|
+
|
|
380
|
+
@property
|
|
381
|
+
@pulumi.getter
|
|
382
|
+
def region(self) -> str:
|
|
383
|
+
"""
|
|
384
|
+
Region to which database belong to
|
|
385
|
+
"""
|
|
386
|
+
return pulumi.get(self, "region")
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
@pulumi.output_type
|
|
390
|
+
class RuleRdsDepend(dict):
|
|
391
|
+
@staticmethod
|
|
392
|
+
def __key_warning(key: str):
|
|
393
|
+
suggest = None
|
|
394
|
+
if key == "ruleId":
|
|
395
|
+
suggest = "rule_id"
|
|
396
|
+
elif key == "delayInSec":
|
|
397
|
+
suggest = "delay_in_sec"
|
|
398
|
+
|
|
399
|
+
if suggest:
|
|
400
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleRdsDepend. Access the value via the '{suggest}' property getter instead.")
|
|
401
|
+
|
|
402
|
+
def __getitem__(self, key: str) -> Any:
|
|
403
|
+
RuleRdsDepend.__key_warning(key)
|
|
404
|
+
return super().__getitem__(key)
|
|
405
|
+
|
|
406
|
+
def get(self, key: str, default = None) -> Any:
|
|
407
|
+
RuleRdsDepend.__key_warning(key)
|
|
408
|
+
return super().get(key, default)
|
|
409
|
+
|
|
410
|
+
def __init__(__self__, *,
|
|
411
|
+
rule_id: int,
|
|
412
|
+
delay_in_sec: Optional[int] = None):
|
|
413
|
+
"""
|
|
414
|
+
:param int rule_id: Rule id of the dependent rule
|
|
415
|
+
:param int delay_in_sec: Number of seconds the rule should wait after warming up the dependent rule
|
|
416
|
+
"""
|
|
417
|
+
pulumi.set(__self__, "rule_id", rule_id)
|
|
418
|
+
if delay_in_sec is not None:
|
|
419
|
+
pulumi.set(__self__, "delay_in_sec", delay_in_sec)
|
|
420
|
+
|
|
421
|
+
@property
|
|
422
|
+
@pulumi.getter(name="ruleId")
|
|
423
|
+
def rule_id(self) -> int:
|
|
424
|
+
"""
|
|
425
|
+
Rule id of the dependent rule
|
|
426
|
+
"""
|
|
427
|
+
return pulumi.get(self, "rule_id")
|
|
428
|
+
|
|
429
|
+
@property
|
|
430
|
+
@pulumi.getter(name="delayInSec")
|
|
431
|
+
def delay_in_sec(self) -> Optional[int]:
|
|
432
|
+
"""
|
|
433
|
+
Number of seconds the rule should wait after warming up the dependent rule
|
|
434
|
+
"""
|
|
435
|
+
return pulumi.get(self, "delay_in_sec")
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
@pulumi.output_type
|
|
439
|
+
class RuleRdsTcp(dict):
|
|
440
|
+
@staticmethod
|
|
441
|
+
def __key_warning(key: str):
|
|
442
|
+
suggest = None
|
|
443
|
+
if key == "proxyId":
|
|
444
|
+
suggest = "proxy_id"
|
|
445
|
+
elif key == "forwardRules":
|
|
446
|
+
suggest = "forward_rules"
|
|
447
|
+
|
|
448
|
+
if suggest:
|
|
449
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleRdsTcp. Access the value via the '{suggest}' property getter instead.")
|
|
450
|
+
|
|
451
|
+
def __getitem__(self, key: str) -> Any:
|
|
452
|
+
RuleRdsTcp.__key_warning(key)
|
|
453
|
+
return super().__getitem__(key)
|
|
454
|
+
|
|
455
|
+
def get(self, key: str, default = None) -> Any:
|
|
456
|
+
RuleRdsTcp.__key_warning(key)
|
|
457
|
+
return super().get(key, default)
|
|
458
|
+
|
|
459
|
+
def __init__(__self__, *,
|
|
460
|
+
proxy_id: str,
|
|
461
|
+
forward_rules: Optional[Sequence['outputs.RuleRdsTcpForwardRule']] = None):
|
|
462
|
+
"""
|
|
463
|
+
:param str proxy_id: Id of the Proxy
|
|
464
|
+
:param Sequence['RuleRdsTcpForwardRuleArgs'] forward_rules: Additional tcp forwarding rules
|
|
465
|
+
"""
|
|
466
|
+
pulumi.set(__self__, "proxy_id", proxy_id)
|
|
467
|
+
if forward_rules is not None:
|
|
468
|
+
pulumi.set(__self__, "forward_rules", forward_rules)
|
|
469
|
+
|
|
470
|
+
@property
|
|
471
|
+
@pulumi.getter(name="proxyId")
|
|
472
|
+
def proxy_id(self) -> str:
|
|
473
|
+
"""
|
|
474
|
+
Id of the Proxy
|
|
475
|
+
"""
|
|
476
|
+
return pulumi.get(self, "proxy_id")
|
|
477
|
+
|
|
478
|
+
@property
|
|
479
|
+
@pulumi.getter(name="forwardRules")
|
|
480
|
+
def forward_rules(self) -> Optional[Sequence['outputs.RuleRdsTcpForwardRule']]:
|
|
481
|
+
"""
|
|
482
|
+
Additional tcp forwarding rules
|
|
483
|
+
"""
|
|
484
|
+
return pulumi.get(self, "forward_rules")
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
@pulumi.output_type
|
|
488
|
+
class RuleRdsTcpForwardRule(dict):
|
|
489
|
+
@staticmethod
|
|
490
|
+
def __key_warning(key: str):
|
|
491
|
+
suggest = None
|
|
492
|
+
if key == "connectOn":
|
|
493
|
+
suggest = "connect_on"
|
|
494
|
+
|
|
495
|
+
if suggest:
|
|
496
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleRdsTcpForwardRule. Access the value via the '{suggest}' property getter instead.")
|
|
497
|
+
|
|
498
|
+
def __getitem__(self, key: str) -> Any:
|
|
499
|
+
RuleRdsTcpForwardRule.__key_warning(key)
|
|
500
|
+
return super().__getitem__(key)
|
|
501
|
+
|
|
502
|
+
def get(self, key: str, default = None) -> Any:
|
|
503
|
+
RuleRdsTcpForwardRule.__key_warning(key)
|
|
504
|
+
return super().get(key, default)
|
|
505
|
+
|
|
506
|
+
def __init__(__self__, *,
|
|
507
|
+
port: int,
|
|
508
|
+
connect_on: Optional[int] = None):
|
|
509
|
+
"""
|
|
510
|
+
:param int port: Port to listen on the vm
|
|
511
|
+
:param int connect_on: Port to listen on the proxy
|
|
512
|
+
"""
|
|
513
|
+
pulumi.set(__self__, "port", port)
|
|
514
|
+
if connect_on is not None:
|
|
515
|
+
pulumi.set(__self__, "connect_on", connect_on)
|
|
516
|
+
|
|
517
|
+
@property
|
|
518
|
+
@pulumi.getter
|
|
519
|
+
def port(self) -> int:
|
|
520
|
+
"""
|
|
521
|
+
Port to listen on the vm
|
|
522
|
+
"""
|
|
523
|
+
return pulumi.get(self, "port")
|
|
524
|
+
|
|
525
|
+
@property
|
|
526
|
+
@pulumi.getter(name="connectOn")
|
|
527
|
+
def connect_on(self) -> Optional[int]:
|
|
528
|
+
"""
|
|
529
|
+
Port to listen on the proxy
|
|
530
|
+
"""
|
|
531
|
+
return pulumi.get(self, "connect_on")
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
@pulumi.output_type
|
|
535
|
+
class RuleVmDepend(dict):
|
|
536
|
+
@staticmethod
|
|
537
|
+
def __key_warning(key: str):
|
|
538
|
+
suggest = None
|
|
539
|
+
if key == "ruleId":
|
|
540
|
+
suggest = "rule_id"
|
|
541
|
+
elif key == "delayInSec":
|
|
542
|
+
suggest = "delay_in_sec"
|
|
543
|
+
|
|
544
|
+
if suggest:
|
|
545
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleVmDepend. Access the value via the '{suggest}' property getter instead.")
|
|
546
|
+
|
|
547
|
+
def __getitem__(self, key: str) -> Any:
|
|
548
|
+
RuleVmDepend.__key_warning(key)
|
|
549
|
+
return super().__getitem__(key)
|
|
550
|
+
|
|
551
|
+
def get(self, key: str, default = None) -> Any:
|
|
552
|
+
RuleVmDepend.__key_warning(key)
|
|
553
|
+
return super().get(key, default)
|
|
554
|
+
|
|
555
|
+
def __init__(__self__, *,
|
|
556
|
+
rule_id: int,
|
|
557
|
+
delay_in_sec: Optional[int] = None):
|
|
558
|
+
"""
|
|
559
|
+
:param int rule_id: Rule id of the dependent rule
|
|
560
|
+
:param int delay_in_sec: Number of seconds the rule should wait after warming up the dependent rule
|
|
561
|
+
"""
|
|
562
|
+
pulumi.set(__self__, "rule_id", rule_id)
|
|
563
|
+
if delay_in_sec is not None:
|
|
564
|
+
pulumi.set(__self__, "delay_in_sec", delay_in_sec)
|
|
565
|
+
|
|
566
|
+
@property
|
|
567
|
+
@pulumi.getter(name="ruleId")
|
|
568
|
+
def rule_id(self) -> int:
|
|
569
|
+
"""
|
|
570
|
+
Rule id of the dependent rule
|
|
571
|
+
"""
|
|
572
|
+
return pulumi.get(self, "rule_id")
|
|
573
|
+
|
|
574
|
+
@property
|
|
575
|
+
@pulumi.getter(name="delayInSec")
|
|
576
|
+
def delay_in_sec(self) -> Optional[int]:
|
|
577
|
+
"""
|
|
578
|
+
Number of seconds the rule should wait after warming up the dependent rule
|
|
579
|
+
"""
|
|
580
|
+
return pulumi.get(self, "delay_in_sec")
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
@pulumi.output_type
|
|
584
|
+
class RuleVmFilter(dict):
|
|
585
|
+
@staticmethod
|
|
586
|
+
def __key_warning(key: str):
|
|
587
|
+
suggest = None
|
|
588
|
+
if key == "vmIds":
|
|
589
|
+
suggest = "vm_ids"
|
|
590
|
+
|
|
591
|
+
if suggest:
|
|
592
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleVmFilter. Access the value via the '{suggest}' property getter instead.")
|
|
593
|
+
|
|
594
|
+
def __getitem__(self, key: str) -> Any:
|
|
595
|
+
RuleVmFilter.__key_warning(key)
|
|
596
|
+
return super().__getitem__(key)
|
|
597
|
+
|
|
598
|
+
def get(self, key: str, default = None) -> Any:
|
|
599
|
+
RuleVmFilter.__key_warning(key)
|
|
600
|
+
return super().get(key, default)
|
|
601
|
+
|
|
602
|
+
def __init__(__self__, *,
|
|
603
|
+
vm_ids: Sequence[str],
|
|
604
|
+
regions: Optional[Sequence[str]] = None,
|
|
605
|
+
tags: Optional[Sequence['outputs.RuleVmFilterTag']] = None,
|
|
606
|
+
zones: Optional[Sequence[str]] = None):
|
|
607
|
+
"""
|
|
608
|
+
:param Sequence[str] vm_ids: Ids of instances that needs to be managed using the AutoStopping rules
|
|
609
|
+
:param Sequence[str] regions: Regions of instances that needs to be managed using the AutoStopping rules
|
|
610
|
+
:param Sequence['RuleVmFilterTagArgs'] tags: Tags of instances that needs to be managed using the AutoStopping rules
|
|
611
|
+
:param Sequence[str] zones: Zones of instances that needs to be managed using the AutoStopping rules
|
|
612
|
+
"""
|
|
613
|
+
pulumi.set(__self__, "vm_ids", vm_ids)
|
|
614
|
+
if regions is not None:
|
|
615
|
+
pulumi.set(__self__, "regions", regions)
|
|
616
|
+
if tags is not None:
|
|
617
|
+
pulumi.set(__self__, "tags", tags)
|
|
618
|
+
if zones is not None:
|
|
619
|
+
pulumi.set(__self__, "zones", zones)
|
|
620
|
+
|
|
621
|
+
@property
|
|
622
|
+
@pulumi.getter(name="vmIds")
|
|
623
|
+
def vm_ids(self) -> Sequence[str]:
|
|
624
|
+
"""
|
|
625
|
+
Ids of instances that needs to be managed using the AutoStopping rules
|
|
626
|
+
"""
|
|
627
|
+
return pulumi.get(self, "vm_ids")
|
|
628
|
+
|
|
629
|
+
@property
|
|
630
|
+
@pulumi.getter
|
|
631
|
+
def regions(self) -> Optional[Sequence[str]]:
|
|
632
|
+
"""
|
|
633
|
+
Regions of instances that needs to be managed using the AutoStopping rules
|
|
634
|
+
"""
|
|
635
|
+
return pulumi.get(self, "regions")
|
|
636
|
+
|
|
637
|
+
@property
|
|
638
|
+
@pulumi.getter
|
|
639
|
+
def tags(self) -> Optional[Sequence['outputs.RuleVmFilterTag']]:
|
|
640
|
+
"""
|
|
641
|
+
Tags of instances that needs to be managed using the AutoStopping rules
|
|
642
|
+
"""
|
|
643
|
+
return pulumi.get(self, "tags")
|
|
644
|
+
|
|
645
|
+
@property
|
|
646
|
+
@pulumi.getter
|
|
647
|
+
def zones(self) -> Optional[Sequence[str]]:
|
|
648
|
+
"""
|
|
649
|
+
Zones of instances that needs to be managed using the AutoStopping rules
|
|
650
|
+
"""
|
|
651
|
+
return pulumi.get(self, "zones")
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
@pulumi.output_type
|
|
655
|
+
class RuleVmFilterTag(dict):
|
|
656
|
+
def __init__(__self__, *,
|
|
657
|
+
key: str,
|
|
658
|
+
value: str):
|
|
659
|
+
pulumi.set(__self__, "key", key)
|
|
660
|
+
pulumi.set(__self__, "value", value)
|
|
661
|
+
|
|
662
|
+
@property
|
|
663
|
+
@pulumi.getter
|
|
664
|
+
def key(self) -> str:
|
|
665
|
+
return pulumi.get(self, "key")
|
|
666
|
+
|
|
667
|
+
@property
|
|
668
|
+
@pulumi.getter
|
|
669
|
+
def value(self) -> str:
|
|
670
|
+
return pulumi.get(self, "value")
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
@pulumi.output_type
|
|
674
|
+
class RuleVmHttp(dict):
|
|
675
|
+
@staticmethod
|
|
676
|
+
def __key_warning(key: str):
|
|
677
|
+
suggest = None
|
|
678
|
+
if key == "proxyId":
|
|
679
|
+
suggest = "proxy_id"
|
|
680
|
+
|
|
681
|
+
if suggest:
|
|
682
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleVmHttp. Access the value via the '{suggest}' property getter instead.")
|
|
683
|
+
|
|
684
|
+
def __getitem__(self, key: str) -> Any:
|
|
685
|
+
RuleVmHttp.__key_warning(key)
|
|
686
|
+
return super().__getitem__(key)
|
|
687
|
+
|
|
688
|
+
def get(self, key: str, default = None) -> Any:
|
|
689
|
+
RuleVmHttp.__key_warning(key)
|
|
690
|
+
return super().get(key, default)
|
|
691
|
+
|
|
692
|
+
def __init__(__self__, *,
|
|
693
|
+
proxy_id: str,
|
|
694
|
+
healths: Optional[Sequence['outputs.RuleVmHttpHealth']] = None,
|
|
695
|
+
routings: Optional[Sequence['outputs.RuleVmHttpRouting']] = None):
|
|
696
|
+
"""
|
|
697
|
+
:param str proxy_id: Id of the proxy
|
|
698
|
+
:param Sequence['RuleVmHttpHealthArgs'] healths: Health Check Details
|
|
699
|
+
:param Sequence['RuleVmHttpRoutingArgs'] routings: Routing configuration used to access the instances
|
|
700
|
+
"""
|
|
701
|
+
pulumi.set(__self__, "proxy_id", proxy_id)
|
|
702
|
+
if healths is not None:
|
|
703
|
+
pulumi.set(__self__, "healths", healths)
|
|
704
|
+
if routings is not None:
|
|
705
|
+
pulumi.set(__self__, "routings", routings)
|
|
706
|
+
|
|
707
|
+
@property
|
|
708
|
+
@pulumi.getter(name="proxyId")
|
|
709
|
+
def proxy_id(self) -> str:
|
|
710
|
+
"""
|
|
711
|
+
Id of the proxy
|
|
712
|
+
"""
|
|
713
|
+
return pulumi.get(self, "proxy_id")
|
|
714
|
+
|
|
715
|
+
@property
|
|
716
|
+
@pulumi.getter
|
|
717
|
+
def healths(self) -> Optional[Sequence['outputs.RuleVmHttpHealth']]:
|
|
718
|
+
"""
|
|
719
|
+
Health Check Details
|
|
720
|
+
"""
|
|
721
|
+
return pulumi.get(self, "healths")
|
|
722
|
+
|
|
723
|
+
@property
|
|
724
|
+
@pulumi.getter
|
|
725
|
+
def routings(self) -> Optional[Sequence['outputs.RuleVmHttpRouting']]:
|
|
726
|
+
"""
|
|
727
|
+
Routing configuration used to access the instances
|
|
728
|
+
"""
|
|
729
|
+
return pulumi.get(self, "routings")
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
@pulumi.output_type
|
|
733
|
+
class RuleVmHttpHealth(dict):
|
|
734
|
+
@staticmethod
|
|
735
|
+
def __key_warning(key: str):
|
|
736
|
+
suggest = None
|
|
737
|
+
if key == "statusCodeFrom":
|
|
738
|
+
suggest = "status_code_from"
|
|
739
|
+
elif key == "statusCodeTo":
|
|
740
|
+
suggest = "status_code_to"
|
|
741
|
+
|
|
742
|
+
if suggest:
|
|
743
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleVmHttpHealth. Access the value via the '{suggest}' property getter instead.")
|
|
744
|
+
|
|
745
|
+
def __getitem__(self, key: str) -> Any:
|
|
746
|
+
RuleVmHttpHealth.__key_warning(key)
|
|
747
|
+
return super().__getitem__(key)
|
|
748
|
+
|
|
749
|
+
def get(self, key: str, default = None) -> Any:
|
|
750
|
+
RuleVmHttpHealth.__key_warning(key)
|
|
751
|
+
return super().get(key, default)
|
|
752
|
+
|
|
753
|
+
def __init__(__self__, *,
|
|
754
|
+
port: int,
|
|
755
|
+
protocol: str,
|
|
756
|
+
path: Optional[str] = None,
|
|
757
|
+
status_code_from: Optional[int] = None,
|
|
758
|
+
status_code_to: Optional[int] = None,
|
|
759
|
+
timeout: Optional[int] = None):
|
|
760
|
+
"""
|
|
761
|
+
:param int port: Health check port on the VM
|
|
762
|
+
:param str protocol: Protocol can be http or https
|
|
763
|
+
:param str path: API path to use for health check
|
|
764
|
+
:param int status_code_from: Lower limit for acceptable status code
|
|
765
|
+
:param int status_code_to: Upper limit for acceptable status code
|
|
766
|
+
:param int timeout: Health check timeout
|
|
767
|
+
"""
|
|
768
|
+
pulumi.set(__self__, "port", port)
|
|
769
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
770
|
+
if path is not None:
|
|
771
|
+
pulumi.set(__self__, "path", path)
|
|
772
|
+
if status_code_from is not None:
|
|
773
|
+
pulumi.set(__self__, "status_code_from", status_code_from)
|
|
774
|
+
if status_code_to is not None:
|
|
775
|
+
pulumi.set(__self__, "status_code_to", status_code_to)
|
|
776
|
+
if timeout is not None:
|
|
777
|
+
pulumi.set(__self__, "timeout", timeout)
|
|
778
|
+
|
|
779
|
+
@property
|
|
780
|
+
@pulumi.getter
|
|
781
|
+
def port(self) -> int:
|
|
782
|
+
"""
|
|
783
|
+
Health check port on the VM
|
|
784
|
+
"""
|
|
785
|
+
return pulumi.get(self, "port")
|
|
786
|
+
|
|
787
|
+
@property
|
|
788
|
+
@pulumi.getter
|
|
789
|
+
def protocol(self) -> str:
|
|
790
|
+
"""
|
|
791
|
+
Protocol can be http or https
|
|
792
|
+
"""
|
|
793
|
+
return pulumi.get(self, "protocol")
|
|
794
|
+
|
|
795
|
+
@property
|
|
796
|
+
@pulumi.getter
|
|
797
|
+
def path(self) -> Optional[str]:
|
|
798
|
+
"""
|
|
799
|
+
API path to use for health check
|
|
800
|
+
"""
|
|
801
|
+
return pulumi.get(self, "path")
|
|
802
|
+
|
|
803
|
+
@property
|
|
804
|
+
@pulumi.getter(name="statusCodeFrom")
|
|
805
|
+
def status_code_from(self) -> Optional[int]:
|
|
806
|
+
"""
|
|
807
|
+
Lower limit for acceptable status code
|
|
808
|
+
"""
|
|
809
|
+
return pulumi.get(self, "status_code_from")
|
|
810
|
+
|
|
811
|
+
@property
|
|
812
|
+
@pulumi.getter(name="statusCodeTo")
|
|
813
|
+
def status_code_to(self) -> Optional[int]:
|
|
814
|
+
"""
|
|
815
|
+
Upper limit for acceptable status code
|
|
816
|
+
"""
|
|
817
|
+
return pulumi.get(self, "status_code_to")
|
|
818
|
+
|
|
819
|
+
@property
|
|
820
|
+
@pulumi.getter
|
|
821
|
+
def timeout(self) -> Optional[int]:
|
|
822
|
+
"""
|
|
823
|
+
Health check timeout
|
|
824
|
+
"""
|
|
825
|
+
return pulumi.get(self, "timeout")
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
@pulumi.output_type
|
|
829
|
+
class RuleVmHttpRouting(dict):
|
|
830
|
+
@staticmethod
|
|
831
|
+
def __key_warning(key: str):
|
|
832
|
+
suggest = None
|
|
833
|
+
if key == "sourceProtocol":
|
|
834
|
+
suggest = "source_protocol"
|
|
835
|
+
elif key == "targetProtocol":
|
|
836
|
+
suggest = "target_protocol"
|
|
837
|
+
elif key == "sourcePort":
|
|
838
|
+
suggest = "source_port"
|
|
839
|
+
elif key == "targetPort":
|
|
840
|
+
suggest = "target_port"
|
|
841
|
+
|
|
842
|
+
if suggest:
|
|
843
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleVmHttpRouting. Access the value via the '{suggest}' property getter instead.")
|
|
844
|
+
|
|
845
|
+
def __getitem__(self, key: str) -> Any:
|
|
846
|
+
RuleVmHttpRouting.__key_warning(key)
|
|
847
|
+
return super().__getitem__(key)
|
|
848
|
+
|
|
849
|
+
def get(self, key: str, default = None) -> Any:
|
|
850
|
+
RuleVmHttpRouting.__key_warning(key)
|
|
851
|
+
return super().get(key, default)
|
|
852
|
+
|
|
853
|
+
def __init__(__self__, *,
|
|
854
|
+
source_protocol: str,
|
|
855
|
+
target_protocol: str,
|
|
856
|
+
action: Optional[str] = None,
|
|
857
|
+
source_port: Optional[int] = None,
|
|
858
|
+
target_port: Optional[int] = None):
|
|
859
|
+
"""
|
|
860
|
+
:param str source_protocol: Source protocol of the proxy can be http or https
|
|
861
|
+
:param str target_protocol: Target protocol of the instance can be http or https
|
|
862
|
+
:param str action: Organization Identifier for the Entity
|
|
863
|
+
:param int source_port: Port on the proxy
|
|
864
|
+
:param int target_port: Port on the VM
|
|
865
|
+
"""
|
|
866
|
+
pulumi.set(__self__, "source_protocol", source_protocol)
|
|
867
|
+
pulumi.set(__self__, "target_protocol", target_protocol)
|
|
868
|
+
if action is not None:
|
|
869
|
+
pulumi.set(__self__, "action", action)
|
|
870
|
+
if source_port is not None:
|
|
871
|
+
pulumi.set(__self__, "source_port", source_port)
|
|
872
|
+
if target_port is not None:
|
|
873
|
+
pulumi.set(__self__, "target_port", target_port)
|
|
874
|
+
|
|
875
|
+
@property
|
|
876
|
+
@pulumi.getter(name="sourceProtocol")
|
|
877
|
+
def source_protocol(self) -> str:
|
|
878
|
+
"""
|
|
879
|
+
Source protocol of the proxy can be http or https
|
|
880
|
+
"""
|
|
881
|
+
return pulumi.get(self, "source_protocol")
|
|
882
|
+
|
|
883
|
+
@property
|
|
884
|
+
@pulumi.getter(name="targetProtocol")
|
|
885
|
+
def target_protocol(self) -> str:
|
|
886
|
+
"""
|
|
887
|
+
Target protocol of the instance can be http or https
|
|
888
|
+
"""
|
|
889
|
+
return pulumi.get(self, "target_protocol")
|
|
890
|
+
|
|
891
|
+
@property
|
|
892
|
+
@pulumi.getter
|
|
893
|
+
def action(self) -> Optional[str]:
|
|
894
|
+
"""
|
|
895
|
+
Organization Identifier for the Entity
|
|
896
|
+
"""
|
|
897
|
+
return pulumi.get(self, "action")
|
|
898
|
+
|
|
899
|
+
@property
|
|
900
|
+
@pulumi.getter(name="sourcePort")
|
|
901
|
+
def source_port(self) -> Optional[int]:
|
|
902
|
+
"""
|
|
903
|
+
Port on the proxy
|
|
904
|
+
"""
|
|
905
|
+
return pulumi.get(self, "source_port")
|
|
906
|
+
|
|
907
|
+
@property
|
|
908
|
+
@pulumi.getter(name="targetPort")
|
|
909
|
+
def target_port(self) -> Optional[int]:
|
|
910
|
+
"""
|
|
911
|
+
Port on the VM
|
|
912
|
+
"""
|
|
913
|
+
return pulumi.get(self, "target_port")
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
@pulumi.output_type
|
|
917
|
+
class RuleVmTcp(dict):
|
|
918
|
+
@staticmethod
|
|
919
|
+
def __key_warning(key: str):
|
|
920
|
+
suggest = None
|
|
921
|
+
if key == "proxyId":
|
|
922
|
+
suggest = "proxy_id"
|
|
923
|
+
elif key == "forwardRules":
|
|
924
|
+
suggest = "forward_rules"
|
|
925
|
+
|
|
926
|
+
if suggest:
|
|
927
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleVmTcp. Access the value via the '{suggest}' property getter instead.")
|
|
928
|
+
|
|
929
|
+
def __getitem__(self, key: str) -> Any:
|
|
930
|
+
RuleVmTcp.__key_warning(key)
|
|
931
|
+
return super().__getitem__(key)
|
|
932
|
+
|
|
933
|
+
def get(self, key: str, default = None) -> Any:
|
|
934
|
+
RuleVmTcp.__key_warning(key)
|
|
935
|
+
return super().get(key, default)
|
|
936
|
+
|
|
937
|
+
def __init__(__self__, *,
|
|
938
|
+
proxy_id: str,
|
|
939
|
+
forward_rules: Optional[Sequence['outputs.RuleVmTcpForwardRule']] = None,
|
|
940
|
+
rdps: Optional[Sequence['outputs.RuleVmTcpRdp']] = None,
|
|
941
|
+
sshes: Optional[Sequence['outputs.RuleVmTcpSsh']] = None):
|
|
942
|
+
"""
|
|
943
|
+
:param str proxy_id: Id of the Proxy
|
|
944
|
+
:param Sequence['RuleVmTcpForwardRuleArgs'] forward_rules: Additional tcp forwarding rules
|
|
945
|
+
:param Sequence['RuleVmTcpRdpArgs'] rdps: RDP configuration
|
|
946
|
+
:param Sequence['RuleVmTcpSshArgs'] sshes: SSH configuration
|
|
947
|
+
"""
|
|
948
|
+
pulumi.set(__self__, "proxy_id", proxy_id)
|
|
949
|
+
if forward_rules is not None:
|
|
950
|
+
pulumi.set(__self__, "forward_rules", forward_rules)
|
|
951
|
+
if rdps is not None:
|
|
952
|
+
pulumi.set(__self__, "rdps", rdps)
|
|
953
|
+
if sshes is not None:
|
|
954
|
+
pulumi.set(__self__, "sshes", sshes)
|
|
955
|
+
|
|
956
|
+
@property
|
|
957
|
+
@pulumi.getter(name="proxyId")
|
|
958
|
+
def proxy_id(self) -> str:
|
|
959
|
+
"""
|
|
960
|
+
Id of the Proxy
|
|
961
|
+
"""
|
|
962
|
+
return pulumi.get(self, "proxy_id")
|
|
963
|
+
|
|
964
|
+
@property
|
|
965
|
+
@pulumi.getter(name="forwardRules")
|
|
966
|
+
def forward_rules(self) -> Optional[Sequence['outputs.RuleVmTcpForwardRule']]:
|
|
967
|
+
"""
|
|
968
|
+
Additional tcp forwarding rules
|
|
969
|
+
"""
|
|
970
|
+
return pulumi.get(self, "forward_rules")
|
|
971
|
+
|
|
972
|
+
@property
|
|
973
|
+
@pulumi.getter
|
|
974
|
+
def rdps(self) -> Optional[Sequence['outputs.RuleVmTcpRdp']]:
|
|
975
|
+
"""
|
|
976
|
+
RDP configuration
|
|
977
|
+
"""
|
|
978
|
+
return pulumi.get(self, "rdps")
|
|
979
|
+
|
|
980
|
+
@property
|
|
981
|
+
@pulumi.getter
|
|
982
|
+
def sshes(self) -> Optional[Sequence['outputs.RuleVmTcpSsh']]:
|
|
983
|
+
"""
|
|
984
|
+
SSH configuration
|
|
985
|
+
"""
|
|
986
|
+
return pulumi.get(self, "sshes")
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
@pulumi.output_type
|
|
990
|
+
class RuleVmTcpForwardRule(dict):
|
|
991
|
+
@staticmethod
|
|
992
|
+
def __key_warning(key: str):
|
|
993
|
+
suggest = None
|
|
994
|
+
if key == "connectOn":
|
|
995
|
+
suggest = "connect_on"
|
|
996
|
+
|
|
997
|
+
if suggest:
|
|
998
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleVmTcpForwardRule. Access the value via the '{suggest}' property getter instead.")
|
|
999
|
+
|
|
1000
|
+
def __getitem__(self, key: str) -> Any:
|
|
1001
|
+
RuleVmTcpForwardRule.__key_warning(key)
|
|
1002
|
+
return super().__getitem__(key)
|
|
1003
|
+
|
|
1004
|
+
def get(self, key: str, default = None) -> Any:
|
|
1005
|
+
RuleVmTcpForwardRule.__key_warning(key)
|
|
1006
|
+
return super().get(key, default)
|
|
1007
|
+
|
|
1008
|
+
def __init__(__self__, *,
|
|
1009
|
+
port: int,
|
|
1010
|
+
connect_on: Optional[int] = None):
|
|
1011
|
+
"""
|
|
1012
|
+
:param int port: Port to listen on the vm
|
|
1013
|
+
:param int connect_on: Port to listen on the proxy
|
|
1014
|
+
"""
|
|
1015
|
+
pulumi.set(__self__, "port", port)
|
|
1016
|
+
if connect_on is not None:
|
|
1017
|
+
pulumi.set(__self__, "connect_on", connect_on)
|
|
1018
|
+
|
|
1019
|
+
@property
|
|
1020
|
+
@pulumi.getter
|
|
1021
|
+
def port(self) -> int:
|
|
1022
|
+
"""
|
|
1023
|
+
Port to listen on the vm
|
|
1024
|
+
"""
|
|
1025
|
+
return pulumi.get(self, "port")
|
|
1026
|
+
|
|
1027
|
+
@property
|
|
1028
|
+
@pulumi.getter(name="connectOn")
|
|
1029
|
+
def connect_on(self) -> Optional[int]:
|
|
1030
|
+
"""
|
|
1031
|
+
Port to listen on the proxy
|
|
1032
|
+
"""
|
|
1033
|
+
return pulumi.get(self, "connect_on")
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
@pulumi.output_type
|
|
1037
|
+
class RuleVmTcpRdp(dict):
|
|
1038
|
+
@staticmethod
|
|
1039
|
+
def __key_warning(key: str):
|
|
1040
|
+
suggest = None
|
|
1041
|
+
if key == "connectOn":
|
|
1042
|
+
suggest = "connect_on"
|
|
1043
|
+
|
|
1044
|
+
if suggest:
|
|
1045
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleVmTcpRdp. Access the value via the '{suggest}' property getter instead.")
|
|
1046
|
+
|
|
1047
|
+
def __getitem__(self, key: str) -> Any:
|
|
1048
|
+
RuleVmTcpRdp.__key_warning(key)
|
|
1049
|
+
return super().__getitem__(key)
|
|
1050
|
+
|
|
1051
|
+
def get(self, key: str, default = None) -> Any:
|
|
1052
|
+
RuleVmTcpRdp.__key_warning(key)
|
|
1053
|
+
return super().get(key, default)
|
|
1054
|
+
|
|
1055
|
+
def __init__(__self__, *,
|
|
1056
|
+
connect_on: Optional[int] = None,
|
|
1057
|
+
port: Optional[int] = None):
|
|
1058
|
+
"""
|
|
1059
|
+
:param int connect_on: Port to listen on the proxy
|
|
1060
|
+
:param int port: Port to listen on the vm
|
|
1061
|
+
"""
|
|
1062
|
+
if connect_on is not None:
|
|
1063
|
+
pulumi.set(__self__, "connect_on", connect_on)
|
|
1064
|
+
if port is not None:
|
|
1065
|
+
pulumi.set(__self__, "port", port)
|
|
1066
|
+
|
|
1067
|
+
@property
|
|
1068
|
+
@pulumi.getter(name="connectOn")
|
|
1069
|
+
def connect_on(self) -> Optional[int]:
|
|
1070
|
+
"""
|
|
1071
|
+
Port to listen on the proxy
|
|
1072
|
+
"""
|
|
1073
|
+
return pulumi.get(self, "connect_on")
|
|
1074
|
+
|
|
1075
|
+
@property
|
|
1076
|
+
@pulumi.getter
|
|
1077
|
+
def port(self) -> Optional[int]:
|
|
1078
|
+
"""
|
|
1079
|
+
Port to listen on the vm
|
|
1080
|
+
"""
|
|
1081
|
+
return pulumi.get(self, "port")
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
@pulumi.output_type
|
|
1085
|
+
class RuleVmTcpSsh(dict):
|
|
1086
|
+
@staticmethod
|
|
1087
|
+
def __key_warning(key: str):
|
|
1088
|
+
suggest = None
|
|
1089
|
+
if key == "connectOn":
|
|
1090
|
+
suggest = "connect_on"
|
|
1091
|
+
|
|
1092
|
+
if suggest:
|
|
1093
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleVmTcpSsh. Access the value via the '{suggest}' property getter instead.")
|
|
1094
|
+
|
|
1095
|
+
def __getitem__(self, key: str) -> Any:
|
|
1096
|
+
RuleVmTcpSsh.__key_warning(key)
|
|
1097
|
+
return super().__getitem__(key)
|
|
1098
|
+
|
|
1099
|
+
def get(self, key: str, default = None) -> Any:
|
|
1100
|
+
RuleVmTcpSsh.__key_warning(key)
|
|
1101
|
+
return super().get(key, default)
|
|
1102
|
+
|
|
1103
|
+
def __init__(__self__, *,
|
|
1104
|
+
connect_on: Optional[int] = None,
|
|
1105
|
+
port: Optional[int] = None):
|
|
1106
|
+
"""
|
|
1107
|
+
:param int connect_on: Port to listen on the proxy
|
|
1108
|
+
:param int port: Port to listen on the vm
|
|
1109
|
+
"""
|
|
1110
|
+
if connect_on is not None:
|
|
1111
|
+
pulumi.set(__self__, "connect_on", connect_on)
|
|
1112
|
+
if port is not None:
|
|
1113
|
+
pulumi.set(__self__, "port", port)
|
|
1114
|
+
|
|
1115
|
+
@property
|
|
1116
|
+
@pulumi.getter(name="connectOn")
|
|
1117
|
+
def connect_on(self) -> Optional[int]:
|
|
1118
|
+
"""
|
|
1119
|
+
Port to listen on the proxy
|
|
1120
|
+
"""
|
|
1121
|
+
return pulumi.get(self, "connect_on")
|
|
1122
|
+
|
|
1123
|
+
@property
|
|
1124
|
+
@pulumi.getter
|
|
1125
|
+
def port(self) -> Optional[int]:
|
|
1126
|
+
"""
|
|
1127
|
+
Port to listen on the vm
|
|
1128
|
+
"""
|
|
1129
|
+
return pulumi.get(self, "port")
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
@pulumi.output_type
|
|
1133
|
+
class ScheduleRepeat(dict):
|
|
1134
|
+
@staticmethod
|
|
1135
|
+
def __key_warning(key: str):
|
|
1136
|
+
suggest = None
|
|
1137
|
+
if key == "endTime":
|
|
1138
|
+
suggest = "end_time"
|
|
1139
|
+
elif key == "startTime":
|
|
1140
|
+
suggest = "start_time"
|
|
1141
|
+
|
|
1142
|
+
if suggest:
|
|
1143
|
+
pulumi.log.warn(f"Key '{key}' not found in ScheduleRepeat. Access the value via the '{suggest}' property getter instead.")
|
|
1144
|
+
|
|
1145
|
+
def __getitem__(self, key: str) -> Any:
|
|
1146
|
+
ScheduleRepeat.__key_warning(key)
|
|
1147
|
+
return super().__getitem__(key)
|
|
1148
|
+
|
|
1149
|
+
def get(self, key: str, default = None) -> Any:
|
|
1150
|
+
ScheduleRepeat.__key_warning(key)
|
|
1151
|
+
return super().get(key, default)
|
|
1152
|
+
|
|
1153
|
+
def __init__(__self__, *,
|
|
1154
|
+
days: Sequence[str],
|
|
1155
|
+
end_time: Optional[str] = None,
|
|
1156
|
+
start_time: Optional[str] = None):
|
|
1157
|
+
"""
|
|
1158
|
+
:param Sequence[str] days: List of days on which schedule need to be active. Valid values are SUN, MON, TUE, WED, THU, FRI and SAT.
|
|
1159
|
+
:param str end_time: Ending time of schedule action on the day. Defaults to 24:00Hrs unless specified. Accepted format is HH:MM. Eg : 20:00 for 8pm
|
|
1160
|
+
:param str start_time: Starting time of schedule action on the day. Defaults to 00:00Hrs unless specified. Accepted format is HH:MM. Eg : 13:15 for 01:15pm
|
|
1161
|
+
"""
|
|
1162
|
+
pulumi.set(__self__, "days", days)
|
|
1163
|
+
if end_time is not None:
|
|
1164
|
+
pulumi.set(__self__, "end_time", end_time)
|
|
1165
|
+
if start_time is not None:
|
|
1166
|
+
pulumi.set(__self__, "start_time", start_time)
|
|
1167
|
+
|
|
1168
|
+
@property
|
|
1169
|
+
@pulumi.getter
|
|
1170
|
+
def days(self) -> Sequence[str]:
|
|
1171
|
+
"""
|
|
1172
|
+
List of days on which schedule need to be active. Valid values are SUN, MON, TUE, WED, THU, FRI and SAT.
|
|
1173
|
+
"""
|
|
1174
|
+
return pulumi.get(self, "days")
|
|
1175
|
+
|
|
1176
|
+
@property
|
|
1177
|
+
@pulumi.getter(name="endTime")
|
|
1178
|
+
def end_time(self) -> Optional[str]:
|
|
1179
|
+
"""
|
|
1180
|
+
Ending time of schedule action on the day. Defaults to 24:00Hrs unless specified. Accepted format is HH:MM. Eg : 20:00 for 8pm
|
|
1181
|
+
"""
|
|
1182
|
+
return pulumi.get(self, "end_time")
|
|
1183
|
+
|
|
1184
|
+
@property
|
|
1185
|
+
@pulumi.getter(name="startTime")
|
|
1186
|
+
def start_time(self) -> Optional[str]:
|
|
1187
|
+
"""
|
|
1188
|
+
Starting time of schedule action on the day. Defaults to 00:00Hrs unless specified. Accepted format is HH:MM. Eg : 13:15 for 01:15pm
|
|
1189
|
+
"""
|
|
1190
|
+
return pulumi.get(self, "start_time")
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
@pulumi.output_type
|
|
1194
|
+
class GetAwsProxyCertificatesResult(dict):
|
|
1195
|
+
def __init__(__self__, *,
|
|
1196
|
+
cert_secret_id: str,
|
|
1197
|
+
key_secret_id: str):
|
|
1198
|
+
"""
|
|
1199
|
+
:param str cert_secret_id: Certificate secret ID
|
|
1200
|
+
:param str key_secret_id: Private key secret ID
|
|
1201
|
+
"""
|
|
1202
|
+
pulumi.set(__self__, "cert_secret_id", cert_secret_id)
|
|
1203
|
+
pulumi.set(__self__, "key_secret_id", key_secret_id)
|
|
1204
|
+
|
|
1205
|
+
@property
|
|
1206
|
+
@pulumi.getter(name="certSecretId")
|
|
1207
|
+
def cert_secret_id(self) -> str:
|
|
1208
|
+
"""
|
|
1209
|
+
Certificate secret ID
|
|
1210
|
+
"""
|
|
1211
|
+
return pulumi.get(self, "cert_secret_id")
|
|
1212
|
+
|
|
1213
|
+
@property
|
|
1214
|
+
@pulumi.getter(name="keySecretId")
|
|
1215
|
+
def key_secret_id(self) -> str:
|
|
1216
|
+
"""
|
|
1217
|
+
Private key secret ID
|
|
1218
|
+
"""
|
|
1219
|
+
return pulumi.get(self, "key_secret_id")
|
|
1220
|
+
|
|
1221
|
+
|
|
1222
|
+
@pulumi.output_type
|
|
1223
|
+
class GetAzureProxyCertificatesResult(dict):
|
|
1224
|
+
def __init__(__self__, *,
|
|
1225
|
+
cert_secret_id: str,
|
|
1226
|
+
key_secret_id: str):
|
|
1227
|
+
"""
|
|
1228
|
+
:param str cert_secret_id: ID of certificate secret uploaded to vault
|
|
1229
|
+
:param str key_secret_id: ID of certificate key uploaded to vault
|
|
1230
|
+
"""
|
|
1231
|
+
pulumi.set(__self__, "cert_secret_id", cert_secret_id)
|
|
1232
|
+
pulumi.set(__self__, "key_secret_id", key_secret_id)
|
|
1233
|
+
|
|
1234
|
+
@property
|
|
1235
|
+
@pulumi.getter(name="certSecretId")
|
|
1236
|
+
def cert_secret_id(self) -> str:
|
|
1237
|
+
"""
|
|
1238
|
+
ID of certificate secret uploaded to vault
|
|
1239
|
+
"""
|
|
1240
|
+
return pulumi.get(self, "cert_secret_id")
|
|
1241
|
+
|
|
1242
|
+
@property
|
|
1243
|
+
@pulumi.getter(name="keySecretId")
|
|
1244
|
+
def key_secret_id(self) -> str:
|
|
1245
|
+
"""
|
|
1246
|
+
ID of certificate key uploaded to vault
|
|
1247
|
+
"""
|
|
1248
|
+
return pulumi.get(self, "key_secret_id")
|
|
1249
|
+
|
|
1250
|
+
|
|
1251
|
+
@pulumi.output_type
|
|
1252
|
+
class GetGcpProxyCertificatesResult(dict):
|
|
1253
|
+
def __init__(__self__, *,
|
|
1254
|
+
cert_secret_id: str,
|
|
1255
|
+
key_secret_id: str):
|
|
1256
|
+
"""
|
|
1257
|
+
:param str cert_secret_id: Certificate secret ID
|
|
1258
|
+
:param str key_secret_id: Private key secret ID
|
|
1259
|
+
"""
|
|
1260
|
+
pulumi.set(__self__, "cert_secret_id", cert_secret_id)
|
|
1261
|
+
pulumi.set(__self__, "key_secret_id", key_secret_id)
|
|
1262
|
+
|
|
1263
|
+
@property
|
|
1264
|
+
@pulumi.getter(name="certSecretId")
|
|
1265
|
+
def cert_secret_id(self) -> str:
|
|
1266
|
+
"""
|
|
1267
|
+
Certificate secret ID
|
|
1268
|
+
"""
|
|
1269
|
+
return pulumi.get(self, "cert_secret_id")
|
|
1270
|
+
|
|
1271
|
+
@property
|
|
1272
|
+
@pulumi.getter(name="keySecretId")
|
|
1273
|
+
def key_secret_id(self) -> str:
|
|
1274
|
+
"""
|
|
1275
|
+
Private key secret ID
|
|
1276
|
+
"""
|
|
1277
|
+
return pulumi.get(self, "key_secret_id")
|
|
1278
|
+
|
|
1279
|
+
|
|
1280
|
+
@pulumi.output_type
|
|
1281
|
+
class GetRuleEcsContainerResult(dict):
|
|
1282
|
+
def __init__(__self__, *,
|
|
1283
|
+
cluster: str,
|
|
1284
|
+
region: str,
|
|
1285
|
+
service: str,
|
|
1286
|
+
task_count: Optional[int] = None):
|
|
1287
|
+
"""
|
|
1288
|
+
:param str cluster: Name of cluster in which service belong to
|
|
1289
|
+
:param str region: Region of cluster
|
|
1290
|
+
:param str service: Name of service to be onboarded
|
|
1291
|
+
:param int task_count: Desired number of tasks on warming up a rule
|
|
1292
|
+
"""
|
|
1293
|
+
pulumi.set(__self__, "cluster", cluster)
|
|
1294
|
+
pulumi.set(__self__, "region", region)
|
|
1295
|
+
pulumi.set(__self__, "service", service)
|
|
1296
|
+
if task_count is not None:
|
|
1297
|
+
pulumi.set(__self__, "task_count", task_count)
|
|
1298
|
+
|
|
1299
|
+
@property
|
|
1300
|
+
@pulumi.getter
|
|
1301
|
+
def cluster(self) -> str:
|
|
1302
|
+
"""
|
|
1303
|
+
Name of cluster in which service belong to
|
|
1304
|
+
"""
|
|
1305
|
+
return pulumi.get(self, "cluster")
|
|
1306
|
+
|
|
1307
|
+
@property
|
|
1308
|
+
@pulumi.getter
|
|
1309
|
+
def region(self) -> str:
|
|
1310
|
+
"""
|
|
1311
|
+
Region of cluster
|
|
1312
|
+
"""
|
|
1313
|
+
return pulumi.get(self, "region")
|
|
1314
|
+
|
|
1315
|
+
@property
|
|
1316
|
+
@pulumi.getter
|
|
1317
|
+
def service(self) -> str:
|
|
1318
|
+
"""
|
|
1319
|
+
Name of service to be onboarded
|
|
1320
|
+
"""
|
|
1321
|
+
return pulumi.get(self, "service")
|
|
1322
|
+
|
|
1323
|
+
@property
|
|
1324
|
+
@pulumi.getter(name="taskCount")
|
|
1325
|
+
def task_count(self) -> Optional[int]:
|
|
1326
|
+
"""
|
|
1327
|
+
Desired number of tasks on warming up a rule
|
|
1328
|
+
"""
|
|
1329
|
+
return pulumi.get(self, "task_count")
|
|
1330
|
+
|
|
1331
|
+
|
|
1332
|
+
@pulumi.output_type
|
|
1333
|
+
class GetRuleEcsDependResult(dict):
|
|
1334
|
+
def __init__(__self__, *,
|
|
1335
|
+
rule_id: int,
|
|
1336
|
+
delay_in_sec: Optional[int] = None):
|
|
1337
|
+
"""
|
|
1338
|
+
:param int rule_id: Rule id of the dependent rule
|
|
1339
|
+
:param int delay_in_sec: Number of seconds the rule should wait after warming up the dependent rule
|
|
1340
|
+
"""
|
|
1341
|
+
pulumi.set(__self__, "rule_id", rule_id)
|
|
1342
|
+
if delay_in_sec is not None:
|
|
1343
|
+
pulumi.set(__self__, "delay_in_sec", delay_in_sec)
|
|
1344
|
+
|
|
1345
|
+
@property
|
|
1346
|
+
@pulumi.getter(name="ruleId")
|
|
1347
|
+
def rule_id(self) -> int:
|
|
1348
|
+
"""
|
|
1349
|
+
Rule id of the dependent rule
|
|
1350
|
+
"""
|
|
1351
|
+
return pulumi.get(self, "rule_id")
|
|
1352
|
+
|
|
1353
|
+
@property
|
|
1354
|
+
@pulumi.getter(name="delayInSec")
|
|
1355
|
+
def delay_in_sec(self) -> Optional[int]:
|
|
1356
|
+
"""
|
|
1357
|
+
Number of seconds the rule should wait after warming up the dependent rule
|
|
1358
|
+
"""
|
|
1359
|
+
return pulumi.get(self, "delay_in_sec")
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
@pulumi.output_type
|
|
1363
|
+
class GetRuleEcsHttpResult(dict):
|
|
1364
|
+
def __init__(__self__, *,
|
|
1365
|
+
proxy_id: str):
|
|
1366
|
+
"""
|
|
1367
|
+
:param str proxy_id: Id of the proxy
|
|
1368
|
+
"""
|
|
1369
|
+
pulumi.set(__self__, "proxy_id", proxy_id)
|
|
1370
|
+
|
|
1371
|
+
@property
|
|
1372
|
+
@pulumi.getter(name="proxyId")
|
|
1373
|
+
def proxy_id(self) -> str:
|
|
1374
|
+
"""
|
|
1375
|
+
Id of the proxy
|
|
1376
|
+
"""
|
|
1377
|
+
return pulumi.get(self, "proxy_id")
|
|
1378
|
+
|
|
1379
|
+
|
|
1380
|
+
@pulumi.output_type
|
|
1381
|
+
class GetRuleRdsDatabaseResult(dict):
|
|
1382
|
+
def __init__(__self__, *,
|
|
1383
|
+
id: str,
|
|
1384
|
+
region: str):
|
|
1385
|
+
"""
|
|
1386
|
+
:param str id: ID of the database
|
|
1387
|
+
:param str region: Region to which database belong to
|
|
1388
|
+
"""
|
|
1389
|
+
pulumi.set(__self__, "id", id)
|
|
1390
|
+
pulumi.set(__self__, "region", region)
|
|
1391
|
+
|
|
1392
|
+
@property
|
|
1393
|
+
@pulumi.getter
|
|
1394
|
+
def id(self) -> str:
|
|
1395
|
+
"""
|
|
1396
|
+
ID of the database
|
|
1397
|
+
"""
|
|
1398
|
+
return pulumi.get(self, "id")
|
|
1399
|
+
|
|
1400
|
+
@property
|
|
1401
|
+
@pulumi.getter
|
|
1402
|
+
def region(self) -> str:
|
|
1403
|
+
"""
|
|
1404
|
+
Region to which database belong to
|
|
1405
|
+
"""
|
|
1406
|
+
return pulumi.get(self, "region")
|
|
1407
|
+
|
|
1408
|
+
|
|
1409
|
+
@pulumi.output_type
|
|
1410
|
+
class GetRuleRdsDependResult(dict):
|
|
1411
|
+
def __init__(__self__, *,
|
|
1412
|
+
rule_id: int,
|
|
1413
|
+
delay_in_sec: Optional[int] = None):
|
|
1414
|
+
"""
|
|
1415
|
+
:param int rule_id: Rule id of the dependent rule
|
|
1416
|
+
:param int delay_in_sec: Number of seconds the rule should wait after warming up the dependent rule
|
|
1417
|
+
"""
|
|
1418
|
+
pulumi.set(__self__, "rule_id", rule_id)
|
|
1419
|
+
if delay_in_sec is not None:
|
|
1420
|
+
pulumi.set(__self__, "delay_in_sec", delay_in_sec)
|
|
1421
|
+
|
|
1422
|
+
@property
|
|
1423
|
+
@pulumi.getter(name="ruleId")
|
|
1424
|
+
def rule_id(self) -> int:
|
|
1425
|
+
"""
|
|
1426
|
+
Rule id of the dependent rule
|
|
1427
|
+
"""
|
|
1428
|
+
return pulumi.get(self, "rule_id")
|
|
1429
|
+
|
|
1430
|
+
@property
|
|
1431
|
+
@pulumi.getter(name="delayInSec")
|
|
1432
|
+
def delay_in_sec(self) -> Optional[int]:
|
|
1433
|
+
"""
|
|
1434
|
+
Number of seconds the rule should wait after warming up the dependent rule
|
|
1435
|
+
"""
|
|
1436
|
+
return pulumi.get(self, "delay_in_sec")
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
@pulumi.output_type
|
|
1440
|
+
class GetRuleRdsTcpResult(dict):
|
|
1441
|
+
def __init__(__self__, *,
|
|
1442
|
+
proxy_id: str,
|
|
1443
|
+
forward_rules: Optional[Sequence['outputs.GetRuleRdsTcpForwardRuleResult']] = None):
|
|
1444
|
+
"""
|
|
1445
|
+
:param str proxy_id: Id of the Proxy
|
|
1446
|
+
:param Sequence['GetRuleRdsTcpForwardRuleArgs'] forward_rules: Additional tcp forwarding rules
|
|
1447
|
+
"""
|
|
1448
|
+
pulumi.set(__self__, "proxy_id", proxy_id)
|
|
1449
|
+
if forward_rules is not None:
|
|
1450
|
+
pulumi.set(__self__, "forward_rules", forward_rules)
|
|
1451
|
+
|
|
1452
|
+
@property
|
|
1453
|
+
@pulumi.getter(name="proxyId")
|
|
1454
|
+
def proxy_id(self) -> str:
|
|
1455
|
+
"""
|
|
1456
|
+
Id of the Proxy
|
|
1457
|
+
"""
|
|
1458
|
+
return pulumi.get(self, "proxy_id")
|
|
1459
|
+
|
|
1460
|
+
@property
|
|
1461
|
+
@pulumi.getter(name="forwardRules")
|
|
1462
|
+
def forward_rules(self) -> Optional[Sequence['outputs.GetRuleRdsTcpForwardRuleResult']]:
|
|
1463
|
+
"""
|
|
1464
|
+
Additional tcp forwarding rules
|
|
1465
|
+
"""
|
|
1466
|
+
return pulumi.get(self, "forward_rules")
|
|
1467
|
+
|
|
1468
|
+
|
|
1469
|
+
@pulumi.output_type
|
|
1470
|
+
class GetRuleRdsTcpForwardRuleResult(dict):
|
|
1471
|
+
def __init__(__self__, *,
|
|
1472
|
+
port: int,
|
|
1473
|
+
connect_on: Optional[int] = None):
|
|
1474
|
+
"""
|
|
1475
|
+
:param int port: Port to listen on the vm
|
|
1476
|
+
:param int connect_on: Port to listen on the proxy
|
|
1477
|
+
"""
|
|
1478
|
+
pulumi.set(__self__, "port", port)
|
|
1479
|
+
if connect_on is not None:
|
|
1480
|
+
pulumi.set(__self__, "connect_on", connect_on)
|
|
1481
|
+
|
|
1482
|
+
@property
|
|
1483
|
+
@pulumi.getter
|
|
1484
|
+
def port(self) -> int:
|
|
1485
|
+
"""
|
|
1486
|
+
Port to listen on the vm
|
|
1487
|
+
"""
|
|
1488
|
+
return pulumi.get(self, "port")
|
|
1489
|
+
|
|
1490
|
+
@property
|
|
1491
|
+
@pulumi.getter(name="connectOn")
|
|
1492
|
+
def connect_on(self) -> Optional[int]:
|
|
1493
|
+
"""
|
|
1494
|
+
Port to listen on the proxy
|
|
1495
|
+
"""
|
|
1496
|
+
return pulumi.get(self, "connect_on")
|
|
1497
|
+
|
|
1498
|
+
|
|
1499
|
+
@pulumi.output_type
|
|
1500
|
+
class GetRuleVmDependResult(dict):
|
|
1501
|
+
def __init__(__self__, *,
|
|
1502
|
+
rule_id: int,
|
|
1503
|
+
delay_in_sec: Optional[int] = None):
|
|
1504
|
+
"""
|
|
1505
|
+
:param int rule_id: Rule id of the dependent rule
|
|
1506
|
+
:param int delay_in_sec: Number of seconds the rule should wait after warming up the dependent rule
|
|
1507
|
+
"""
|
|
1508
|
+
pulumi.set(__self__, "rule_id", rule_id)
|
|
1509
|
+
if delay_in_sec is not None:
|
|
1510
|
+
pulumi.set(__self__, "delay_in_sec", delay_in_sec)
|
|
1511
|
+
|
|
1512
|
+
@property
|
|
1513
|
+
@pulumi.getter(name="ruleId")
|
|
1514
|
+
def rule_id(self) -> int:
|
|
1515
|
+
"""
|
|
1516
|
+
Rule id of the dependent rule
|
|
1517
|
+
"""
|
|
1518
|
+
return pulumi.get(self, "rule_id")
|
|
1519
|
+
|
|
1520
|
+
@property
|
|
1521
|
+
@pulumi.getter(name="delayInSec")
|
|
1522
|
+
def delay_in_sec(self) -> Optional[int]:
|
|
1523
|
+
"""
|
|
1524
|
+
Number of seconds the rule should wait after warming up the dependent rule
|
|
1525
|
+
"""
|
|
1526
|
+
return pulumi.get(self, "delay_in_sec")
|
|
1527
|
+
|
|
1528
|
+
|
|
1529
|
+
@pulumi.output_type
|
|
1530
|
+
class GetRuleVmFilterResult(dict):
|
|
1531
|
+
def __init__(__self__, *,
|
|
1532
|
+
vm_ids: Sequence[str],
|
|
1533
|
+
regions: Optional[Sequence[str]] = None,
|
|
1534
|
+
tags: Optional[Sequence['outputs.GetRuleVmFilterTagResult']] = None,
|
|
1535
|
+
zones: Optional[Sequence[str]] = None):
|
|
1536
|
+
"""
|
|
1537
|
+
:param Sequence[str] vm_ids: Ids of instances that needs to be managed using the AutoStopping rules
|
|
1538
|
+
:param Sequence[str] regions: Regions of instances that needs to be managed using the AutoStopping rules
|
|
1539
|
+
:param Sequence['GetRuleVmFilterTagArgs'] tags: Tags of instances that needs to be managed using the AutoStopping rules
|
|
1540
|
+
:param Sequence[str] zones: Zones of instances that needs to be managed using the AutoStopping rules
|
|
1541
|
+
"""
|
|
1542
|
+
pulumi.set(__self__, "vm_ids", vm_ids)
|
|
1543
|
+
if regions is not None:
|
|
1544
|
+
pulumi.set(__self__, "regions", regions)
|
|
1545
|
+
if tags is not None:
|
|
1546
|
+
pulumi.set(__self__, "tags", tags)
|
|
1547
|
+
if zones is not None:
|
|
1548
|
+
pulumi.set(__self__, "zones", zones)
|
|
1549
|
+
|
|
1550
|
+
@property
|
|
1551
|
+
@pulumi.getter(name="vmIds")
|
|
1552
|
+
def vm_ids(self) -> Sequence[str]:
|
|
1553
|
+
"""
|
|
1554
|
+
Ids of instances that needs to be managed using the AutoStopping rules
|
|
1555
|
+
"""
|
|
1556
|
+
return pulumi.get(self, "vm_ids")
|
|
1557
|
+
|
|
1558
|
+
@property
|
|
1559
|
+
@pulumi.getter
|
|
1560
|
+
def regions(self) -> Optional[Sequence[str]]:
|
|
1561
|
+
"""
|
|
1562
|
+
Regions of instances that needs to be managed using the AutoStopping rules
|
|
1563
|
+
"""
|
|
1564
|
+
return pulumi.get(self, "regions")
|
|
1565
|
+
|
|
1566
|
+
@property
|
|
1567
|
+
@pulumi.getter
|
|
1568
|
+
def tags(self) -> Optional[Sequence['outputs.GetRuleVmFilterTagResult']]:
|
|
1569
|
+
"""
|
|
1570
|
+
Tags of instances that needs to be managed using the AutoStopping rules
|
|
1571
|
+
"""
|
|
1572
|
+
return pulumi.get(self, "tags")
|
|
1573
|
+
|
|
1574
|
+
@property
|
|
1575
|
+
@pulumi.getter
|
|
1576
|
+
def zones(self) -> Optional[Sequence[str]]:
|
|
1577
|
+
"""
|
|
1578
|
+
Zones of instances that needs to be managed using the AutoStopping rules
|
|
1579
|
+
"""
|
|
1580
|
+
return pulumi.get(self, "zones")
|
|
1581
|
+
|
|
1582
|
+
|
|
1583
|
+
@pulumi.output_type
|
|
1584
|
+
class GetRuleVmFilterTagResult(dict):
|
|
1585
|
+
def __init__(__self__, *,
|
|
1586
|
+
key: str,
|
|
1587
|
+
value: str):
|
|
1588
|
+
pulumi.set(__self__, "key", key)
|
|
1589
|
+
pulumi.set(__self__, "value", value)
|
|
1590
|
+
|
|
1591
|
+
@property
|
|
1592
|
+
@pulumi.getter
|
|
1593
|
+
def key(self) -> str:
|
|
1594
|
+
return pulumi.get(self, "key")
|
|
1595
|
+
|
|
1596
|
+
@property
|
|
1597
|
+
@pulumi.getter
|
|
1598
|
+
def value(self) -> str:
|
|
1599
|
+
return pulumi.get(self, "value")
|
|
1600
|
+
|
|
1601
|
+
|
|
1602
|
+
@pulumi.output_type
|
|
1603
|
+
class GetRuleVmHttpResult(dict):
|
|
1604
|
+
def __init__(__self__, *,
|
|
1605
|
+
proxy_id: str,
|
|
1606
|
+
healths: Optional[Sequence['outputs.GetRuleVmHttpHealthResult']] = None,
|
|
1607
|
+
routings: Optional[Sequence['outputs.GetRuleVmHttpRoutingResult']] = None):
|
|
1608
|
+
"""
|
|
1609
|
+
:param str proxy_id: Id of the proxy
|
|
1610
|
+
:param Sequence['GetRuleVmHttpHealthArgs'] healths: Health Check Details
|
|
1611
|
+
:param Sequence['GetRuleVmHttpRoutingArgs'] routings: Routing configuration used to access the instances
|
|
1612
|
+
"""
|
|
1613
|
+
pulumi.set(__self__, "proxy_id", proxy_id)
|
|
1614
|
+
if healths is not None:
|
|
1615
|
+
pulumi.set(__self__, "healths", healths)
|
|
1616
|
+
if routings is not None:
|
|
1617
|
+
pulumi.set(__self__, "routings", routings)
|
|
1618
|
+
|
|
1619
|
+
@property
|
|
1620
|
+
@pulumi.getter(name="proxyId")
|
|
1621
|
+
def proxy_id(self) -> str:
|
|
1622
|
+
"""
|
|
1623
|
+
Id of the proxy
|
|
1624
|
+
"""
|
|
1625
|
+
return pulumi.get(self, "proxy_id")
|
|
1626
|
+
|
|
1627
|
+
@property
|
|
1628
|
+
@pulumi.getter
|
|
1629
|
+
def healths(self) -> Optional[Sequence['outputs.GetRuleVmHttpHealthResult']]:
|
|
1630
|
+
"""
|
|
1631
|
+
Health Check Details
|
|
1632
|
+
"""
|
|
1633
|
+
return pulumi.get(self, "healths")
|
|
1634
|
+
|
|
1635
|
+
@property
|
|
1636
|
+
@pulumi.getter
|
|
1637
|
+
def routings(self) -> Optional[Sequence['outputs.GetRuleVmHttpRoutingResult']]:
|
|
1638
|
+
"""
|
|
1639
|
+
Routing configuration used to access the instances
|
|
1640
|
+
"""
|
|
1641
|
+
return pulumi.get(self, "routings")
|
|
1642
|
+
|
|
1643
|
+
|
|
1644
|
+
@pulumi.output_type
|
|
1645
|
+
class GetRuleVmHttpHealthResult(dict):
|
|
1646
|
+
def __init__(__self__, *,
|
|
1647
|
+
port: int,
|
|
1648
|
+
protocol: str,
|
|
1649
|
+
path: Optional[str] = None,
|
|
1650
|
+
status_code_from: Optional[int] = None,
|
|
1651
|
+
status_code_to: Optional[int] = None,
|
|
1652
|
+
timeout: Optional[int] = None):
|
|
1653
|
+
"""
|
|
1654
|
+
:param int port: Health check port on the VM
|
|
1655
|
+
:param str protocol: Protocol can be http or https
|
|
1656
|
+
:param str path: API path to use for health check
|
|
1657
|
+
:param int status_code_from: Lower limit for acceptable status code
|
|
1658
|
+
:param int status_code_to: Upper limit for acceptable status code
|
|
1659
|
+
:param int timeout: Health check timeout
|
|
1660
|
+
"""
|
|
1661
|
+
pulumi.set(__self__, "port", port)
|
|
1662
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
1663
|
+
if path is not None:
|
|
1664
|
+
pulumi.set(__self__, "path", path)
|
|
1665
|
+
if status_code_from is not None:
|
|
1666
|
+
pulumi.set(__self__, "status_code_from", status_code_from)
|
|
1667
|
+
if status_code_to is not None:
|
|
1668
|
+
pulumi.set(__self__, "status_code_to", status_code_to)
|
|
1669
|
+
if timeout is not None:
|
|
1670
|
+
pulumi.set(__self__, "timeout", timeout)
|
|
1671
|
+
|
|
1672
|
+
@property
|
|
1673
|
+
@pulumi.getter
|
|
1674
|
+
def port(self) -> int:
|
|
1675
|
+
"""
|
|
1676
|
+
Health check port on the VM
|
|
1677
|
+
"""
|
|
1678
|
+
return pulumi.get(self, "port")
|
|
1679
|
+
|
|
1680
|
+
@property
|
|
1681
|
+
@pulumi.getter
|
|
1682
|
+
def protocol(self) -> str:
|
|
1683
|
+
"""
|
|
1684
|
+
Protocol can be http or https
|
|
1685
|
+
"""
|
|
1686
|
+
return pulumi.get(self, "protocol")
|
|
1687
|
+
|
|
1688
|
+
@property
|
|
1689
|
+
@pulumi.getter
|
|
1690
|
+
def path(self) -> Optional[str]:
|
|
1691
|
+
"""
|
|
1692
|
+
API path to use for health check
|
|
1693
|
+
"""
|
|
1694
|
+
return pulumi.get(self, "path")
|
|
1695
|
+
|
|
1696
|
+
@property
|
|
1697
|
+
@pulumi.getter(name="statusCodeFrom")
|
|
1698
|
+
def status_code_from(self) -> Optional[int]:
|
|
1699
|
+
"""
|
|
1700
|
+
Lower limit for acceptable status code
|
|
1701
|
+
"""
|
|
1702
|
+
return pulumi.get(self, "status_code_from")
|
|
1703
|
+
|
|
1704
|
+
@property
|
|
1705
|
+
@pulumi.getter(name="statusCodeTo")
|
|
1706
|
+
def status_code_to(self) -> Optional[int]:
|
|
1707
|
+
"""
|
|
1708
|
+
Upper limit for acceptable status code
|
|
1709
|
+
"""
|
|
1710
|
+
return pulumi.get(self, "status_code_to")
|
|
1711
|
+
|
|
1712
|
+
@property
|
|
1713
|
+
@pulumi.getter
|
|
1714
|
+
def timeout(self) -> Optional[int]:
|
|
1715
|
+
"""
|
|
1716
|
+
Health check timeout
|
|
1717
|
+
"""
|
|
1718
|
+
return pulumi.get(self, "timeout")
|
|
1719
|
+
|
|
1720
|
+
|
|
1721
|
+
@pulumi.output_type
|
|
1722
|
+
class GetRuleVmHttpRoutingResult(dict):
|
|
1723
|
+
def __init__(__self__, *,
|
|
1724
|
+
source_protocol: str,
|
|
1725
|
+
target_protocol: str,
|
|
1726
|
+
action: Optional[str] = None,
|
|
1727
|
+
source_port: Optional[int] = None,
|
|
1728
|
+
target_port: Optional[int] = None):
|
|
1729
|
+
"""
|
|
1730
|
+
:param str source_protocol: Source protocol of the proxy can be http or https
|
|
1731
|
+
:param str target_protocol: Target protocol of the instance can be http or https
|
|
1732
|
+
:param str action: Organization Identifier for the Entity
|
|
1733
|
+
:param int source_port: Port on the proxy
|
|
1734
|
+
:param int target_port: Port on the VM
|
|
1735
|
+
"""
|
|
1736
|
+
pulumi.set(__self__, "source_protocol", source_protocol)
|
|
1737
|
+
pulumi.set(__self__, "target_protocol", target_protocol)
|
|
1738
|
+
if action is not None:
|
|
1739
|
+
pulumi.set(__self__, "action", action)
|
|
1740
|
+
if source_port is not None:
|
|
1741
|
+
pulumi.set(__self__, "source_port", source_port)
|
|
1742
|
+
if target_port is not None:
|
|
1743
|
+
pulumi.set(__self__, "target_port", target_port)
|
|
1744
|
+
|
|
1745
|
+
@property
|
|
1746
|
+
@pulumi.getter(name="sourceProtocol")
|
|
1747
|
+
def source_protocol(self) -> str:
|
|
1748
|
+
"""
|
|
1749
|
+
Source protocol of the proxy can be http or https
|
|
1750
|
+
"""
|
|
1751
|
+
return pulumi.get(self, "source_protocol")
|
|
1752
|
+
|
|
1753
|
+
@property
|
|
1754
|
+
@pulumi.getter(name="targetProtocol")
|
|
1755
|
+
def target_protocol(self) -> str:
|
|
1756
|
+
"""
|
|
1757
|
+
Target protocol of the instance can be http or https
|
|
1758
|
+
"""
|
|
1759
|
+
return pulumi.get(self, "target_protocol")
|
|
1760
|
+
|
|
1761
|
+
@property
|
|
1762
|
+
@pulumi.getter
|
|
1763
|
+
def action(self) -> Optional[str]:
|
|
1764
|
+
"""
|
|
1765
|
+
Organization Identifier for the Entity
|
|
1766
|
+
"""
|
|
1767
|
+
return pulumi.get(self, "action")
|
|
1768
|
+
|
|
1769
|
+
@property
|
|
1770
|
+
@pulumi.getter(name="sourcePort")
|
|
1771
|
+
def source_port(self) -> Optional[int]:
|
|
1772
|
+
"""
|
|
1773
|
+
Port on the proxy
|
|
1774
|
+
"""
|
|
1775
|
+
return pulumi.get(self, "source_port")
|
|
1776
|
+
|
|
1777
|
+
@property
|
|
1778
|
+
@pulumi.getter(name="targetPort")
|
|
1779
|
+
def target_port(self) -> Optional[int]:
|
|
1780
|
+
"""
|
|
1781
|
+
Port on the VM
|
|
1782
|
+
"""
|
|
1783
|
+
return pulumi.get(self, "target_port")
|
|
1784
|
+
|
|
1785
|
+
|
|
1786
|
+
@pulumi.output_type
|
|
1787
|
+
class GetRuleVmTcpResult(dict):
|
|
1788
|
+
def __init__(__self__, *,
|
|
1789
|
+
proxy_id: str,
|
|
1790
|
+
forward_rules: Optional[Sequence['outputs.GetRuleVmTcpForwardRuleResult']] = None,
|
|
1791
|
+
rdps: Optional[Sequence['outputs.GetRuleVmTcpRdpResult']] = None,
|
|
1792
|
+
sshes: Optional[Sequence['outputs.GetRuleVmTcpSshResult']] = None):
|
|
1793
|
+
"""
|
|
1794
|
+
:param str proxy_id: Id of the Proxy
|
|
1795
|
+
:param Sequence['GetRuleVmTcpForwardRuleArgs'] forward_rules: Additional tcp forwarding rules
|
|
1796
|
+
:param Sequence['GetRuleVmTcpRdpArgs'] rdps: RDP configuration
|
|
1797
|
+
:param Sequence['GetRuleVmTcpSshArgs'] sshes: SSH configuration
|
|
1798
|
+
"""
|
|
1799
|
+
pulumi.set(__self__, "proxy_id", proxy_id)
|
|
1800
|
+
if forward_rules is not None:
|
|
1801
|
+
pulumi.set(__self__, "forward_rules", forward_rules)
|
|
1802
|
+
if rdps is not None:
|
|
1803
|
+
pulumi.set(__self__, "rdps", rdps)
|
|
1804
|
+
if sshes is not None:
|
|
1805
|
+
pulumi.set(__self__, "sshes", sshes)
|
|
1806
|
+
|
|
1807
|
+
@property
|
|
1808
|
+
@pulumi.getter(name="proxyId")
|
|
1809
|
+
def proxy_id(self) -> str:
|
|
1810
|
+
"""
|
|
1811
|
+
Id of the Proxy
|
|
1812
|
+
"""
|
|
1813
|
+
return pulumi.get(self, "proxy_id")
|
|
1814
|
+
|
|
1815
|
+
@property
|
|
1816
|
+
@pulumi.getter(name="forwardRules")
|
|
1817
|
+
def forward_rules(self) -> Optional[Sequence['outputs.GetRuleVmTcpForwardRuleResult']]:
|
|
1818
|
+
"""
|
|
1819
|
+
Additional tcp forwarding rules
|
|
1820
|
+
"""
|
|
1821
|
+
return pulumi.get(self, "forward_rules")
|
|
1822
|
+
|
|
1823
|
+
@property
|
|
1824
|
+
@pulumi.getter
|
|
1825
|
+
def rdps(self) -> Optional[Sequence['outputs.GetRuleVmTcpRdpResult']]:
|
|
1826
|
+
"""
|
|
1827
|
+
RDP configuration
|
|
1828
|
+
"""
|
|
1829
|
+
return pulumi.get(self, "rdps")
|
|
1830
|
+
|
|
1831
|
+
@property
|
|
1832
|
+
@pulumi.getter
|
|
1833
|
+
def sshes(self) -> Optional[Sequence['outputs.GetRuleVmTcpSshResult']]:
|
|
1834
|
+
"""
|
|
1835
|
+
SSH configuration
|
|
1836
|
+
"""
|
|
1837
|
+
return pulumi.get(self, "sshes")
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
@pulumi.output_type
|
|
1841
|
+
class GetRuleVmTcpForwardRuleResult(dict):
|
|
1842
|
+
def __init__(__self__, *,
|
|
1843
|
+
port: int,
|
|
1844
|
+
connect_on: Optional[int] = None):
|
|
1845
|
+
"""
|
|
1846
|
+
:param int port: Port to listen on the vm
|
|
1847
|
+
:param int connect_on: Port to listen on the proxy
|
|
1848
|
+
"""
|
|
1849
|
+
pulumi.set(__self__, "port", port)
|
|
1850
|
+
if connect_on is not None:
|
|
1851
|
+
pulumi.set(__self__, "connect_on", connect_on)
|
|
1852
|
+
|
|
1853
|
+
@property
|
|
1854
|
+
@pulumi.getter
|
|
1855
|
+
def port(self) -> int:
|
|
1856
|
+
"""
|
|
1857
|
+
Port to listen on the vm
|
|
1858
|
+
"""
|
|
1859
|
+
return pulumi.get(self, "port")
|
|
1860
|
+
|
|
1861
|
+
@property
|
|
1862
|
+
@pulumi.getter(name="connectOn")
|
|
1863
|
+
def connect_on(self) -> Optional[int]:
|
|
1864
|
+
"""
|
|
1865
|
+
Port to listen on the proxy
|
|
1866
|
+
"""
|
|
1867
|
+
return pulumi.get(self, "connect_on")
|
|
1868
|
+
|
|
1869
|
+
|
|
1870
|
+
@pulumi.output_type
|
|
1871
|
+
class GetRuleVmTcpRdpResult(dict):
|
|
1872
|
+
def __init__(__self__, *,
|
|
1873
|
+
connect_on: Optional[int] = None,
|
|
1874
|
+
port: Optional[int] = None):
|
|
1875
|
+
"""
|
|
1876
|
+
:param int connect_on: Port to listen on the proxy
|
|
1877
|
+
:param int port: Port to listen on the vm
|
|
1878
|
+
"""
|
|
1879
|
+
if connect_on is not None:
|
|
1880
|
+
pulumi.set(__self__, "connect_on", connect_on)
|
|
1881
|
+
if port is not None:
|
|
1882
|
+
pulumi.set(__self__, "port", port)
|
|
1883
|
+
|
|
1884
|
+
@property
|
|
1885
|
+
@pulumi.getter(name="connectOn")
|
|
1886
|
+
def connect_on(self) -> Optional[int]:
|
|
1887
|
+
"""
|
|
1888
|
+
Port to listen on the proxy
|
|
1889
|
+
"""
|
|
1890
|
+
return pulumi.get(self, "connect_on")
|
|
1891
|
+
|
|
1892
|
+
@property
|
|
1893
|
+
@pulumi.getter
|
|
1894
|
+
def port(self) -> Optional[int]:
|
|
1895
|
+
"""
|
|
1896
|
+
Port to listen on the vm
|
|
1897
|
+
"""
|
|
1898
|
+
return pulumi.get(self, "port")
|
|
1899
|
+
|
|
1900
|
+
|
|
1901
|
+
@pulumi.output_type
|
|
1902
|
+
class GetRuleVmTcpSshResult(dict):
|
|
1903
|
+
def __init__(__self__, *,
|
|
1904
|
+
connect_on: Optional[int] = None,
|
|
1905
|
+
port: Optional[int] = None):
|
|
1906
|
+
"""
|
|
1907
|
+
:param int connect_on: Port to listen on the proxy
|
|
1908
|
+
:param int port: Port to listen on the vm
|
|
1909
|
+
"""
|
|
1910
|
+
if connect_on is not None:
|
|
1911
|
+
pulumi.set(__self__, "connect_on", connect_on)
|
|
1912
|
+
if port is not None:
|
|
1913
|
+
pulumi.set(__self__, "port", port)
|
|
1914
|
+
|
|
1915
|
+
@property
|
|
1916
|
+
@pulumi.getter(name="connectOn")
|
|
1917
|
+
def connect_on(self) -> Optional[int]:
|
|
1918
|
+
"""
|
|
1919
|
+
Port to listen on the proxy
|
|
1920
|
+
"""
|
|
1921
|
+
return pulumi.get(self, "connect_on")
|
|
1922
|
+
|
|
1923
|
+
@property
|
|
1924
|
+
@pulumi.getter
|
|
1925
|
+
def port(self) -> Optional[int]:
|
|
1926
|
+
"""
|
|
1927
|
+
Port to listen on the vm
|
|
1928
|
+
"""
|
|
1929
|
+
return pulumi.get(self, "port")
|
|
1930
|
+
|
|
1931
|
+
|
|
1932
|
+
@pulumi.output_type
|
|
1933
|
+
class GetScheduleRepeatResult(dict):
|
|
1934
|
+
def __init__(__self__, *,
|
|
1935
|
+
days: Sequence[str],
|
|
1936
|
+
end_time: str,
|
|
1937
|
+
start_time: str):
|
|
1938
|
+
"""
|
|
1939
|
+
:param Sequence[str] days: List of days on which schedule need to be active. Valid values are SUN, MON, TUE, WED, THU, FRI and SAT.
|
|
1940
|
+
:param str end_time: Ending time of schedule action on the day. Accepted format is HH:MM. Eg : 20:00 for 8pm
|
|
1941
|
+
:param str start_time: Starting time of schedule action on the day. Accepted format is HH:MM. Eg : 13:15 for 01:15pm
|
|
1942
|
+
"""
|
|
1943
|
+
pulumi.set(__self__, "days", days)
|
|
1944
|
+
pulumi.set(__self__, "end_time", end_time)
|
|
1945
|
+
pulumi.set(__self__, "start_time", start_time)
|
|
1946
|
+
|
|
1947
|
+
@property
|
|
1948
|
+
@pulumi.getter
|
|
1949
|
+
def days(self) -> Sequence[str]:
|
|
1950
|
+
"""
|
|
1951
|
+
List of days on which schedule need to be active. Valid values are SUN, MON, TUE, WED, THU, FRI and SAT.
|
|
1952
|
+
"""
|
|
1953
|
+
return pulumi.get(self, "days")
|
|
1954
|
+
|
|
1955
|
+
@property
|
|
1956
|
+
@pulumi.getter(name="endTime")
|
|
1957
|
+
def end_time(self) -> str:
|
|
1958
|
+
"""
|
|
1959
|
+
Ending time of schedule action on the day. Accepted format is HH:MM. Eg : 20:00 for 8pm
|
|
1960
|
+
"""
|
|
1961
|
+
return pulumi.get(self, "end_time")
|
|
1962
|
+
|
|
1963
|
+
@property
|
|
1964
|
+
@pulumi.getter(name="startTime")
|
|
1965
|
+
def start_time(self) -> str:
|
|
1966
|
+
"""
|
|
1967
|
+
Starting time of schedule action on the day. Accepted format is HH:MM. Eg : 13:15 for 01:15pm
|
|
1968
|
+
"""
|
|
1969
|
+
return pulumi.get(self, "start_time")
|
|
1970
|
+
|
|
1971
|
+
|