pulumi-harness 0.8.0a1755712204__py3-none-any.whl → 0.8.0a1755714852__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 +67 -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/_inputs.py +537 -469
- 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 +51 -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/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 +12 -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_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 +96 -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 +481 -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.0a1755714852.dist-info}/METADATA +1 -1
- pulumi_harness-0.8.0a1755714852.dist-info/RECORD +355 -0
- pulumi_harness-0.8.0a1755712204.dist-info/RECORD +0 -337
- {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.8.0a1755714852.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.8.0a1755714852.dist-info}/top_level.txt +0 -0
|
@@ -55,6 +55,8 @@ __all__ = [
|
|
|
55
55
|
'AwsSecretManagerConnectorCredentialsManualArgsDict',
|
|
56
56
|
'AwsSecretManagerConnectorCredentialsOidcAuthenticationArgs',
|
|
57
57
|
'AwsSecretManagerConnectorCredentialsOidcAuthenticationArgsDict',
|
|
58
|
+
'AzureCloudCostConnectorBillingExportSpec2Args',
|
|
59
|
+
'AzureCloudCostConnectorBillingExportSpec2ArgsDict',
|
|
58
60
|
'AzureCloudCostConnectorBillingExportSpecArgs',
|
|
59
61
|
'AzureCloudCostConnectorBillingExportSpecArgsDict',
|
|
60
62
|
'AzureCloudProviderConnectorCredentialsArgs',
|
|
@@ -3259,10 +3261,6 @@ __all__ = [
|
|
|
3259
3261
|
'GetCentralNotificationRuleNotificationConditionNotificationEventConfigArgsDict',
|
|
3260
3262
|
'GetConnectorRancherBearerTokenArgs',
|
|
3261
3263
|
'GetConnectorRancherBearerTokenArgsDict',
|
|
3262
|
-
'GetDbSchemaChangelogScriptArgs',
|
|
3263
|
-
'GetDbSchemaChangelogScriptArgsDict',
|
|
3264
|
-
'GetDbSchemaSchemaSourceArgs',
|
|
3265
|
-
'GetDbSchemaSchemaSourceArgsDict',
|
|
3266
3264
|
'GetEnvironmentClustersMappingClusterArgs',
|
|
3267
3265
|
'GetEnvironmentClustersMappingClusterArgsDict',
|
|
3268
3266
|
'GetEnvironmentGitDetailsArgs',
|
|
@@ -3283,8 +3281,6 @@ __all__ = [
|
|
|
3283
3281
|
'GetHarRegistryConfigArgsDict',
|
|
3284
3282
|
'GetHarRegistryConfigAuthArgs',
|
|
3285
3283
|
'GetHarRegistryConfigAuthArgsDict',
|
|
3286
|
-
'GetHarRegistryConfigAuthUserPasswordArgs',
|
|
3287
|
-
'GetHarRegistryConfigAuthUserPasswordArgsDict',
|
|
3288
3284
|
'GetInfraVariableSetConnectorArgs',
|
|
3289
3285
|
'GetInfraVariableSetConnectorArgsDict',
|
|
3290
3286
|
'GetInfraVariableSetEnvironmentVariableArgs',
|
|
@@ -3811,7 +3807,7 @@ if not MYPY:
|
|
|
3811
3807
|
"""
|
|
3812
3808
|
region: NotRequired[pulumi.Input[_builtins.str]]
|
|
3813
3809
|
"""
|
|
3814
|
-
Test Region to perform Connection test of AWS Connector.
|
|
3810
|
+
Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3815
3811
|
"""
|
|
3816
3812
|
elif False:
|
|
3817
3813
|
AwsConnectorInheritFromDelegateArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3823,7 +3819,7 @@ class AwsConnectorInheritFromDelegateArgs:
|
|
|
3823
3819
|
region: Optional[pulumi.Input[_builtins.str]] = None):
|
|
3824
3820
|
"""
|
|
3825
3821
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] delegate_selectors: The delegates to inherit the credentials from.
|
|
3826
|
-
:param pulumi.Input[_builtins.str] region: Test Region to perform Connection test of AWS Connector.
|
|
3822
|
+
:param pulumi.Input[_builtins.str] region: Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3827
3823
|
"""
|
|
3828
3824
|
pulumi.set(__self__, "delegate_selectors", delegate_selectors)
|
|
3829
3825
|
if region is not None:
|
|
@@ -3845,7 +3841,7 @@ class AwsConnectorInheritFromDelegateArgs:
|
|
|
3845
3841
|
@pulumi.getter
|
|
3846
3842
|
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3847
3843
|
"""
|
|
3848
|
-
Test Region to perform Connection test of AWS Connector.
|
|
3844
|
+
Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3849
3845
|
"""
|
|
3850
3846
|
return pulumi.get(self, "region")
|
|
3851
3847
|
|
|
@@ -3862,7 +3858,7 @@ if not MYPY:
|
|
|
3862
3858
|
"""
|
|
3863
3859
|
region: NotRequired[pulumi.Input[_builtins.str]]
|
|
3864
3860
|
"""
|
|
3865
|
-
Test Region to perform Connection test of AWS Connector.
|
|
3861
|
+
Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3866
3862
|
"""
|
|
3867
3863
|
elif False:
|
|
3868
3864
|
AwsConnectorIrsaArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3874,7 +3870,7 @@ class AwsConnectorIrsaArgs:
|
|
|
3874
3870
|
region: Optional[pulumi.Input[_builtins.str]] = None):
|
|
3875
3871
|
"""
|
|
3876
3872
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] delegate_selectors: The delegates to inherit the credentials from.
|
|
3877
|
-
:param pulumi.Input[_builtins.str] region: Test Region to perform Connection test of AWS Connector.
|
|
3873
|
+
:param pulumi.Input[_builtins.str] region: Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3878
3874
|
"""
|
|
3879
3875
|
pulumi.set(__self__, "delegate_selectors", delegate_selectors)
|
|
3880
3876
|
if region is not None:
|
|
@@ -3896,7 +3892,7 @@ class AwsConnectorIrsaArgs:
|
|
|
3896
3892
|
@pulumi.getter
|
|
3897
3893
|
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3898
3894
|
"""
|
|
3899
|
-
Test Region to perform Connection test of AWS Connector.
|
|
3895
|
+
Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3900
3896
|
"""
|
|
3901
3897
|
return pulumi.get(self, "region")
|
|
3902
3898
|
|
|
@@ -3925,11 +3921,11 @@ if not MYPY:
|
|
|
3925
3921
|
"""
|
|
3926
3922
|
region: NotRequired[pulumi.Input[_builtins.str]]
|
|
3927
3923
|
"""
|
|
3928
|
-
Test Region to perform Connection test of AWS Connector.
|
|
3924
|
+
Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3929
3925
|
"""
|
|
3930
3926
|
session_token_ref: NotRequired[pulumi.Input[_builtins.str]]
|
|
3931
3927
|
"""
|
|
3932
|
-
Reference to the Harness secret containing the aws session token.
|
|
3928
|
+
Reference to the Harness secret containing the aws session token. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3933
3929
|
"""
|
|
3934
3930
|
elif False:
|
|
3935
3931
|
AwsConnectorManualArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3948,8 +3944,8 @@ class AwsConnectorManualArgs:
|
|
|
3948
3944
|
:param pulumi.Input[_builtins.str] access_key: AWS access key.
|
|
3949
3945
|
:param pulumi.Input[_builtins.str] access_key_ref: Reference to the Harness secret containing the aws access key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3950
3946
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] delegate_selectors: Connect only use delegates with these tags.
|
|
3951
|
-
:param pulumi.Input[_builtins.str] region: Test Region to perform Connection test of AWS Connector.
|
|
3952
|
-
:param pulumi.Input[_builtins.str] session_token_ref: Reference to the Harness secret containing the aws session token.
|
|
3947
|
+
:param pulumi.Input[_builtins.str] region: Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3948
|
+
:param pulumi.Input[_builtins.str] session_token_ref: Reference to the Harness secret containing the aws session token. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
3953
3949
|
"""
|
|
3954
3950
|
pulumi.set(__self__, "secret_key_ref", secret_key_ref)
|
|
3955
3951
|
if access_key is not None:
|
|
@@ -4015,7 +4011,7 @@ class AwsConnectorManualArgs:
|
|
|
4015
4011
|
@pulumi.getter
|
|
4016
4012
|
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4017
4013
|
"""
|
|
4018
|
-
Test Region to perform Connection test of AWS Connector.
|
|
4014
|
+
Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
4019
4015
|
"""
|
|
4020
4016
|
return pulumi.get(self, "region")
|
|
4021
4017
|
|
|
@@ -4027,7 +4023,7 @@ class AwsConnectorManualArgs:
|
|
|
4027
4023
|
@pulumi.getter(name="sessionTokenRef")
|
|
4028
4024
|
def session_token_ref(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4029
4025
|
"""
|
|
4030
|
-
Reference to the Harness secret containing the aws session token.
|
|
4026
|
+
Reference to the Harness secret containing the aws session token. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
4031
4027
|
"""
|
|
4032
4028
|
return pulumi.get(self, "session_token_ref")
|
|
4033
4029
|
|
|
@@ -4048,7 +4044,7 @@ if not MYPY:
|
|
|
4048
4044
|
"""
|
|
4049
4045
|
region: NotRequired[pulumi.Input[_builtins.str]]
|
|
4050
4046
|
"""
|
|
4051
|
-
|
|
4047
|
+
Test Region to perform Connection test of AWS Connector. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
4052
4048
|
"""
|
|
4053
4049
|
elif False:
|
|
4054
4050
|
AwsConnectorOidcAuthenticationArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -4062,7 +4058,7 @@ class AwsConnectorOidcAuthenticationArgs:
|
|
|
4062
4058
|
"""
|
|
4063
4059
|
:param pulumi.Input[_builtins.str] iam_role_arn: The IAM Role to assume the credentials from.
|
|
4064
4060
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] delegate_selectors: The delegates to inherit the credentials from.
|
|
4065
|
-
:param pulumi.Input[_builtins.str] region:
|
|
4061
|
+
:param pulumi.Input[_builtins.str] region: Test Region to perform Connection test of AWS Connector. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
4066
4062
|
"""
|
|
4067
4063
|
pulumi.set(__self__, "iam_role_arn", iam_role_arn)
|
|
4068
4064
|
if delegate_selectors is not None:
|
|
@@ -4098,7 +4094,7 @@ class AwsConnectorOidcAuthenticationArgs:
|
|
|
4098
4094
|
@pulumi.getter
|
|
4099
4095
|
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4100
4096
|
"""
|
|
4101
|
-
|
|
4097
|
+
Test Region to perform Connection test of AWS Connector. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
4102
4098
|
"""
|
|
4103
4099
|
return pulumi.get(self, "region")
|
|
4104
4100
|
|
|
@@ -4520,7 +4516,7 @@ if not MYPY:
|
|
|
4520
4516
|
"""
|
|
4521
4517
|
access_key_plain_text: NotRequired[pulumi.Input[_builtins.str]]
|
|
4522
4518
|
"""
|
|
4523
|
-
The plain text AWS access key.
|
|
4519
|
+
The plain text AWS access key.
|
|
4524
4520
|
"""
|
|
4525
4521
|
access_key_ref: NotRequired[pulumi.Input[_builtins.str]]
|
|
4526
4522
|
"""
|
|
@@ -4537,7 +4533,7 @@ class AwsSecretManagerConnectorCredentialsManualArgs:
|
|
|
4537
4533
|
access_key_ref: Optional[pulumi.Input[_builtins.str]] = None):
|
|
4538
4534
|
"""
|
|
4539
4535
|
:param pulumi.Input[_builtins.str] secret_key_ref: The reference to the Harness secret containing the AWS secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
4540
|
-
:param pulumi.Input[_builtins.str] access_key_plain_text: The plain text AWS access key.
|
|
4536
|
+
:param pulumi.Input[_builtins.str] access_key_plain_text: The plain text AWS access key.
|
|
4541
4537
|
:param pulumi.Input[_builtins.str] access_key_ref: The reference to the Harness secret containing the AWS access key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
4542
4538
|
"""
|
|
4543
4539
|
pulumi.set(__self__, "secret_key_ref", secret_key_ref)
|
|
@@ -4562,7 +4558,7 @@ class AwsSecretManagerConnectorCredentialsManualArgs:
|
|
|
4562
4558
|
@pulumi.getter(name="accessKeyPlainText")
|
|
4563
4559
|
def access_key_plain_text(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4564
4560
|
"""
|
|
4565
|
-
The plain text AWS access key.
|
|
4561
|
+
The plain text AWS access key.
|
|
4566
4562
|
"""
|
|
4567
4563
|
return pulumi.get(self, "access_key_plain_text")
|
|
4568
4564
|
|
|
@@ -4614,8 +4610,138 @@ class AwsSecretManagerConnectorCredentialsOidcAuthenticationArgs:
|
|
|
4614
4610
|
pulumi.set(self, "iam_role_arn", value)
|
|
4615
4611
|
|
|
4616
4612
|
|
|
4613
|
+
if not MYPY:
|
|
4614
|
+
class AzureCloudCostConnectorBillingExportSpec2ArgsDict(TypedDict):
|
|
4615
|
+
billing_type: pulumi.Input[_builtins.str]
|
|
4616
|
+
"""
|
|
4617
|
+
Billing type.
|
|
4618
|
+
"""
|
|
4619
|
+
container_name: pulumi.Input[_builtins.str]
|
|
4620
|
+
"""
|
|
4621
|
+
Name of the container.
|
|
4622
|
+
"""
|
|
4623
|
+
directory_name: pulumi.Input[_builtins.str]
|
|
4624
|
+
"""
|
|
4625
|
+
Name of the directory.
|
|
4626
|
+
"""
|
|
4627
|
+
report_name: pulumi.Input[_builtins.str]
|
|
4628
|
+
"""
|
|
4629
|
+
Name of the report.
|
|
4630
|
+
"""
|
|
4631
|
+
storage_account_name: pulumi.Input[_builtins.str]
|
|
4632
|
+
"""
|
|
4633
|
+
Name of the storage account.
|
|
4634
|
+
"""
|
|
4635
|
+
subscription_id: pulumi.Input[_builtins.str]
|
|
4636
|
+
"""
|
|
4637
|
+
Subsription id.
|
|
4638
|
+
"""
|
|
4639
|
+
elif False:
|
|
4640
|
+
AzureCloudCostConnectorBillingExportSpec2ArgsDict: TypeAlias = Mapping[str, Any]
|
|
4641
|
+
|
|
4642
|
+
@pulumi.input_type
|
|
4643
|
+
class AzureCloudCostConnectorBillingExportSpec2Args:
|
|
4644
|
+
def __init__(__self__, *,
|
|
4645
|
+
billing_type: pulumi.Input[_builtins.str],
|
|
4646
|
+
container_name: pulumi.Input[_builtins.str],
|
|
4647
|
+
directory_name: pulumi.Input[_builtins.str],
|
|
4648
|
+
report_name: pulumi.Input[_builtins.str],
|
|
4649
|
+
storage_account_name: pulumi.Input[_builtins.str],
|
|
4650
|
+
subscription_id: pulumi.Input[_builtins.str]):
|
|
4651
|
+
"""
|
|
4652
|
+
:param pulumi.Input[_builtins.str] billing_type: Billing type.
|
|
4653
|
+
:param pulumi.Input[_builtins.str] container_name: Name of the container.
|
|
4654
|
+
:param pulumi.Input[_builtins.str] directory_name: Name of the directory.
|
|
4655
|
+
:param pulumi.Input[_builtins.str] report_name: Name of the report.
|
|
4656
|
+
:param pulumi.Input[_builtins.str] storage_account_name: Name of the storage account.
|
|
4657
|
+
:param pulumi.Input[_builtins.str] subscription_id: Subsription id.
|
|
4658
|
+
"""
|
|
4659
|
+
pulumi.set(__self__, "billing_type", billing_type)
|
|
4660
|
+
pulumi.set(__self__, "container_name", container_name)
|
|
4661
|
+
pulumi.set(__self__, "directory_name", directory_name)
|
|
4662
|
+
pulumi.set(__self__, "report_name", report_name)
|
|
4663
|
+
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
4664
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
4665
|
+
|
|
4666
|
+
@_builtins.property
|
|
4667
|
+
@pulumi.getter(name="billingType")
|
|
4668
|
+
def billing_type(self) -> pulumi.Input[_builtins.str]:
|
|
4669
|
+
"""
|
|
4670
|
+
Billing type.
|
|
4671
|
+
"""
|
|
4672
|
+
return pulumi.get(self, "billing_type")
|
|
4673
|
+
|
|
4674
|
+
@billing_type.setter
|
|
4675
|
+
def billing_type(self, value: pulumi.Input[_builtins.str]):
|
|
4676
|
+
pulumi.set(self, "billing_type", value)
|
|
4677
|
+
|
|
4678
|
+
@_builtins.property
|
|
4679
|
+
@pulumi.getter(name="containerName")
|
|
4680
|
+
def container_name(self) -> pulumi.Input[_builtins.str]:
|
|
4681
|
+
"""
|
|
4682
|
+
Name of the container.
|
|
4683
|
+
"""
|
|
4684
|
+
return pulumi.get(self, "container_name")
|
|
4685
|
+
|
|
4686
|
+
@container_name.setter
|
|
4687
|
+
def container_name(self, value: pulumi.Input[_builtins.str]):
|
|
4688
|
+
pulumi.set(self, "container_name", value)
|
|
4689
|
+
|
|
4690
|
+
@_builtins.property
|
|
4691
|
+
@pulumi.getter(name="directoryName")
|
|
4692
|
+
def directory_name(self) -> pulumi.Input[_builtins.str]:
|
|
4693
|
+
"""
|
|
4694
|
+
Name of the directory.
|
|
4695
|
+
"""
|
|
4696
|
+
return pulumi.get(self, "directory_name")
|
|
4697
|
+
|
|
4698
|
+
@directory_name.setter
|
|
4699
|
+
def directory_name(self, value: pulumi.Input[_builtins.str]):
|
|
4700
|
+
pulumi.set(self, "directory_name", value)
|
|
4701
|
+
|
|
4702
|
+
@_builtins.property
|
|
4703
|
+
@pulumi.getter(name="reportName")
|
|
4704
|
+
def report_name(self) -> pulumi.Input[_builtins.str]:
|
|
4705
|
+
"""
|
|
4706
|
+
Name of the report.
|
|
4707
|
+
"""
|
|
4708
|
+
return pulumi.get(self, "report_name")
|
|
4709
|
+
|
|
4710
|
+
@report_name.setter
|
|
4711
|
+
def report_name(self, value: pulumi.Input[_builtins.str]):
|
|
4712
|
+
pulumi.set(self, "report_name", value)
|
|
4713
|
+
|
|
4714
|
+
@_builtins.property
|
|
4715
|
+
@pulumi.getter(name="storageAccountName")
|
|
4716
|
+
def storage_account_name(self) -> pulumi.Input[_builtins.str]:
|
|
4717
|
+
"""
|
|
4718
|
+
Name of the storage account.
|
|
4719
|
+
"""
|
|
4720
|
+
return pulumi.get(self, "storage_account_name")
|
|
4721
|
+
|
|
4722
|
+
@storage_account_name.setter
|
|
4723
|
+
def storage_account_name(self, value: pulumi.Input[_builtins.str]):
|
|
4724
|
+
pulumi.set(self, "storage_account_name", value)
|
|
4725
|
+
|
|
4726
|
+
@_builtins.property
|
|
4727
|
+
@pulumi.getter(name="subscriptionId")
|
|
4728
|
+
def subscription_id(self) -> pulumi.Input[_builtins.str]:
|
|
4729
|
+
"""
|
|
4730
|
+
Subsription id.
|
|
4731
|
+
"""
|
|
4732
|
+
return pulumi.get(self, "subscription_id")
|
|
4733
|
+
|
|
4734
|
+
@subscription_id.setter
|
|
4735
|
+
def subscription_id(self, value: pulumi.Input[_builtins.str]):
|
|
4736
|
+
pulumi.set(self, "subscription_id", value)
|
|
4737
|
+
|
|
4738
|
+
|
|
4617
4739
|
if not MYPY:
|
|
4618
4740
|
class AzureCloudCostConnectorBillingExportSpecArgsDict(TypedDict):
|
|
4741
|
+
billing_type: pulumi.Input[_builtins.str]
|
|
4742
|
+
"""
|
|
4743
|
+
Billing type.
|
|
4744
|
+
"""
|
|
4619
4745
|
container_name: pulumi.Input[_builtins.str]
|
|
4620
4746
|
"""
|
|
4621
4747
|
Name of the container.
|
|
@@ -4642,24 +4768,39 @@ elif False:
|
|
|
4642
4768
|
@pulumi.input_type
|
|
4643
4769
|
class AzureCloudCostConnectorBillingExportSpecArgs:
|
|
4644
4770
|
def __init__(__self__, *,
|
|
4771
|
+
billing_type: pulumi.Input[_builtins.str],
|
|
4645
4772
|
container_name: pulumi.Input[_builtins.str],
|
|
4646
4773
|
directory_name: pulumi.Input[_builtins.str],
|
|
4647
4774
|
report_name: pulumi.Input[_builtins.str],
|
|
4648
4775
|
storage_account_name: pulumi.Input[_builtins.str],
|
|
4649
4776
|
subscription_id: pulumi.Input[_builtins.str]):
|
|
4650
4777
|
"""
|
|
4778
|
+
:param pulumi.Input[_builtins.str] billing_type: Billing type.
|
|
4651
4779
|
:param pulumi.Input[_builtins.str] container_name: Name of the container.
|
|
4652
4780
|
:param pulumi.Input[_builtins.str] directory_name: Name of the directory.
|
|
4653
4781
|
:param pulumi.Input[_builtins.str] report_name: Name of the report.
|
|
4654
4782
|
:param pulumi.Input[_builtins.str] storage_account_name: Name of the storage account.
|
|
4655
4783
|
:param pulumi.Input[_builtins.str] subscription_id: Subsription Id.
|
|
4656
4784
|
"""
|
|
4785
|
+
pulumi.set(__self__, "billing_type", billing_type)
|
|
4657
4786
|
pulumi.set(__self__, "container_name", container_name)
|
|
4658
4787
|
pulumi.set(__self__, "directory_name", directory_name)
|
|
4659
4788
|
pulumi.set(__self__, "report_name", report_name)
|
|
4660
4789
|
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
4661
4790
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
4662
4791
|
|
|
4792
|
+
@_builtins.property
|
|
4793
|
+
@pulumi.getter(name="billingType")
|
|
4794
|
+
def billing_type(self) -> pulumi.Input[_builtins.str]:
|
|
4795
|
+
"""
|
|
4796
|
+
Billing type.
|
|
4797
|
+
"""
|
|
4798
|
+
return pulumi.get(self, "billing_type")
|
|
4799
|
+
|
|
4800
|
+
@billing_type.setter
|
|
4801
|
+
def billing_type(self, value: pulumi.Input[_builtins.str]):
|
|
4802
|
+
pulumi.set(self, "billing_type", value)
|
|
4803
|
+
|
|
4663
4804
|
@_builtins.property
|
|
4664
4805
|
@pulumi.getter(name="containerName")
|
|
4665
4806
|
def container_name(self) -> pulumi.Input[_builtins.str]:
|
|
@@ -5980,13 +6121,7 @@ class ConnectorCustomSecretManagerTemplateInputArgs:
|
|
|
5980
6121
|
if not MYPY:
|
|
5981
6122
|
class ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArgsDict(TypedDict):
|
|
5982
6123
|
name: pulumi.Input[_builtins.str]
|
|
5983
|
-
"""
|
|
5984
|
-
: Name of the resource.
|
|
5985
|
-
"""
|
|
5986
6124
|
type: pulumi.Input[_builtins.str]
|
|
5987
|
-
"""
|
|
5988
|
-
: Type of the custom secrets manager, typically set to `CustomSecretManager`.
|
|
5989
|
-
"""
|
|
5990
6125
|
value: pulumi.Input[_builtins.str]
|
|
5991
6126
|
default: NotRequired[pulumi.Input[_builtins.bool]]
|
|
5992
6127
|
elif False:
|
|
@@ -5999,10 +6134,6 @@ class ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArgs:
|
|
|
5999
6134
|
type: pulumi.Input[_builtins.str],
|
|
6000
6135
|
value: pulumi.Input[_builtins.str],
|
|
6001
6136
|
default: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
6002
|
-
"""
|
|
6003
|
-
:param pulumi.Input[_builtins.str] name: : Name of the resource.
|
|
6004
|
-
:param pulumi.Input[_builtins.str] type: : Type of the custom secrets manager, typically set to `CustomSecretManager`.
|
|
6005
|
-
"""
|
|
6006
6137
|
pulumi.set(__self__, "name", name)
|
|
6007
6138
|
pulumi.set(__self__, "type", type)
|
|
6008
6139
|
pulumi.set(__self__, "value", value)
|
|
@@ -6012,9 +6143,6 @@ class ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArgs:
|
|
|
6012
6143
|
@_builtins.property
|
|
6013
6144
|
@pulumi.getter
|
|
6014
6145
|
def name(self) -> pulumi.Input[_builtins.str]:
|
|
6015
|
-
"""
|
|
6016
|
-
: Name of the resource.
|
|
6017
|
-
"""
|
|
6018
6146
|
return pulumi.get(self, "name")
|
|
6019
6147
|
|
|
6020
6148
|
@name.setter
|
|
@@ -6024,9 +6152,6 @@ class ConnectorCustomSecretManagerTemplateInputEnvironmentVariableArgs:
|
|
|
6024
6152
|
@_builtins.property
|
|
6025
6153
|
@pulumi.getter
|
|
6026
6154
|
def type(self) -> pulumi.Input[_builtins.str]:
|
|
6027
|
-
"""
|
|
6028
|
-
: Type of the custom secrets manager, typically set to `CustomSecretManager`.
|
|
6029
|
-
"""
|
|
6030
6155
|
return pulumi.get(self, "type")
|
|
6031
6156
|
|
|
6032
6157
|
@type.setter
|
|
@@ -6631,11 +6756,11 @@ if not MYPY:
|
|
|
6631
6756
|
class ConnectorPdcHostArgsDict(TypedDict):
|
|
6632
6757
|
hostname: pulumi.Input[_builtins.str]
|
|
6633
6758
|
"""
|
|
6634
|
-
|
|
6759
|
+
hostname
|
|
6635
6760
|
"""
|
|
6636
6761
|
attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]
|
|
6637
6762
|
"""
|
|
6638
|
-
|
|
6763
|
+
attributes for current host
|
|
6639
6764
|
"""
|
|
6640
6765
|
elif False:
|
|
6641
6766
|
ConnectorPdcHostArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -6646,8 +6771,8 @@ class ConnectorPdcHostArgs:
|
|
|
6646
6771
|
hostname: pulumi.Input[_builtins.str],
|
|
6647
6772
|
attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
6648
6773
|
"""
|
|
6649
|
-
:param pulumi.Input[_builtins.str] hostname:
|
|
6650
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] attributes:
|
|
6774
|
+
:param pulumi.Input[_builtins.str] hostname: hostname
|
|
6775
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] attributes: attributes for current host
|
|
6651
6776
|
"""
|
|
6652
6777
|
pulumi.set(__self__, "hostname", hostname)
|
|
6653
6778
|
if attributes is not None:
|
|
@@ -6657,7 +6782,7 @@ class ConnectorPdcHostArgs:
|
|
|
6657
6782
|
@pulumi.getter
|
|
6658
6783
|
def hostname(self) -> pulumi.Input[_builtins.str]:
|
|
6659
6784
|
"""
|
|
6660
|
-
|
|
6785
|
+
hostname
|
|
6661
6786
|
"""
|
|
6662
6787
|
return pulumi.get(self, "hostname")
|
|
6663
6788
|
|
|
@@ -6669,7 +6794,7 @@ class ConnectorPdcHostArgs:
|
|
|
6669
6794
|
@pulumi.getter
|
|
6670
6795
|
def attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
6671
6796
|
"""
|
|
6672
|
-
|
|
6797
|
+
attributes for current host
|
|
6673
6798
|
"""
|
|
6674
6799
|
return pulumi.get(self, "attributes")
|
|
6675
6800
|
|
|
@@ -6895,7 +7020,7 @@ if not MYPY:
|
|
|
6895
7020
|
class DockerConnectorCredentialsArgsDict(TypedDict):
|
|
6896
7021
|
password_ref: pulumi.Input[_builtins.str]
|
|
6897
7022
|
"""
|
|
6898
|
-
The reference to the Harness secret containing the password to use for the docker registry. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
7023
|
+
The reference to the Harness secret containing the password to use for the docker registry. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
6899
7024
|
"""
|
|
6900
7025
|
username: NotRequired[pulumi.Input[_builtins.str]]
|
|
6901
7026
|
"""
|
|
@@ -6915,7 +7040,7 @@ class DockerConnectorCredentialsArgs:
|
|
|
6915
7040
|
username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
6916
7041
|
username_ref: Optional[pulumi.Input[_builtins.str]] = None):
|
|
6917
7042
|
"""
|
|
6918
|
-
:param pulumi.Input[_builtins.str] password_ref: The reference to the Harness secret containing the password to use for the docker registry. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
7043
|
+
:param pulumi.Input[_builtins.str] password_ref: The reference to the Harness secret containing the password to use for the docker registry. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
6919
7044
|
:param pulumi.Input[_builtins.str] username: The username to use for the docker registry.
|
|
6920
7045
|
:param pulumi.Input[_builtins.str] username_ref: The reference to the Harness secret containing the username to use for the docker registry. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
6921
7046
|
"""
|
|
@@ -6929,7 +7054,7 @@ class DockerConnectorCredentialsArgs:
|
|
|
6929
7054
|
@pulumi.getter(name="passwordRef")
|
|
6930
7055
|
def password_ref(self) -> pulumi.Input[_builtins.str]:
|
|
6931
7056
|
"""
|
|
6932
|
-
The reference to the Harness secret containing the password to use for the docker registry. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
7057
|
+
The reference to the Harness secret containing the password to use for the docker registry. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
6933
7058
|
"""
|
|
6934
7059
|
return pulumi.get(self, "password_ref")
|
|
6935
7060
|
|
|
@@ -6966,7 +7091,7 @@ if not MYPY:
|
|
|
6966
7091
|
class ElasticsearchConnectorApiTokenArgsDict(TypedDict):
|
|
6967
7092
|
client_id: pulumi.Input[_builtins.str]
|
|
6968
7093
|
"""
|
|
6969
|
-
The
|
|
7094
|
+
The API Key id used for connecting to ElasticSearch.
|
|
6970
7095
|
"""
|
|
6971
7096
|
client_secret_ref: pulumi.Input[_builtins.str]
|
|
6972
7097
|
"""
|
|
@@ -6981,7 +7106,7 @@ class ElasticsearchConnectorApiTokenArgs:
|
|
|
6981
7106
|
client_id: pulumi.Input[_builtins.str],
|
|
6982
7107
|
client_secret_ref: pulumi.Input[_builtins.str]):
|
|
6983
7108
|
"""
|
|
6984
|
-
:param pulumi.Input[_builtins.str] client_id: The
|
|
7109
|
+
:param pulumi.Input[_builtins.str] client_id: The API Key id used for connecting to ElasticSearch.
|
|
6985
7110
|
:param pulumi.Input[_builtins.str] client_secret_ref: Reference to the Harness secret containing the ElasticSearch client secret. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
6986
7111
|
"""
|
|
6987
7112
|
pulumi.set(__self__, "client_id", client_id)
|
|
@@ -6991,7 +7116,7 @@ class ElasticsearchConnectorApiTokenArgs:
|
|
|
6991
7116
|
@pulumi.getter(name="clientId")
|
|
6992
7117
|
def client_id(self) -> pulumi.Input[_builtins.str]:
|
|
6993
7118
|
"""
|
|
6994
|
-
The
|
|
7119
|
+
The API Key id used for connecting to ElasticSearch.
|
|
6995
7120
|
"""
|
|
6996
7121
|
return pulumi.get(self, "client_id")
|
|
6997
7122
|
|
|
@@ -7178,11 +7303,11 @@ if not MYPY:
|
|
|
7178
7303
|
"""
|
|
7179
7304
|
commit_message: NotRequired[pulumi.Input[_builtins.str]]
|
|
7180
7305
|
"""
|
|
7181
|
-
message for the commit
|
|
7306
|
+
Commit message used for the merge commit.
|
|
7182
7307
|
"""
|
|
7183
7308
|
connector_ref: NotRequired[pulumi.Input[_builtins.str]]
|
|
7184
7309
|
"""
|
|
7185
|
-
Identifier of the Harness Connector used for
|
|
7310
|
+
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
7186
7311
|
"""
|
|
7187
7312
|
file_path: NotRequired[pulumi.Input[_builtins.str]]
|
|
7188
7313
|
"""
|
|
@@ -7190,11 +7315,11 @@ if not MYPY:
|
|
|
7190
7315
|
"""
|
|
7191
7316
|
import_from_git: NotRequired[pulumi.Input[_builtins.bool]]
|
|
7192
7317
|
"""
|
|
7193
|
-
|
|
7318
|
+
import environment from git
|
|
7194
7319
|
"""
|
|
7195
7320
|
is_force_import: NotRequired[pulumi.Input[_builtins.bool]]
|
|
7196
7321
|
"""
|
|
7197
|
-
|
|
7322
|
+
force import environment from remote even if same file path already exist
|
|
7198
7323
|
"""
|
|
7199
7324
|
is_harnesscode_repo: NotRequired[pulumi.Input[_builtins.bool]]
|
|
7200
7325
|
"""
|
|
@@ -7206,11 +7331,11 @@ if not MYPY:
|
|
|
7206
7331
|
"""
|
|
7207
7332
|
last_commit_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
7208
7333
|
"""
|
|
7209
|
-
Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
7334
|
+
Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
|
|
7210
7335
|
"""
|
|
7211
7336
|
last_object_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
7212
7337
|
"""
|
|
7213
|
-
Last object identifier (for Github). To be provided only when updating
|
|
7338
|
+
Last object identifier (for Github). To be provided only when updating Pipeline.
|
|
7214
7339
|
"""
|
|
7215
7340
|
load_from_cache: NotRequired[pulumi.Input[_builtins.str]]
|
|
7216
7341
|
"""
|
|
@@ -7218,7 +7343,7 @@ if not MYPY:
|
|
|
7218
7343
|
"""
|
|
7219
7344
|
load_from_fallback_branch: NotRequired[pulumi.Input[_builtins.bool]]
|
|
7220
7345
|
"""
|
|
7221
|
-
|
|
7346
|
+
If the Entity is to be fetched from fallbackBranch
|
|
7222
7347
|
"""
|
|
7223
7348
|
parent_entity_connector_ref: NotRequired[pulumi.Input[_builtins.str]]
|
|
7224
7349
|
"""
|
|
@@ -7234,7 +7359,7 @@ if not MYPY:
|
|
|
7234
7359
|
"""
|
|
7235
7360
|
store_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
7236
7361
|
"""
|
|
7237
|
-
|
|
7362
|
+
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
7238
7363
|
"""
|
|
7239
7364
|
elif False:
|
|
7240
7365
|
EnvironmentGitDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -7262,21 +7387,21 @@ class EnvironmentGitDetailsArgs:
|
|
|
7262
7387
|
"""
|
|
7263
7388
|
:param pulumi.Input[_builtins.str] base_branch: Name of the default branch (this checks out a new branch titled by branch_name).
|
|
7264
7389
|
:param pulumi.Input[_builtins.str] branch: Name of the branch.
|
|
7265
|
-
:param pulumi.Input[_builtins.str] commit_message: message for the commit
|
|
7266
|
-
:param pulumi.Input[_builtins.str] connector_ref: Identifier of the Harness Connector used for
|
|
7390
|
+
:param pulumi.Input[_builtins.str] commit_message: Commit message used for the merge commit.
|
|
7391
|
+
:param pulumi.Input[_builtins.str] connector_ref: Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
7267
7392
|
:param pulumi.Input[_builtins.str] file_path: File path of the Entity in the repository.
|
|
7268
|
-
:param pulumi.Input[_builtins.bool] import_from_git:
|
|
7269
|
-
:param pulumi.Input[_builtins.bool] is_force_import:
|
|
7393
|
+
:param pulumi.Input[_builtins.bool] import_from_git: import environment from git
|
|
7394
|
+
:param pulumi.Input[_builtins.bool] is_force_import: force import environment from remote even if same file path already exist
|
|
7270
7395
|
:param pulumi.Input[_builtins.bool] is_harnesscode_repo: If the gitProvider is HarnessCode
|
|
7271
7396
|
:param pulumi.Input[_builtins.bool] is_new_branch: If a new branch creation is requested.
|
|
7272
|
-
:param pulumi.Input[_builtins.str] last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
7273
|
-
:param pulumi.Input[_builtins.str] last_object_id: Last object identifier (for Github). To be provided only when updating
|
|
7397
|
+
:param pulumi.Input[_builtins.str] last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
|
|
7398
|
+
:param pulumi.Input[_builtins.str] last_object_id: Last object identifier (for Github). To be provided only when updating Pipeline.
|
|
7274
7399
|
:param pulumi.Input[_builtins.str] load_from_cache: If the Entity is to be fetched from cache
|
|
7275
|
-
:param pulumi.Input[_builtins.bool] load_from_fallback_branch:
|
|
7400
|
+
:param pulumi.Input[_builtins.bool] load_from_fallback_branch: If the Entity is to be fetched from fallbackBranch
|
|
7276
7401
|
:param pulumi.Input[_builtins.str] parent_entity_connector_ref: Identifier of the Harness Connector used for CRUD operations on the Parent Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
7277
7402
|
:param pulumi.Input[_builtins.str] parent_entity_repo_name: Name of the repository where parent entity lies.
|
|
7278
7403
|
:param pulumi.Input[_builtins.str] repo_name: Name of the repository.
|
|
7279
|
-
:param pulumi.Input[_builtins.str] store_type:
|
|
7404
|
+
:param pulumi.Input[_builtins.str] store_type: Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
7280
7405
|
"""
|
|
7281
7406
|
if base_branch is not None:
|
|
7282
7407
|
pulumi.set(__self__, "base_branch", base_branch)
|
|
@@ -7341,7 +7466,7 @@ class EnvironmentGitDetailsArgs:
|
|
|
7341
7466
|
@pulumi.getter(name="commitMessage")
|
|
7342
7467
|
def commit_message(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
7343
7468
|
"""
|
|
7344
|
-
message for the commit
|
|
7469
|
+
Commit message used for the merge commit.
|
|
7345
7470
|
"""
|
|
7346
7471
|
return pulumi.get(self, "commit_message")
|
|
7347
7472
|
|
|
@@ -7353,7 +7478,7 @@ class EnvironmentGitDetailsArgs:
|
|
|
7353
7478
|
@pulumi.getter(name="connectorRef")
|
|
7354
7479
|
def connector_ref(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
7355
7480
|
"""
|
|
7356
|
-
Identifier of the Harness Connector used for
|
|
7481
|
+
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
7357
7482
|
"""
|
|
7358
7483
|
return pulumi.get(self, "connector_ref")
|
|
7359
7484
|
|
|
@@ -7377,7 +7502,7 @@ class EnvironmentGitDetailsArgs:
|
|
|
7377
7502
|
@pulumi.getter(name="importFromGit")
|
|
7378
7503
|
def import_from_git(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
7379
7504
|
"""
|
|
7380
|
-
|
|
7505
|
+
import environment from git
|
|
7381
7506
|
"""
|
|
7382
7507
|
return pulumi.get(self, "import_from_git")
|
|
7383
7508
|
|
|
@@ -7389,7 +7514,7 @@ class EnvironmentGitDetailsArgs:
|
|
|
7389
7514
|
@pulumi.getter(name="isForceImport")
|
|
7390
7515
|
def is_force_import(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
7391
7516
|
"""
|
|
7392
|
-
|
|
7517
|
+
force import environment from remote even if same file path already exist
|
|
7393
7518
|
"""
|
|
7394
7519
|
return pulumi.get(self, "is_force_import")
|
|
7395
7520
|
|
|
@@ -7425,7 +7550,7 @@ class EnvironmentGitDetailsArgs:
|
|
|
7425
7550
|
@pulumi.getter(name="lastCommitId")
|
|
7426
7551
|
def last_commit_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
7427
7552
|
"""
|
|
7428
|
-
Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
7553
|
+
Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
|
|
7429
7554
|
"""
|
|
7430
7555
|
return pulumi.get(self, "last_commit_id")
|
|
7431
7556
|
|
|
@@ -7437,7 +7562,7 @@ class EnvironmentGitDetailsArgs:
|
|
|
7437
7562
|
@pulumi.getter(name="lastObjectId")
|
|
7438
7563
|
def last_object_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
7439
7564
|
"""
|
|
7440
|
-
Last object identifier (for Github). To be provided only when updating
|
|
7565
|
+
Last object identifier (for Github). To be provided only when updating Pipeline.
|
|
7441
7566
|
"""
|
|
7442
7567
|
return pulumi.get(self, "last_object_id")
|
|
7443
7568
|
|
|
@@ -7461,7 +7586,7 @@ class EnvironmentGitDetailsArgs:
|
|
|
7461
7586
|
@pulumi.getter(name="loadFromFallbackBranch")
|
|
7462
7587
|
def load_from_fallback_branch(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
7463
7588
|
"""
|
|
7464
|
-
|
|
7589
|
+
If the Entity is to be fetched from fallbackBranch
|
|
7465
7590
|
"""
|
|
7466
7591
|
return pulumi.get(self, "load_from_fallback_branch")
|
|
7467
7592
|
|
|
@@ -7509,7 +7634,7 @@ class EnvironmentGitDetailsArgs:
|
|
|
7509
7634
|
@pulumi.getter(name="storeType")
|
|
7510
7635
|
def store_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
7511
7636
|
"""
|
|
7512
|
-
|
|
7637
|
+
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
7513
7638
|
"""
|
|
7514
7639
|
return pulumi.get(self, "store_type")
|
|
7515
7640
|
|
|
@@ -7633,11 +7758,11 @@ if not MYPY:
|
|
|
7633
7758
|
class FeatureFlagEnvironmentAddTargetRuleArgsDict(TypedDict):
|
|
7634
7759
|
targets: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
7635
7760
|
"""
|
|
7636
|
-
The targets
|
|
7761
|
+
The targets that should be served this variation
|
|
7637
7762
|
"""
|
|
7638
7763
|
variation: NotRequired[pulumi.Input[_builtins.str]]
|
|
7639
7764
|
"""
|
|
7640
|
-
The identifier of the variation
|
|
7765
|
+
The identifier of the variation
|
|
7641
7766
|
"""
|
|
7642
7767
|
elif False:
|
|
7643
7768
|
FeatureFlagEnvironmentAddTargetRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -7648,8 +7773,8 @@ class FeatureFlagEnvironmentAddTargetRuleArgs:
|
|
|
7648
7773
|
targets: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
7649
7774
|
variation: Optional[pulumi.Input[_builtins.str]] = None):
|
|
7650
7775
|
"""
|
|
7651
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] targets: The targets
|
|
7652
|
-
:param pulumi.Input[_builtins.str] variation: The identifier of the variation
|
|
7776
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] targets: The targets that should be served this variation
|
|
7777
|
+
:param pulumi.Input[_builtins.str] variation: The identifier of the variation
|
|
7653
7778
|
"""
|
|
7654
7779
|
if targets is not None:
|
|
7655
7780
|
pulumi.set(__self__, "targets", targets)
|
|
@@ -7660,7 +7785,7 @@ class FeatureFlagEnvironmentAddTargetRuleArgs:
|
|
|
7660
7785
|
@pulumi.getter
|
|
7661
7786
|
def targets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
7662
7787
|
"""
|
|
7663
|
-
The targets
|
|
7788
|
+
The targets that should be served this variation
|
|
7664
7789
|
"""
|
|
7665
7790
|
return pulumi.get(self, "targets")
|
|
7666
7791
|
|
|
@@ -7672,7 +7797,7 @@ class FeatureFlagEnvironmentAddTargetRuleArgs:
|
|
|
7672
7797
|
@pulumi.getter
|
|
7673
7798
|
def variation(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
7674
7799
|
"""
|
|
7675
|
-
The identifier of the variation
|
|
7800
|
+
The identifier of the variation
|
|
7676
7801
|
"""
|
|
7677
7802
|
return pulumi.get(self, "variation")
|
|
7678
7803
|
|
|
@@ -7728,7 +7853,7 @@ if not MYPY:
|
|
|
7728
7853
|
"""
|
|
7729
7854
|
id: NotRequired[pulumi.Input[_builtins.str]]
|
|
7730
7855
|
"""
|
|
7731
|
-
The ID
|
|
7856
|
+
The rule ID. Gets auto-generated by the system
|
|
7732
7857
|
"""
|
|
7733
7858
|
negate: NotRequired[pulumi.Input[_builtins.bool]]
|
|
7734
7859
|
"""
|
|
@@ -7749,7 +7874,7 @@ class FeatureFlagTargetGroupRuleArgs:
|
|
|
7749
7874
|
:param pulumi.Input[_builtins.str] attribute: The attribute to use in the clause. This can be any target attribute
|
|
7750
7875
|
:param pulumi.Input[_builtins.str] op: The type of operation such as equals, starts_with, contains
|
|
7751
7876
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The values that are compared against the operator
|
|
7752
|
-
:param pulumi.Input[_builtins.str] id: The ID
|
|
7877
|
+
:param pulumi.Input[_builtins.str] id: The rule ID. Gets auto-generated by the system
|
|
7753
7878
|
:param pulumi.Input[_builtins.bool] negate: Is the operation negated?
|
|
7754
7879
|
"""
|
|
7755
7880
|
pulumi.set(__self__, "attribute", attribute)
|
|
@@ -7800,7 +7925,7 @@ class FeatureFlagTargetGroupRuleArgs:
|
|
|
7800
7925
|
@pulumi.getter
|
|
7801
7926
|
def id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
7802
7927
|
"""
|
|
7803
|
-
The ID
|
|
7928
|
+
The rule ID. Gets auto-generated by the system
|
|
7804
7929
|
"""
|
|
7805
7930
|
return pulumi.get(self, "id")
|
|
7806
7931
|
|
|
@@ -13816,7 +13941,7 @@ if not MYPY:
|
|
|
13816
13941
|
class GithubConnectorCredentialsHttpArgsDict(TypedDict):
|
|
13817
13942
|
anonymouses: NotRequired[pulumi.Input[Sequence[pulumi.Input['GithubConnectorCredentialsHttpAnonymouseArgsDict']]]]
|
|
13818
13943
|
"""
|
|
13819
|
-
Configuration for using the http anonymous
|
|
13944
|
+
Configuration for using the github http anonymous for interacting with the github api.
|
|
13820
13945
|
"""
|
|
13821
13946
|
github_app: NotRequired[pulumi.Input['GithubConnectorCredentialsHttpGithubAppArgsDict']]
|
|
13822
13947
|
"""
|
|
@@ -13846,7 +13971,7 @@ class GithubConnectorCredentialsHttpArgs:
|
|
|
13846
13971
|
username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
13847
13972
|
username_ref: Optional[pulumi.Input[_builtins.str]] = None):
|
|
13848
13973
|
"""
|
|
13849
|
-
:param pulumi.Input[Sequence[pulumi.Input['GithubConnectorCredentialsHttpAnonymouseArgs']]] anonymouses: Configuration for using the http anonymous
|
|
13974
|
+
:param pulumi.Input[Sequence[pulumi.Input['GithubConnectorCredentialsHttpAnonymouseArgs']]] anonymouses: Configuration for using the github http anonymous for interacting with the github api.
|
|
13850
13975
|
:param pulumi.Input['GithubConnectorCredentialsHttpGithubAppArgs'] github_app: Configuration for using the github app for interacting with the github api.
|
|
13851
13976
|
:param pulumi.Input[_builtins.str] token_ref: Reference to a secret containing the personal access to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
13852
13977
|
:param pulumi.Input[_builtins.str] username: Username to use for authentication.
|
|
@@ -13867,7 +13992,7 @@ class GithubConnectorCredentialsHttpArgs:
|
|
|
13867
13992
|
@pulumi.getter
|
|
13868
13993
|
def anonymouses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GithubConnectorCredentialsHttpAnonymouseArgs']]]]:
|
|
13869
13994
|
"""
|
|
13870
|
-
Configuration for using the http anonymous
|
|
13995
|
+
Configuration for using the github http anonymous for interacting with the github api.
|
|
13871
13996
|
"""
|
|
13872
13997
|
return pulumi.get(self, "anonymouses")
|
|
13873
13998
|
|
|
@@ -135281,7 +135406,7 @@ if not MYPY:
|
|
|
135281
135406
|
"""
|
|
135282
135407
|
source: NotRequired[pulumi.Input[_builtins.str]]
|
|
135283
135408
|
"""
|
|
135284
|
-
|
|
135409
|
+
Upstream source
|
|
135285
135410
|
"""
|
|
135286
135411
|
upstream_proxies: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
135287
135412
|
"""
|
|
@@ -135307,7 +135432,7 @@ class HarRegistryConfigArgs:
|
|
|
135307
135432
|
:param pulumi.Input[_builtins.str] type: Type of registry (VIRTUAL or UPSTREAM)
|
|
135308
135433
|
:param pulumi.Input[_builtins.str] auth_type: Type of authentication for UPSTREAM registry type (UserPassword, Anonymous)
|
|
135309
135434
|
:param pulumi.Input[Sequence[pulumi.Input['HarRegistryConfigAuthArgs']]] auths: Authentication configuration for UPSTREAM registry type
|
|
135310
|
-
:param pulumi.Input[_builtins.str] source:
|
|
135435
|
+
:param pulumi.Input[_builtins.str] source: Upstream source
|
|
135311
135436
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] upstream_proxies: List of upstream proxies for VIRTUAL registry type
|
|
135312
135437
|
:param pulumi.Input[_builtins.str] url: URL of the upstream (required if type=UPSTREAM & package_type=HELM)
|
|
135313
135438
|
"""
|
|
@@ -135363,7 +135488,7 @@ class HarRegistryConfigArgs:
|
|
|
135363
135488
|
@pulumi.getter
|
|
135364
135489
|
def source(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
135365
135490
|
"""
|
|
135366
|
-
|
|
135491
|
+
Upstream source
|
|
135367
135492
|
"""
|
|
135368
135493
|
return pulumi.get(self, "source")
|
|
135369
135494
|
|
|
@@ -135402,10 +135527,15 @@ if not MYPY:
|
|
|
135402
135527
|
"""
|
|
135403
135528
|
Type of authentication (UserPassword, Anonymous)
|
|
135404
135529
|
"""
|
|
135530
|
+
access_key: NotRequired[pulumi.Input[_builtins.str]]
|
|
135531
|
+
access_key_identifier: NotRequired[pulumi.Input[_builtins.str]]
|
|
135532
|
+
access_key_secret_path: NotRequired[pulumi.Input[_builtins.str]]
|
|
135405
135533
|
secret_identifier: NotRequired[pulumi.Input[_builtins.str]]
|
|
135406
135534
|
"""
|
|
135407
135535
|
Secret identifier for UserPassword auth type
|
|
135408
135536
|
"""
|
|
135537
|
+
secret_key_identifier: NotRequired[pulumi.Input[_builtins.str]]
|
|
135538
|
+
secret_key_secret_path: NotRequired[pulumi.Input[_builtins.str]]
|
|
135409
135539
|
secret_space_path: NotRequired[pulumi.Input[_builtins.str]]
|
|
135410
135540
|
"""
|
|
135411
135541
|
Secret space path for UserPassword auth type
|
|
@@ -135421,7 +135551,12 @@ elif False:
|
|
|
135421
135551
|
class HarRegistryConfigAuthArgs:
|
|
135422
135552
|
def __init__(__self__, *,
|
|
135423
135553
|
auth_type: pulumi.Input[_builtins.str],
|
|
135554
|
+
access_key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
135555
|
+
access_key_identifier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
135556
|
+
access_key_secret_path: Optional[pulumi.Input[_builtins.str]] = None,
|
|
135424
135557
|
secret_identifier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
135558
|
+
secret_key_identifier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
135559
|
+
secret_key_secret_path: Optional[pulumi.Input[_builtins.str]] = None,
|
|
135425
135560
|
secret_space_path: Optional[pulumi.Input[_builtins.str]] = None,
|
|
135426
135561
|
user_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
135427
135562
|
"""
|
|
@@ -135431,8 +135566,18 @@ class HarRegistryConfigAuthArgs:
|
|
|
135431
135566
|
:param pulumi.Input[_builtins.str] user_name: User name for UserPassword auth type
|
|
135432
135567
|
"""
|
|
135433
135568
|
pulumi.set(__self__, "auth_type", auth_type)
|
|
135569
|
+
if access_key is not None:
|
|
135570
|
+
pulumi.set(__self__, "access_key", access_key)
|
|
135571
|
+
if access_key_identifier is not None:
|
|
135572
|
+
pulumi.set(__self__, "access_key_identifier", access_key_identifier)
|
|
135573
|
+
if access_key_secret_path is not None:
|
|
135574
|
+
pulumi.set(__self__, "access_key_secret_path", access_key_secret_path)
|
|
135434
135575
|
if secret_identifier is not None:
|
|
135435
135576
|
pulumi.set(__self__, "secret_identifier", secret_identifier)
|
|
135577
|
+
if secret_key_identifier is not None:
|
|
135578
|
+
pulumi.set(__self__, "secret_key_identifier", secret_key_identifier)
|
|
135579
|
+
if secret_key_secret_path is not None:
|
|
135580
|
+
pulumi.set(__self__, "secret_key_secret_path", secret_key_secret_path)
|
|
135436
135581
|
if secret_space_path is not None:
|
|
135437
135582
|
pulumi.set(__self__, "secret_space_path", secret_space_path)
|
|
135438
135583
|
if user_name is not None:
|
|
@@ -135450,6 +135595,33 @@ class HarRegistryConfigAuthArgs:
|
|
|
135450
135595
|
def auth_type(self, value: pulumi.Input[_builtins.str]):
|
|
135451
135596
|
pulumi.set(self, "auth_type", value)
|
|
135452
135597
|
|
|
135598
|
+
@_builtins.property
|
|
135599
|
+
@pulumi.getter(name="accessKey")
|
|
135600
|
+
def access_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
135601
|
+
return pulumi.get(self, "access_key")
|
|
135602
|
+
|
|
135603
|
+
@access_key.setter
|
|
135604
|
+
def access_key(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
135605
|
+
pulumi.set(self, "access_key", value)
|
|
135606
|
+
|
|
135607
|
+
@_builtins.property
|
|
135608
|
+
@pulumi.getter(name="accessKeyIdentifier")
|
|
135609
|
+
def access_key_identifier(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
135610
|
+
return pulumi.get(self, "access_key_identifier")
|
|
135611
|
+
|
|
135612
|
+
@access_key_identifier.setter
|
|
135613
|
+
def access_key_identifier(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
135614
|
+
pulumi.set(self, "access_key_identifier", value)
|
|
135615
|
+
|
|
135616
|
+
@_builtins.property
|
|
135617
|
+
@pulumi.getter(name="accessKeySecretPath")
|
|
135618
|
+
def access_key_secret_path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
135619
|
+
return pulumi.get(self, "access_key_secret_path")
|
|
135620
|
+
|
|
135621
|
+
@access_key_secret_path.setter
|
|
135622
|
+
def access_key_secret_path(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
135623
|
+
pulumi.set(self, "access_key_secret_path", value)
|
|
135624
|
+
|
|
135453
135625
|
@_builtins.property
|
|
135454
135626
|
@pulumi.getter(name="secretIdentifier")
|
|
135455
135627
|
def secret_identifier(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -135462,6 +135634,24 @@ class HarRegistryConfigAuthArgs:
|
|
|
135462
135634
|
def secret_identifier(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
135463
135635
|
pulumi.set(self, "secret_identifier", value)
|
|
135464
135636
|
|
|
135637
|
+
@_builtins.property
|
|
135638
|
+
@pulumi.getter(name="secretKeyIdentifier")
|
|
135639
|
+
def secret_key_identifier(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
135640
|
+
return pulumi.get(self, "secret_key_identifier")
|
|
135641
|
+
|
|
135642
|
+
@secret_key_identifier.setter
|
|
135643
|
+
def secret_key_identifier(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
135644
|
+
pulumi.set(self, "secret_key_identifier", value)
|
|
135645
|
+
|
|
135646
|
+
@_builtins.property
|
|
135647
|
+
@pulumi.getter(name="secretKeySecretPath")
|
|
135648
|
+
def secret_key_secret_path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
135649
|
+
return pulumi.get(self, "secret_key_secret_path")
|
|
135650
|
+
|
|
135651
|
+
@secret_key_secret_path.setter
|
|
135652
|
+
def secret_key_secret_path(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
135653
|
+
pulumi.set(self, "secret_key_secret_path", value)
|
|
135654
|
+
|
|
135465
135655
|
@_builtins.property
|
|
135466
135656
|
@pulumi.getter(name="secretSpacePath")
|
|
135467
135657
|
def secret_space_path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -135562,11 +135752,11 @@ if not MYPY:
|
|
|
135562
135752
|
class InfraVariableSetConnectorArgsDict(TypedDict):
|
|
135563
135753
|
connector_ref: pulumi.Input[_builtins.str]
|
|
135564
135754
|
"""
|
|
135565
|
-
|
|
135755
|
+
Connector Ref is the reference to the connector
|
|
135566
135756
|
"""
|
|
135567
135757
|
type: pulumi.Input[_builtins.str]
|
|
135568
135758
|
"""
|
|
135569
|
-
Type
|
|
135759
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
135570
135760
|
"""
|
|
135571
135761
|
elif False:
|
|
135572
135762
|
InfraVariableSetConnectorArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -135577,8 +135767,8 @@ class InfraVariableSetConnectorArgs:
|
|
|
135577
135767
|
connector_ref: pulumi.Input[_builtins.str],
|
|
135578
135768
|
type: pulumi.Input[_builtins.str]):
|
|
135579
135769
|
"""
|
|
135580
|
-
:param pulumi.Input[_builtins.str] connector_ref:
|
|
135581
|
-
:param pulumi.Input[_builtins.str] type: Type
|
|
135770
|
+
:param pulumi.Input[_builtins.str] connector_ref: Connector Ref is the reference to the connector
|
|
135771
|
+
:param pulumi.Input[_builtins.str] type: Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
135582
135772
|
"""
|
|
135583
135773
|
pulumi.set(__self__, "connector_ref", connector_ref)
|
|
135584
135774
|
pulumi.set(__self__, "type", type)
|
|
@@ -135587,7 +135777,7 @@ class InfraVariableSetConnectorArgs:
|
|
|
135587
135777
|
@pulumi.getter(name="connectorRef")
|
|
135588
135778
|
def connector_ref(self) -> pulumi.Input[_builtins.str]:
|
|
135589
135779
|
"""
|
|
135590
|
-
|
|
135780
|
+
Connector Ref is the reference to the connector
|
|
135591
135781
|
"""
|
|
135592
135782
|
return pulumi.get(self, "connector_ref")
|
|
135593
135783
|
|
|
@@ -135599,7 +135789,7 @@ class InfraVariableSetConnectorArgs:
|
|
|
135599
135789
|
@pulumi.getter
|
|
135600
135790
|
def type(self) -> pulumi.Input[_builtins.str]:
|
|
135601
135791
|
"""
|
|
135602
|
-
Type
|
|
135792
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
135603
135793
|
"""
|
|
135604
135794
|
return pulumi.get(self, "type")
|
|
135605
135795
|
|
|
@@ -135612,7 +135802,7 @@ if not MYPY:
|
|
|
135612
135802
|
class InfraVariableSetEnvironmentVariableArgsDict(TypedDict):
|
|
135613
135803
|
key: pulumi.Input[_builtins.str]
|
|
135614
135804
|
"""
|
|
135615
|
-
Key is the identifier for the variable. Must be unique within the
|
|
135805
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
135616
135806
|
"""
|
|
135617
135807
|
value: pulumi.Input[_builtins.str]
|
|
135618
135808
|
"""
|
|
@@ -135632,7 +135822,7 @@ class InfraVariableSetEnvironmentVariableArgs:
|
|
|
135632
135822
|
value: pulumi.Input[_builtins.str],
|
|
135633
135823
|
value_type: pulumi.Input[_builtins.str]):
|
|
135634
135824
|
"""
|
|
135635
|
-
:param pulumi.Input[_builtins.str] key: Key is the identifier for the variable. Must be unique within the
|
|
135825
|
+
:param pulumi.Input[_builtins.str] key: Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
135636
135826
|
:param pulumi.Input[_builtins.str] value: Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
|
|
135637
135827
|
:param pulumi.Input[_builtins.str] value_type: Value type indicates the value type of the variable. Currently we support string and secret.
|
|
135638
135828
|
"""
|
|
@@ -135644,7 +135834,7 @@ class InfraVariableSetEnvironmentVariableArgs:
|
|
|
135644
135834
|
@pulumi.getter
|
|
135645
135835
|
def key(self) -> pulumi.Input[_builtins.str]:
|
|
135646
135836
|
"""
|
|
135647
|
-
Key is the identifier for the variable. Must be unique within the
|
|
135837
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
135648
135838
|
"""
|
|
135649
135839
|
return pulumi.get(self, "key")
|
|
135650
135840
|
|
|
@@ -135681,7 +135871,7 @@ if not MYPY:
|
|
|
135681
135871
|
class InfraVariableSetTerraformVariableArgsDict(TypedDict):
|
|
135682
135872
|
key: pulumi.Input[_builtins.str]
|
|
135683
135873
|
"""
|
|
135684
|
-
Key is the identifier for the variable. Must be unique within the
|
|
135874
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
135685
135875
|
"""
|
|
135686
135876
|
value: pulumi.Input[_builtins.str]
|
|
135687
135877
|
"""
|
|
@@ -135701,7 +135891,7 @@ class InfraVariableSetTerraformVariableArgs:
|
|
|
135701
135891
|
value: pulumi.Input[_builtins.str],
|
|
135702
135892
|
value_type: pulumi.Input[_builtins.str]):
|
|
135703
135893
|
"""
|
|
135704
|
-
:param pulumi.Input[_builtins.str] key: Key is the identifier for the variable. Must be unique within the
|
|
135894
|
+
:param pulumi.Input[_builtins.str] key: Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
135705
135895
|
:param pulumi.Input[_builtins.str] value: Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
|
|
135706
135896
|
:param pulumi.Input[_builtins.str] value_type: Value type indicates the value type of the variable. Currently we support string and secret.
|
|
135707
135897
|
"""
|
|
@@ -135713,7 +135903,7 @@ class InfraVariableSetTerraformVariableArgs:
|
|
|
135713
135903
|
@pulumi.getter
|
|
135714
135904
|
def key(self) -> pulumi.Input[_builtins.str]:
|
|
135715
135905
|
"""
|
|
135716
|
-
Key is the identifier for the variable. Must be unique within the
|
|
135906
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
135717
135907
|
"""
|
|
135718
135908
|
return pulumi.get(self, "key")
|
|
135719
135909
|
|
|
@@ -135770,7 +135960,7 @@ if not MYPY:
|
|
|
135770
135960
|
"""
|
|
135771
135961
|
repository_sha: NotRequired[pulumi.Input[_builtins.str]]
|
|
135772
135962
|
"""
|
|
135773
|
-
Repository commit is
|
|
135963
|
+
Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
135774
135964
|
"""
|
|
135775
135965
|
elif False:
|
|
135776
135966
|
InfraVariableSetTerraformVariableFileArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -135790,7 +135980,7 @@ class InfraVariableSetTerraformVariableFileArgs:
|
|
|
135790
135980
|
:param pulumi.Input[_builtins.str] repository_branch: Repository branch is the name of the branch to fetch the variables from. This cannot be set if repository commit or sha is set
|
|
135791
135981
|
:param pulumi.Input[_builtins.str] repository_commit: Repository commit is tag to fetch the variables from. This cannot be set if repository branch or sha is set.
|
|
135792
135982
|
:param pulumi.Input[_builtins.str] repository_path: Repository path is the path in which the variables reside.
|
|
135793
|
-
:param pulumi.Input[_builtins.str] repository_sha: Repository commit is
|
|
135983
|
+
:param pulumi.Input[_builtins.str] repository_sha: Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
135794
135984
|
"""
|
|
135795
135985
|
pulumi.set(__self__, "repository", repository)
|
|
135796
135986
|
pulumi.set(__self__, "repository_connector", repository_connector)
|
|
@@ -135867,7 +136057,7 @@ class InfraVariableSetTerraformVariableFileArgs:
|
|
|
135867
136057
|
@pulumi.getter(name="repositorySha")
|
|
135868
136058
|
def repository_sha(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
135869
136059
|
"""
|
|
135870
|
-
Repository commit is
|
|
136060
|
+
Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
135871
136061
|
"""
|
|
135872
136062
|
return pulumi.get(self, "repository_sha")
|
|
135873
136063
|
|
|
@@ -135888,11 +136078,11 @@ if not MYPY:
|
|
|
135888
136078
|
"""
|
|
135889
136079
|
commit_message: NotRequired[pulumi.Input[_builtins.str]]
|
|
135890
136080
|
"""
|
|
135891
|
-
message for the commit
|
|
136081
|
+
Commit message used for the merge commit.
|
|
135892
136082
|
"""
|
|
135893
136083
|
connector_ref: NotRequired[pulumi.Input[_builtins.str]]
|
|
135894
136084
|
"""
|
|
135895
|
-
Identifier of the Harness Connector used for
|
|
136085
|
+
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
135896
136086
|
"""
|
|
135897
136087
|
file_path: NotRequired[pulumi.Input[_builtins.str]]
|
|
135898
136088
|
"""
|
|
@@ -135900,11 +136090,11 @@ if not MYPY:
|
|
|
135900
136090
|
"""
|
|
135901
136091
|
import_from_git: NotRequired[pulumi.Input[_builtins.bool]]
|
|
135902
136092
|
"""
|
|
135903
|
-
|
|
136093
|
+
import infrastructure from git
|
|
135904
136094
|
"""
|
|
135905
136095
|
is_force_import: NotRequired[pulumi.Input[_builtins.bool]]
|
|
135906
136096
|
"""
|
|
135907
|
-
|
|
136097
|
+
force import infrastructure from remote even if same file path already exist
|
|
135908
136098
|
"""
|
|
135909
136099
|
is_harnesscode_repo: NotRequired[pulumi.Input[_builtins.bool]]
|
|
135910
136100
|
"""
|
|
@@ -135916,11 +136106,11 @@ if not MYPY:
|
|
|
135916
136106
|
"""
|
|
135917
136107
|
last_commit_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
135918
136108
|
"""
|
|
135919
|
-
Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
136109
|
+
Last commit identifier (for Git Repositories other than Github). To be provided only when updating infrastructure.
|
|
135920
136110
|
"""
|
|
135921
136111
|
last_object_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
135922
136112
|
"""
|
|
135923
|
-
Last object identifier (for Github). To be provided only when updating
|
|
136113
|
+
Last object identifier (for Github). To be provided only when updating infrastructure.
|
|
135924
136114
|
"""
|
|
135925
136115
|
load_from_cache: NotRequired[pulumi.Input[_builtins.str]]
|
|
135926
136116
|
"""
|
|
@@ -135928,7 +136118,7 @@ if not MYPY:
|
|
|
135928
136118
|
"""
|
|
135929
136119
|
load_from_fallback_branch: NotRequired[pulumi.Input[_builtins.bool]]
|
|
135930
136120
|
"""
|
|
135931
|
-
|
|
136121
|
+
If the Entity is to be fetched from fallbackBranch
|
|
135932
136122
|
"""
|
|
135933
136123
|
parent_entity_connector_ref: NotRequired[pulumi.Input[_builtins.str]]
|
|
135934
136124
|
"""
|
|
@@ -135944,7 +136134,7 @@ if not MYPY:
|
|
|
135944
136134
|
"""
|
|
135945
136135
|
store_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
135946
136136
|
"""
|
|
135947
|
-
|
|
136137
|
+
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
135948
136138
|
"""
|
|
135949
136139
|
elif False:
|
|
135950
136140
|
InfrastructureGitDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -135972,21 +136162,21 @@ class InfrastructureGitDetailsArgs:
|
|
|
135972
136162
|
"""
|
|
135973
136163
|
:param pulumi.Input[_builtins.str] base_branch: Name of the default branch (this checks out a new branch titled by branch_name).
|
|
135974
136164
|
:param pulumi.Input[_builtins.str] branch: Name of the branch.
|
|
135975
|
-
:param pulumi.Input[_builtins.str] commit_message: message for the commit
|
|
135976
|
-
:param pulumi.Input[_builtins.str] connector_ref: Identifier of the Harness Connector used for
|
|
136165
|
+
:param pulumi.Input[_builtins.str] commit_message: Commit message used for the merge commit.
|
|
136166
|
+
:param pulumi.Input[_builtins.str] connector_ref: Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
135977
136167
|
:param pulumi.Input[_builtins.str] file_path: File path of the Entity in the repository.
|
|
135978
|
-
:param pulumi.Input[_builtins.bool] import_from_git:
|
|
135979
|
-
:param pulumi.Input[_builtins.bool] is_force_import:
|
|
136168
|
+
:param pulumi.Input[_builtins.bool] import_from_git: import infrastructure from git
|
|
136169
|
+
:param pulumi.Input[_builtins.bool] is_force_import: force import infrastructure from remote even if same file path already exist
|
|
135980
136170
|
:param pulumi.Input[_builtins.bool] is_harnesscode_repo: If the gitProvider is HarnessCode
|
|
135981
136171
|
:param pulumi.Input[_builtins.bool] is_new_branch: If a new branch creation is requested.
|
|
135982
|
-
:param pulumi.Input[_builtins.str] last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
135983
|
-
:param pulumi.Input[_builtins.str] last_object_id: Last object identifier (for Github). To be provided only when updating
|
|
136172
|
+
:param pulumi.Input[_builtins.str] last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating infrastructure.
|
|
136173
|
+
:param pulumi.Input[_builtins.str] last_object_id: Last object identifier (for Github). To be provided only when updating infrastructure.
|
|
135984
136174
|
:param pulumi.Input[_builtins.str] load_from_cache: If the Entity is to be fetched from cache
|
|
135985
|
-
:param pulumi.Input[_builtins.bool] load_from_fallback_branch:
|
|
136175
|
+
:param pulumi.Input[_builtins.bool] load_from_fallback_branch: If the Entity is to be fetched from fallbackBranch
|
|
135986
136176
|
:param pulumi.Input[_builtins.str] parent_entity_connector_ref: Identifier of the Harness Connector used for CRUD operations on the Parent Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
135987
136177
|
:param pulumi.Input[_builtins.str] parent_entity_repo_name: Name of the repository where parent entity lies.
|
|
135988
136178
|
:param pulumi.Input[_builtins.str] repo_name: Name of the repository.
|
|
135989
|
-
:param pulumi.Input[_builtins.str] store_type:
|
|
136179
|
+
:param pulumi.Input[_builtins.str] store_type: Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
135990
136180
|
"""
|
|
135991
136181
|
if base_branch is not None:
|
|
135992
136182
|
pulumi.set(__self__, "base_branch", base_branch)
|
|
@@ -136051,7 +136241,7 @@ class InfrastructureGitDetailsArgs:
|
|
|
136051
136241
|
@pulumi.getter(name="commitMessage")
|
|
136052
136242
|
def commit_message(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
136053
136243
|
"""
|
|
136054
|
-
message for the commit
|
|
136244
|
+
Commit message used for the merge commit.
|
|
136055
136245
|
"""
|
|
136056
136246
|
return pulumi.get(self, "commit_message")
|
|
136057
136247
|
|
|
@@ -136063,7 +136253,7 @@ class InfrastructureGitDetailsArgs:
|
|
|
136063
136253
|
@pulumi.getter(name="connectorRef")
|
|
136064
136254
|
def connector_ref(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
136065
136255
|
"""
|
|
136066
|
-
Identifier of the Harness Connector used for
|
|
136256
|
+
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
136067
136257
|
"""
|
|
136068
136258
|
return pulumi.get(self, "connector_ref")
|
|
136069
136259
|
|
|
@@ -136087,7 +136277,7 @@ class InfrastructureGitDetailsArgs:
|
|
|
136087
136277
|
@pulumi.getter(name="importFromGit")
|
|
136088
136278
|
def import_from_git(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
136089
136279
|
"""
|
|
136090
|
-
|
|
136280
|
+
import infrastructure from git
|
|
136091
136281
|
"""
|
|
136092
136282
|
return pulumi.get(self, "import_from_git")
|
|
136093
136283
|
|
|
@@ -136099,7 +136289,7 @@ class InfrastructureGitDetailsArgs:
|
|
|
136099
136289
|
@pulumi.getter(name="isForceImport")
|
|
136100
136290
|
def is_force_import(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
136101
136291
|
"""
|
|
136102
|
-
|
|
136292
|
+
force import infrastructure from remote even if same file path already exist
|
|
136103
136293
|
"""
|
|
136104
136294
|
return pulumi.get(self, "is_force_import")
|
|
136105
136295
|
|
|
@@ -136135,7 +136325,7 @@ class InfrastructureGitDetailsArgs:
|
|
|
136135
136325
|
@pulumi.getter(name="lastCommitId")
|
|
136136
136326
|
def last_commit_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
136137
136327
|
"""
|
|
136138
|
-
Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
136328
|
+
Last commit identifier (for Git Repositories other than Github). To be provided only when updating infrastructure.
|
|
136139
136329
|
"""
|
|
136140
136330
|
return pulumi.get(self, "last_commit_id")
|
|
136141
136331
|
|
|
@@ -136147,7 +136337,7 @@ class InfrastructureGitDetailsArgs:
|
|
|
136147
136337
|
@pulumi.getter(name="lastObjectId")
|
|
136148
136338
|
def last_object_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
136149
136339
|
"""
|
|
136150
|
-
Last object identifier (for Github). To be provided only when updating
|
|
136340
|
+
Last object identifier (for Github). To be provided only when updating infrastructure.
|
|
136151
136341
|
"""
|
|
136152
136342
|
return pulumi.get(self, "last_object_id")
|
|
136153
136343
|
|
|
@@ -136171,7 +136361,7 @@ class InfrastructureGitDetailsArgs:
|
|
|
136171
136361
|
@pulumi.getter(name="loadFromFallbackBranch")
|
|
136172
136362
|
def load_from_fallback_branch(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
136173
136363
|
"""
|
|
136174
|
-
|
|
136364
|
+
If the Entity is to be fetched from fallbackBranch
|
|
136175
136365
|
"""
|
|
136176
136366
|
return pulumi.get(self, "load_from_fallback_branch")
|
|
136177
136367
|
|
|
@@ -136219,7 +136409,7 @@ class InfrastructureGitDetailsArgs:
|
|
|
136219
136409
|
@pulumi.getter(name="storeType")
|
|
136220
136410
|
def store_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
136221
136411
|
"""
|
|
136222
|
-
|
|
136412
|
+
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
136223
136413
|
"""
|
|
136224
136414
|
return pulumi.get(self, "store_type")
|
|
136225
136415
|
|
|
@@ -136743,7 +136933,7 @@ if not MYPY:
|
|
|
136743
136933
|
class JenkinsConnectorAuthJenkinsUserNamePasswordArgsDict(TypedDict):
|
|
136744
136934
|
password_ref: pulumi.Input[_builtins.str]
|
|
136745
136935
|
"""
|
|
136746
|
-
Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
136936
|
+
Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
136747
136937
|
"""
|
|
136748
136938
|
username: NotRequired[pulumi.Input[_builtins.str]]
|
|
136749
136939
|
"""
|
|
@@ -136763,7 +136953,7 @@ class JenkinsConnectorAuthJenkinsUserNamePasswordArgs:
|
|
|
136763
136953
|
username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
136764
136954
|
username_ref: Optional[pulumi.Input[_builtins.str]] = None):
|
|
136765
136955
|
"""
|
|
136766
|
-
:param pulumi.Input[_builtins.str] password_ref: Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
136956
|
+
:param pulumi.Input[_builtins.str] password_ref: Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
136767
136957
|
:param pulumi.Input[_builtins.str] username: Username to use for authentication.
|
|
136768
136958
|
:param pulumi.Input[_builtins.str] username_ref: Username reference to use for authentication.
|
|
136769
136959
|
"""
|
|
@@ -136777,7 +136967,7 @@ class JenkinsConnectorAuthJenkinsUserNamePasswordArgs:
|
|
|
136777
136967
|
@pulumi.getter(name="passwordRef")
|
|
136778
136968
|
def password_ref(self) -> pulumi.Input[_builtins.str]:
|
|
136779
136969
|
"""
|
|
136780
|
-
Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
136970
|
+
Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
136781
136971
|
"""
|
|
136782
136972
|
return pulumi.get(self, "password_ref")
|
|
136783
136973
|
|
|
@@ -137474,11 +137664,11 @@ if not MYPY:
|
|
|
137474
137664
|
class ManualFreezeCurrentOrUpcomingWindowArgsDict(TypedDict):
|
|
137475
137665
|
end_time: NotRequired[pulumi.Input[_builtins.int]]
|
|
137476
137666
|
"""
|
|
137477
|
-
End time of the freeze
|
|
137667
|
+
End time of the freeze window
|
|
137478
137668
|
"""
|
|
137479
137669
|
start_time: NotRequired[pulumi.Input[_builtins.int]]
|
|
137480
137670
|
"""
|
|
137481
|
-
Start time of the freeze
|
|
137671
|
+
Start time of the freeze window
|
|
137482
137672
|
"""
|
|
137483
137673
|
elif False:
|
|
137484
137674
|
ManualFreezeCurrentOrUpcomingWindowArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -137489,8 +137679,8 @@ class ManualFreezeCurrentOrUpcomingWindowArgs:
|
|
|
137489
137679
|
end_time: Optional[pulumi.Input[_builtins.int]] = None,
|
|
137490
137680
|
start_time: Optional[pulumi.Input[_builtins.int]] = None):
|
|
137491
137681
|
"""
|
|
137492
|
-
:param pulumi.Input[_builtins.int] end_time: End time of the freeze
|
|
137493
|
-
:param pulumi.Input[_builtins.int] start_time: Start time of the freeze
|
|
137682
|
+
:param pulumi.Input[_builtins.int] end_time: End time of the freeze window
|
|
137683
|
+
:param pulumi.Input[_builtins.int] start_time: Start time of the freeze window
|
|
137494
137684
|
"""
|
|
137495
137685
|
if end_time is not None:
|
|
137496
137686
|
pulumi.set(__self__, "end_time", end_time)
|
|
@@ -137501,7 +137691,7 @@ class ManualFreezeCurrentOrUpcomingWindowArgs:
|
|
|
137501
137691
|
@pulumi.getter(name="endTime")
|
|
137502
137692
|
def end_time(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
137503
137693
|
"""
|
|
137504
|
-
End time of the freeze
|
|
137694
|
+
End time of the freeze window
|
|
137505
137695
|
"""
|
|
137506
137696
|
return pulumi.get(self, "end_time")
|
|
137507
137697
|
|
|
@@ -137513,7 +137703,7 @@ class ManualFreezeCurrentOrUpcomingWindowArgs:
|
|
|
137513
137703
|
@pulumi.getter(name="startTime")
|
|
137514
137704
|
def start_time(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
137515
137705
|
"""
|
|
137516
|
-
Start time of the freeze
|
|
137706
|
+
Start time of the freeze window
|
|
137517
137707
|
"""
|
|
137518
137708
|
return pulumi.get(self, "start_time")
|
|
137519
137709
|
|
|
@@ -137526,11 +137716,11 @@ if not MYPY:
|
|
|
137526
137716
|
class ManualFreezeFreezeWindowArgsDict(TypedDict):
|
|
137527
137717
|
duration: NotRequired[pulumi.Input[_builtins.str]]
|
|
137528
137718
|
"""
|
|
137529
|
-
Duration of the freeze
|
|
137719
|
+
Duration of the freeze window
|
|
137530
137720
|
"""
|
|
137531
137721
|
end_time: NotRequired[pulumi.Input[_builtins.str]]
|
|
137532
137722
|
"""
|
|
137533
|
-
End
|
|
137723
|
+
End Time of the freeze window
|
|
137534
137724
|
"""
|
|
137535
137725
|
recurrences: NotRequired[pulumi.Input[Sequence[pulumi.Input['ManualFreezeFreezeWindowRecurrenceArgsDict']]]]
|
|
137536
137726
|
"""
|
|
@@ -137538,11 +137728,11 @@ if not MYPY:
|
|
|
137538
137728
|
"""
|
|
137539
137729
|
start_time: NotRequired[pulumi.Input[_builtins.str]]
|
|
137540
137730
|
"""
|
|
137541
|
-
Start
|
|
137731
|
+
Start Time of the freeze window
|
|
137542
137732
|
"""
|
|
137543
137733
|
time_zone: NotRequired[pulumi.Input[_builtins.str]]
|
|
137544
137734
|
"""
|
|
137545
|
-
|
|
137735
|
+
Time zone of the freeze window
|
|
137546
137736
|
"""
|
|
137547
137737
|
elif False:
|
|
137548
137738
|
ManualFreezeFreezeWindowArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -137556,11 +137746,11 @@ class ManualFreezeFreezeWindowArgs:
|
|
|
137556
137746
|
start_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
137557
137747
|
time_zone: Optional[pulumi.Input[_builtins.str]] = None):
|
|
137558
137748
|
"""
|
|
137559
|
-
:param pulumi.Input[_builtins.str] duration: Duration of the freeze
|
|
137560
|
-
:param pulumi.Input[_builtins.str] end_time: End
|
|
137749
|
+
:param pulumi.Input[_builtins.str] duration: Duration of the freeze window
|
|
137750
|
+
:param pulumi.Input[_builtins.str] end_time: End Time of the freeze window
|
|
137561
137751
|
:param pulumi.Input[Sequence[pulumi.Input['ManualFreezeFreezeWindowRecurrenceArgs']]] recurrences: Recurrence of the freeze window
|
|
137562
|
-
:param pulumi.Input[_builtins.str] start_time: Start
|
|
137563
|
-
:param pulumi.Input[_builtins.str] time_zone:
|
|
137752
|
+
:param pulumi.Input[_builtins.str] start_time: Start Time of the freeze window
|
|
137753
|
+
:param pulumi.Input[_builtins.str] time_zone: Time zone of the freeze window
|
|
137564
137754
|
"""
|
|
137565
137755
|
if duration is not None:
|
|
137566
137756
|
pulumi.set(__self__, "duration", duration)
|
|
@@ -137577,7 +137767,7 @@ class ManualFreezeFreezeWindowArgs:
|
|
|
137577
137767
|
@pulumi.getter
|
|
137578
137768
|
def duration(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
137579
137769
|
"""
|
|
137580
|
-
Duration of the freeze
|
|
137770
|
+
Duration of the freeze window
|
|
137581
137771
|
"""
|
|
137582
137772
|
return pulumi.get(self, "duration")
|
|
137583
137773
|
|
|
@@ -137589,7 +137779,7 @@ class ManualFreezeFreezeWindowArgs:
|
|
|
137589
137779
|
@pulumi.getter(name="endTime")
|
|
137590
137780
|
def end_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
137591
137781
|
"""
|
|
137592
|
-
End
|
|
137782
|
+
End Time of the freeze window
|
|
137593
137783
|
"""
|
|
137594
137784
|
return pulumi.get(self, "end_time")
|
|
137595
137785
|
|
|
@@ -137613,7 +137803,7 @@ class ManualFreezeFreezeWindowArgs:
|
|
|
137613
137803
|
@pulumi.getter(name="startTime")
|
|
137614
137804
|
def start_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
137615
137805
|
"""
|
|
137616
|
-
Start
|
|
137806
|
+
Start Time of the freeze window
|
|
137617
137807
|
"""
|
|
137618
137808
|
return pulumi.get(self, "start_time")
|
|
137619
137809
|
|
|
@@ -137625,7 +137815,7 @@ class ManualFreezeFreezeWindowArgs:
|
|
|
137625
137815
|
@pulumi.getter(name="timeZone")
|
|
137626
137816
|
def time_zone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
137627
137817
|
"""
|
|
137628
|
-
|
|
137818
|
+
Time zone of the freeze window
|
|
137629
137819
|
"""
|
|
137630
137820
|
return pulumi.get(self, "time_zone")
|
|
137631
137821
|
|
|
@@ -137642,7 +137832,7 @@ if not MYPY:
|
|
|
137642
137832
|
"""
|
|
137643
137833
|
type: NotRequired[pulumi.Input[_builtins.str]]
|
|
137644
137834
|
"""
|
|
137645
|
-
|
|
137835
|
+
Type of the recurrence
|
|
137646
137836
|
"""
|
|
137647
137837
|
elif False:
|
|
137648
137838
|
ManualFreezeFreezeWindowRecurrenceArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -137654,7 +137844,7 @@ class ManualFreezeFreezeWindowRecurrenceArgs:
|
|
|
137654
137844
|
type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
137655
137845
|
"""
|
|
137656
137846
|
:param pulumi.Input[Sequence[pulumi.Input['ManualFreezeFreezeWindowRecurrenceRecurrenceSpecArgs']]] recurrence_specs: Used to filter resources on their attributes
|
|
137657
|
-
:param pulumi.Input[_builtins.str] type:
|
|
137847
|
+
:param pulumi.Input[_builtins.str] type: Type of the recurrence
|
|
137658
137848
|
"""
|
|
137659
137849
|
if recurrence_specs is not None:
|
|
137660
137850
|
pulumi.set(__self__, "recurrence_specs", recurrence_specs)
|
|
@@ -137677,7 +137867,7 @@ class ManualFreezeFreezeWindowRecurrenceArgs:
|
|
|
137677
137867
|
@pulumi.getter
|
|
137678
137868
|
def type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
137679
137869
|
"""
|
|
137680
|
-
|
|
137870
|
+
Type of the recurrence
|
|
137681
137871
|
"""
|
|
137682
137872
|
return pulumi.get(self, "type")
|
|
137683
137873
|
|
|
@@ -137690,11 +137880,11 @@ if not MYPY:
|
|
|
137690
137880
|
class ManualFreezeFreezeWindowRecurrenceRecurrenceSpecArgsDict(TypedDict):
|
|
137691
137881
|
until: NotRequired[pulumi.Input[_builtins.str]]
|
|
137692
137882
|
"""
|
|
137693
|
-
|
|
137883
|
+
Time till which freeze window recurrs
|
|
137694
137884
|
"""
|
|
137695
137885
|
value: NotRequired[pulumi.Input[_builtins.int]]
|
|
137696
137886
|
"""
|
|
137697
|
-
|
|
137887
|
+
Every n months recurrence
|
|
137698
137888
|
"""
|
|
137699
137889
|
elif False:
|
|
137700
137890
|
ManualFreezeFreezeWindowRecurrenceRecurrenceSpecArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -137705,8 +137895,8 @@ class ManualFreezeFreezeWindowRecurrenceRecurrenceSpecArgs:
|
|
|
137705
137895
|
until: Optional[pulumi.Input[_builtins.str]] = None,
|
|
137706
137896
|
value: Optional[pulumi.Input[_builtins.int]] = None):
|
|
137707
137897
|
"""
|
|
137708
|
-
:param pulumi.Input[_builtins.str] until:
|
|
137709
|
-
:param pulumi.Input[_builtins.int] value:
|
|
137898
|
+
:param pulumi.Input[_builtins.str] until: Time till which freeze window recurrs
|
|
137899
|
+
:param pulumi.Input[_builtins.int] value: Every n months recurrence
|
|
137710
137900
|
"""
|
|
137711
137901
|
if until is not None:
|
|
137712
137902
|
pulumi.set(__self__, "until", until)
|
|
@@ -137717,7 +137907,7 @@ class ManualFreezeFreezeWindowRecurrenceRecurrenceSpecArgs:
|
|
|
137717
137907
|
@pulumi.getter
|
|
137718
137908
|
def until(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
137719
137909
|
"""
|
|
137720
|
-
|
|
137910
|
+
Time till which freeze window recurrs
|
|
137721
137911
|
"""
|
|
137722
137912
|
return pulumi.get(self, "until")
|
|
137723
137913
|
|
|
@@ -137729,7 +137919,7 @@ class ManualFreezeFreezeWindowRecurrenceRecurrenceSpecArgs:
|
|
|
137729
137919
|
@pulumi.getter
|
|
137730
137920
|
def value(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
137731
137921
|
"""
|
|
137732
|
-
|
|
137922
|
+
Every n months recurrence
|
|
137733
137923
|
"""
|
|
137734
137924
|
return pulumi.get(self, "value")
|
|
137735
137925
|
|
|
@@ -138390,7 +138580,7 @@ if not MYPY:
|
|
|
138390
138580
|
class NexusConnectorCredentialsArgsDict(TypedDict):
|
|
138391
138581
|
password_ref: pulumi.Input[_builtins.str]
|
|
138392
138582
|
"""
|
|
138393
|
-
Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
138583
|
+
Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
138394
138584
|
"""
|
|
138395
138585
|
username: NotRequired[pulumi.Input[_builtins.str]]
|
|
138396
138586
|
"""
|
|
@@ -138410,7 +138600,7 @@ class NexusConnectorCredentialsArgs:
|
|
|
138410
138600
|
username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
138411
138601
|
username_ref: Optional[pulumi.Input[_builtins.str]] = None):
|
|
138412
138602
|
"""
|
|
138413
|
-
:param pulumi.Input[_builtins.str] password_ref: Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
138603
|
+
:param pulumi.Input[_builtins.str] password_ref: Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
138414
138604
|
:param pulumi.Input[_builtins.str] username: Username to use for authentication.
|
|
138415
138605
|
:param pulumi.Input[_builtins.str] username_ref: Reference to a secret containing the username to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
138416
138606
|
"""
|
|
@@ -138424,7 +138614,7 @@ class NexusConnectorCredentialsArgs:
|
|
|
138424
138614
|
@pulumi.getter(name="passwordRef")
|
|
138425
138615
|
def password_ref(self) -> pulumi.Input[_builtins.str]:
|
|
138426
138616
|
"""
|
|
138427
|
-
Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
138617
|
+
Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
138428
138618
|
"""
|
|
138429
138619
|
return pulumi.get(self, "password_ref")
|
|
138430
138620
|
|
|
@@ -142896,7 +143086,7 @@ if not MYPY:
|
|
|
142896
143086
|
"""
|
|
142897
143087
|
reference_token: NotRequired[pulumi.Input[_builtins.str]]
|
|
142898
143088
|
"""
|
|
142899
|
-
Reference
|
|
143089
|
+
Reference token for authentication.
|
|
142900
143090
|
"""
|
|
142901
143091
|
username: NotRequired[pulumi.Input[_builtins.str]]
|
|
142902
143092
|
"""
|
|
@@ -142920,7 +143110,7 @@ class TasConnectorCredentialsTasManualDetailsArgs:
|
|
|
142920
143110
|
"""
|
|
142921
143111
|
:param pulumi.Input[_builtins.str] endpoint_url: URL of the Tas server.
|
|
142922
143112
|
:param pulumi.Input[_builtins.str] password_ref: Reference of the secret for the password. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
142923
|
-
:param pulumi.Input[_builtins.str] reference_token: Reference
|
|
143113
|
+
:param pulumi.Input[_builtins.str] reference_token: Reference token for authentication.
|
|
142924
143114
|
:param pulumi.Input[_builtins.str] username: Username to use for authentication.
|
|
142925
143115
|
:param pulumi.Input[_builtins.str] username_ref: Reference to a secret containing the username to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
142926
143116
|
"""
|
|
@@ -142961,7 +143151,7 @@ class TasConnectorCredentialsTasManualDetailsArgs:
|
|
|
142961
143151
|
@pulumi.getter(name="referenceToken")
|
|
142962
143152
|
def reference_token(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
142963
143153
|
"""
|
|
142964
|
-
Reference
|
|
143154
|
+
Reference token for authentication.
|
|
142965
143155
|
"""
|
|
142966
143156
|
return pulumi.get(self, "reference_token")
|
|
142967
143157
|
|
|
@@ -143774,11 +143964,11 @@ if not MYPY:
|
|
|
143774
143964
|
class WorkspaceConnectorArgsDict(TypedDict):
|
|
143775
143965
|
connector_ref: pulumi.Input[_builtins.str]
|
|
143776
143966
|
"""
|
|
143777
|
-
|
|
143967
|
+
Connector Ref is the reference to the connector
|
|
143778
143968
|
"""
|
|
143779
143969
|
type: pulumi.Input[_builtins.str]
|
|
143780
143970
|
"""
|
|
143781
|
-
Type
|
|
143971
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
143782
143972
|
"""
|
|
143783
143973
|
elif False:
|
|
143784
143974
|
WorkspaceConnectorArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -143789,8 +143979,8 @@ class WorkspaceConnectorArgs:
|
|
|
143789
143979
|
connector_ref: pulumi.Input[_builtins.str],
|
|
143790
143980
|
type: pulumi.Input[_builtins.str]):
|
|
143791
143981
|
"""
|
|
143792
|
-
:param pulumi.Input[_builtins.str] connector_ref:
|
|
143793
|
-
:param pulumi.Input[_builtins.str] type: Type
|
|
143982
|
+
:param pulumi.Input[_builtins.str] connector_ref: Connector Ref is the reference to the connector
|
|
143983
|
+
:param pulumi.Input[_builtins.str] type: Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
143794
143984
|
"""
|
|
143795
143985
|
pulumi.set(__self__, "connector_ref", connector_ref)
|
|
143796
143986
|
pulumi.set(__self__, "type", type)
|
|
@@ -143799,7 +143989,7 @@ class WorkspaceConnectorArgs:
|
|
|
143799
143989
|
@pulumi.getter(name="connectorRef")
|
|
143800
143990
|
def connector_ref(self) -> pulumi.Input[_builtins.str]:
|
|
143801
143991
|
"""
|
|
143802
|
-
|
|
143992
|
+
Connector Ref is the reference to the connector
|
|
143803
143993
|
"""
|
|
143804
143994
|
return pulumi.get(self, "connector_ref")
|
|
143805
143995
|
|
|
@@ -143811,7 +144001,7 @@ class WorkspaceConnectorArgs:
|
|
|
143811
144001
|
@pulumi.getter
|
|
143812
144002
|
def type(self) -> pulumi.Input[_builtins.str]:
|
|
143813
144003
|
"""
|
|
143814
|
-
Type
|
|
144004
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
143815
144005
|
"""
|
|
143816
144006
|
return pulumi.get(self, "type")
|
|
143817
144007
|
|
|
@@ -144626,182 +144816,6 @@ class GetConnectorRancherBearerTokenArgs:
|
|
|
144626
144816
|
pulumi.set(self, "rancher_url", value)
|
|
144627
144817
|
|
|
144628
144818
|
|
|
144629
|
-
if not MYPY:
|
|
144630
|
-
class GetDbSchemaChangelogScriptArgsDict(TypedDict):
|
|
144631
|
-
command: _builtins.str
|
|
144632
|
-
"""
|
|
144633
|
-
Script to clone changeSets
|
|
144634
|
-
"""
|
|
144635
|
-
image: _builtins.str
|
|
144636
|
-
"""
|
|
144637
|
-
The fully-qualified name (FQN) of the image
|
|
144638
|
-
"""
|
|
144639
|
-
location: _builtins.str
|
|
144640
|
-
"""
|
|
144641
|
-
Path to changeLog file
|
|
144642
|
-
"""
|
|
144643
|
-
shell: _builtins.str
|
|
144644
|
-
"""
|
|
144645
|
-
Type of the shell. For example Sh or Bash
|
|
144646
|
-
"""
|
|
144647
|
-
elif False:
|
|
144648
|
-
GetDbSchemaChangelogScriptArgsDict: TypeAlias = Mapping[str, Any]
|
|
144649
|
-
|
|
144650
|
-
@pulumi.input_type
|
|
144651
|
-
class GetDbSchemaChangelogScriptArgs:
|
|
144652
|
-
def __init__(__self__, *,
|
|
144653
|
-
command: _builtins.str,
|
|
144654
|
-
image: _builtins.str,
|
|
144655
|
-
location: _builtins.str,
|
|
144656
|
-
shell: _builtins.str):
|
|
144657
|
-
"""
|
|
144658
|
-
:param _builtins.str command: Script to clone changeSets
|
|
144659
|
-
:param _builtins.str image: The fully-qualified name (FQN) of the image
|
|
144660
|
-
:param _builtins.str location: Path to changeLog file
|
|
144661
|
-
:param _builtins.str shell: Type of the shell. For example Sh or Bash
|
|
144662
|
-
"""
|
|
144663
|
-
pulumi.set(__self__, "command", command)
|
|
144664
|
-
pulumi.set(__self__, "image", image)
|
|
144665
|
-
pulumi.set(__self__, "location", location)
|
|
144666
|
-
pulumi.set(__self__, "shell", shell)
|
|
144667
|
-
|
|
144668
|
-
@_builtins.property
|
|
144669
|
-
@pulumi.getter
|
|
144670
|
-
def command(self) -> _builtins.str:
|
|
144671
|
-
"""
|
|
144672
|
-
Script to clone changeSets
|
|
144673
|
-
"""
|
|
144674
|
-
return pulumi.get(self, "command")
|
|
144675
|
-
|
|
144676
|
-
@command.setter
|
|
144677
|
-
def command(self, value: _builtins.str):
|
|
144678
|
-
pulumi.set(self, "command", value)
|
|
144679
|
-
|
|
144680
|
-
@_builtins.property
|
|
144681
|
-
@pulumi.getter
|
|
144682
|
-
def image(self) -> _builtins.str:
|
|
144683
|
-
"""
|
|
144684
|
-
The fully-qualified name (FQN) of the image
|
|
144685
|
-
"""
|
|
144686
|
-
return pulumi.get(self, "image")
|
|
144687
|
-
|
|
144688
|
-
@image.setter
|
|
144689
|
-
def image(self, value: _builtins.str):
|
|
144690
|
-
pulumi.set(self, "image", value)
|
|
144691
|
-
|
|
144692
|
-
@_builtins.property
|
|
144693
|
-
@pulumi.getter
|
|
144694
|
-
def location(self) -> _builtins.str:
|
|
144695
|
-
"""
|
|
144696
|
-
Path to changeLog file
|
|
144697
|
-
"""
|
|
144698
|
-
return pulumi.get(self, "location")
|
|
144699
|
-
|
|
144700
|
-
@location.setter
|
|
144701
|
-
def location(self, value: _builtins.str):
|
|
144702
|
-
pulumi.set(self, "location", value)
|
|
144703
|
-
|
|
144704
|
-
@_builtins.property
|
|
144705
|
-
@pulumi.getter
|
|
144706
|
-
def shell(self) -> _builtins.str:
|
|
144707
|
-
"""
|
|
144708
|
-
Type of the shell. For example Sh or Bash
|
|
144709
|
-
"""
|
|
144710
|
-
return pulumi.get(self, "shell")
|
|
144711
|
-
|
|
144712
|
-
@shell.setter
|
|
144713
|
-
def shell(self, value: _builtins.str):
|
|
144714
|
-
pulumi.set(self, "shell", value)
|
|
144715
|
-
|
|
144716
|
-
|
|
144717
|
-
if not MYPY:
|
|
144718
|
-
class GetDbSchemaSchemaSourceArgsDict(TypedDict):
|
|
144719
|
-
archive_path: _builtins.str
|
|
144720
|
-
"""
|
|
144721
|
-
If connector type is artifactory, path to the archive file which contains the changeLog
|
|
144722
|
-
"""
|
|
144723
|
-
connector: _builtins.str
|
|
144724
|
-
"""
|
|
144725
|
-
Connector to repository at which to find details about the database schema
|
|
144726
|
-
"""
|
|
144727
|
-
location: _builtins.str
|
|
144728
|
-
"""
|
|
144729
|
-
The path within the specified repository at which to find details about the database schema
|
|
144730
|
-
"""
|
|
144731
|
-
repo: _builtins.str
|
|
144732
|
-
"""
|
|
144733
|
-
If connector url is of account, which repository to connect to using the connector
|
|
144734
|
-
"""
|
|
144735
|
-
elif False:
|
|
144736
|
-
GetDbSchemaSchemaSourceArgsDict: TypeAlias = Mapping[str, Any]
|
|
144737
|
-
|
|
144738
|
-
@pulumi.input_type
|
|
144739
|
-
class GetDbSchemaSchemaSourceArgs:
|
|
144740
|
-
def __init__(__self__, *,
|
|
144741
|
-
archive_path: _builtins.str,
|
|
144742
|
-
connector: _builtins.str,
|
|
144743
|
-
location: _builtins.str,
|
|
144744
|
-
repo: _builtins.str):
|
|
144745
|
-
"""
|
|
144746
|
-
:param _builtins.str archive_path: If connector type is artifactory, path to the archive file which contains the changeLog
|
|
144747
|
-
:param _builtins.str connector: Connector to repository at which to find details about the database schema
|
|
144748
|
-
:param _builtins.str location: The path within the specified repository at which to find details about the database schema
|
|
144749
|
-
:param _builtins.str repo: If connector url is of account, which repository to connect to using the connector
|
|
144750
|
-
"""
|
|
144751
|
-
pulumi.set(__self__, "archive_path", archive_path)
|
|
144752
|
-
pulumi.set(__self__, "connector", connector)
|
|
144753
|
-
pulumi.set(__self__, "location", location)
|
|
144754
|
-
pulumi.set(__self__, "repo", repo)
|
|
144755
|
-
|
|
144756
|
-
@_builtins.property
|
|
144757
|
-
@pulumi.getter(name="archivePath")
|
|
144758
|
-
def archive_path(self) -> _builtins.str:
|
|
144759
|
-
"""
|
|
144760
|
-
If connector type is artifactory, path to the archive file which contains the changeLog
|
|
144761
|
-
"""
|
|
144762
|
-
return pulumi.get(self, "archive_path")
|
|
144763
|
-
|
|
144764
|
-
@archive_path.setter
|
|
144765
|
-
def archive_path(self, value: _builtins.str):
|
|
144766
|
-
pulumi.set(self, "archive_path", value)
|
|
144767
|
-
|
|
144768
|
-
@_builtins.property
|
|
144769
|
-
@pulumi.getter
|
|
144770
|
-
def connector(self) -> _builtins.str:
|
|
144771
|
-
"""
|
|
144772
|
-
Connector to repository at which to find details about the database schema
|
|
144773
|
-
"""
|
|
144774
|
-
return pulumi.get(self, "connector")
|
|
144775
|
-
|
|
144776
|
-
@connector.setter
|
|
144777
|
-
def connector(self, value: _builtins.str):
|
|
144778
|
-
pulumi.set(self, "connector", value)
|
|
144779
|
-
|
|
144780
|
-
@_builtins.property
|
|
144781
|
-
@pulumi.getter
|
|
144782
|
-
def location(self) -> _builtins.str:
|
|
144783
|
-
"""
|
|
144784
|
-
The path within the specified repository at which to find details about the database schema
|
|
144785
|
-
"""
|
|
144786
|
-
return pulumi.get(self, "location")
|
|
144787
|
-
|
|
144788
|
-
@location.setter
|
|
144789
|
-
def location(self, value: _builtins.str):
|
|
144790
|
-
pulumi.set(self, "location", value)
|
|
144791
|
-
|
|
144792
|
-
@_builtins.property
|
|
144793
|
-
@pulumi.getter
|
|
144794
|
-
def repo(self) -> _builtins.str:
|
|
144795
|
-
"""
|
|
144796
|
-
If connector url is of account, which repository to connect to using the connector
|
|
144797
|
-
"""
|
|
144798
|
-
return pulumi.get(self, "repo")
|
|
144799
|
-
|
|
144800
|
-
@repo.setter
|
|
144801
|
-
def repo(self, value: _builtins.str):
|
|
144802
|
-
pulumi.set(self, "repo", value)
|
|
144803
|
-
|
|
144804
|
-
|
|
144805
144819
|
if not MYPY:
|
|
144806
144820
|
class GetEnvironmentClustersMappingClusterArgsDict(TypedDict):
|
|
144807
144821
|
agent_identifier: NotRequired[_builtins.str]
|
|
@@ -145607,19 +145621,27 @@ if not MYPY:
|
|
|
145607
145621
|
class GetHarRegistryConfigArgsDict(TypedDict):
|
|
145608
145622
|
type: _builtins.str
|
|
145609
145623
|
"""
|
|
145610
|
-
Type of registry (VIRTUAL
|
|
145624
|
+
Type of registry (VIRTUAL or UPSTREAM)
|
|
145625
|
+
"""
|
|
145626
|
+
auth_type: NotRequired[_builtins.str]
|
|
145627
|
+
"""
|
|
145628
|
+
Type of authentication for UPSTREAM registry type (UserPassword, Anonymous)
|
|
145611
145629
|
"""
|
|
145612
145630
|
auths: NotRequired[Sequence['GetHarRegistryConfigAuthArgsDict']]
|
|
145613
145631
|
"""
|
|
145614
|
-
Authentication configuration for UPSTREAM type
|
|
145632
|
+
Authentication configuration for UPSTREAM registry type
|
|
145615
145633
|
"""
|
|
145616
145634
|
source: NotRequired[_builtins.str]
|
|
145617
145635
|
"""
|
|
145618
|
-
|
|
145636
|
+
Upstream source
|
|
145637
|
+
"""
|
|
145638
|
+
upstream_proxies: NotRequired[Sequence[_builtins.str]]
|
|
145639
|
+
"""
|
|
145640
|
+
List of upstream proxies for VIRTUAL registry type
|
|
145619
145641
|
"""
|
|
145620
145642
|
url: NotRequired[_builtins.str]
|
|
145621
145643
|
"""
|
|
145622
|
-
URL of the upstream
|
|
145644
|
+
URL of the upstream (required if type=UPSTREAM & package_type=HELM)
|
|
145623
145645
|
"""
|
|
145624
145646
|
elif False:
|
|
145625
145647
|
GetHarRegistryConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -145628,20 +145650,28 @@ elif False:
|
|
|
145628
145650
|
class GetHarRegistryConfigArgs:
|
|
145629
145651
|
def __init__(__self__, *,
|
|
145630
145652
|
type: _builtins.str,
|
|
145653
|
+
auth_type: Optional[_builtins.str] = None,
|
|
145631
145654
|
auths: Optional[Sequence['GetHarRegistryConfigAuthArgs']] = None,
|
|
145632
145655
|
source: Optional[_builtins.str] = None,
|
|
145656
|
+
upstream_proxies: Optional[Sequence[_builtins.str]] = None,
|
|
145633
145657
|
url: Optional[_builtins.str] = None):
|
|
145634
145658
|
"""
|
|
145635
|
-
:param _builtins.str type: Type of registry (VIRTUAL
|
|
145636
|
-
:param
|
|
145637
|
-
:param
|
|
145638
|
-
:param _builtins.str
|
|
145659
|
+
:param _builtins.str type: Type of registry (VIRTUAL or UPSTREAM)
|
|
145660
|
+
:param _builtins.str auth_type: Type of authentication for UPSTREAM registry type (UserPassword, Anonymous)
|
|
145661
|
+
:param Sequence['GetHarRegistryConfigAuthArgs'] auths: Authentication configuration for UPSTREAM registry type
|
|
145662
|
+
:param _builtins.str source: Upstream source
|
|
145663
|
+
:param Sequence[_builtins.str] upstream_proxies: List of upstream proxies for VIRTUAL registry type
|
|
145664
|
+
:param _builtins.str url: URL of the upstream (required if type=UPSTREAM & package_type=HELM)
|
|
145639
145665
|
"""
|
|
145640
145666
|
pulumi.set(__self__, "type", type)
|
|
145667
|
+
if auth_type is not None:
|
|
145668
|
+
pulumi.set(__self__, "auth_type", auth_type)
|
|
145641
145669
|
if auths is not None:
|
|
145642
145670
|
pulumi.set(__self__, "auths", auths)
|
|
145643
145671
|
if source is not None:
|
|
145644
145672
|
pulumi.set(__self__, "source", source)
|
|
145673
|
+
if upstream_proxies is not None:
|
|
145674
|
+
pulumi.set(__self__, "upstream_proxies", upstream_proxies)
|
|
145645
145675
|
if url is not None:
|
|
145646
145676
|
pulumi.set(__self__, "url", url)
|
|
145647
145677
|
|
|
@@ -145649,7 +145679,7 @@ class GetHarRegistryConfigArgs:
|
|
|
145649
145679
|
@pulumi.getter
|
|
145650
145680
|
def type(self) -> _builtins.str:
|
|
145651
145681
|
"""
|
|
145652
|
-
Type of registry (VIRTUAL
|
|
145682
|
+
Type of registry (VIRTUAL or UPSTREAM)
|
|
145653
145683
|
"""
|
|
145654
145684
|
return pulumi.get(self, "type")
|
|
145655
145685
|
|
|
@@ -145657,11 +145687,23 @@ class GetHarRegistryConfigArgs:
|
|
|
145657
145687
|
def type(self, value: _builtins.str):
|
|
145658
145688
|
pulumi.set(self, "type", value)
|
|
145659
145689
|
|
|
145690
|
+
@_builtins.property
|
|
145691
|
+
@pulumi.getter(name="authType")
|
|
145692
|
+
def auth_type(self) -> Optional[_builtins.str]:
|
|
145693
|
+
"""
|
|
145694
|
+
Type of authentication for UPSTREAM registry type (UserPassword, Anonymous)
|
|
145695
|
+
"""
|
|
145696
|
+
return pulumi.get(self, "auth_type")
|
|
145697
|
+
|
|
145698
|
+
@auth_type.setter
|
|
145699
|
+
def auth_type(self, value: Optional[_builtins.str]):
|
|
145700
|
+
pulumi.set(self, "auth_type", value)
|
|
145701
|
+
|
|
145660
145702
|
@_builtins.property
|
|
145661
145703
|
@pulumi.getter
|
|
145662
145704
|
def auths(self) -> Optional[Sequence['GetHarRegistryConfigAuthArgs']]:
|
|
145663
145705
|
"""
|
|
145664
|
-
Authentication configuration for UPSTREAM type
|
|
145706
|
+
Authentication configuration for UPSTREAM registry type
|
|
145665
145707
|
"""
|
|
145666
145708
|
return pulumi.get(self, "auths")
|
|
145667
145709
|
|
|
@@ -145673,7 +145715,7 @@ class GetHarRegistryConfigArgs:
|
|
|
145673
145715
|
@pulumi.getter
|
|
145674
145716
|
def source(self) -> Optional[_builtins.str]:
|
|
145675
145717
|
"""
|
|
145676
|
-
|
|
145718
|
+
Upstream source
|
|
145677
145719
|
"""
|
|
145678
145720
|
return pulumi.get(self, "source")
|
|
145679
145721
|
|
|
@@ -145681,11 +145723,23 @@ class GetHarRegistryConfigArgs:
|
|
|
145681
145723
|
def source(self, value: Optional[_builtins.str]):
|
|
145682
145724
|
pulumi.set(self, "source", value)
|
|
145683
145725
|
|
|
145726
|
+
@_builtins.property
|
|
145727
|
+
@pulumi.getter(name="upstreamProxies")
|
|
145728
|
+
def upstream_proxies(self) -> Optional[Sequence[_builtins.str]]:
|
|
145729
|
+
"""
|
|
145730
|
+
List of upstream proxies for VIRTUAL registry type
|
|
145731
|
+
"""
|
|
145732
|
+
return pulumi.get(self, "upstream_proxies")
|
|
145733
|
+
|
|
145734
|
+
@upstream_proxies.setter
|
|
145735
|
+
def upstream_proxies(self, value: Optional[Sequence[_builtins.str]]):
|
|
145736
|
+
pulumi.set(self, "upstream_proxies", value)
|
|
145737
|
+
|
|
145684
145738
|
@_builtins.property
|
|
145685
145739
|
@pulumi.getter
|
|
145686
145740
|
def url(self) -> Optional[_builtins.str]:
|
|
145687
145741
|
"""
|
|
145688
|
-
URL of the upstream
|
|
145742
|
+
URL of the upstream (required if type=UPSTREAM & package_type=HELM)
|
|
145689
145743
|
"""
|
|
145690
145744
|
return pulumi.get(self, "url")
|
|
145691
145745
|
|
|
@@ -145700,9 +145754,22 @@ if not MYPY:
|
|
|
145700
145754
|
"""
|
|
145701
145755
|
Type of authentication (UserPassword, Anonymous)
|
|
145702
145756
|
"""
|
|
145703
|
-
|
|
145757
|
+
access_key: NotRequired[_builtins.str]
|
|
145758
|
+
access_key_identifier: NotRequired[_builtins.str]
|
|
145759
|
+
access_key_secret_path: NotRequired[_builtins.str]
|
|
145760
|
+
secret_identifier: NotRequired[_builtins.str]
|
|
145704
145761
|
"""
|
|
145705
|
-
|
|
145762
|
+
Secret identifier for UserPassword auth type
|
|
145763
|
+
"""
|
|
145764
|
+
secret_key_identifier: NotRequired[_builtins.str]
|
|
145765
|
+
secret_key_secret_path: NotRequired[_builtins.str]
|
|
145766
|
+
secret_space_path: NotRequired[_builtins.str]
|
|
145767
|
+
"""
|
|
145768
|
+
Secret space path for UserPassword auth type
|
|
145769
|
+
"""
|
|
145770
|
+
user_name: NotRequired[_builtins.str]
|
|
145771
|
+
"""
|
|
145772
|
+
User name for UserPassword auth type
|
|
145706
145773
|
"""
|
|
145707
145774
|
elif False:
|
|
145708
145775
|
GetHarRegistryConfigAuthArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -145711,14 +145778,37 @@ elif False:
|
|
|
145711
145778
|
class GetHarRegistryConfigAuthArgs:
|
|
145712
145779
|
def __init__(__self__, *,
|
|
145713
145780
|
auth_type: _builtins.str,
|
|
145714
|
-
|
|
145781
|
+
access_key: Optional[_builtins.str] = None,
|
|
145782
|
+
access_key_identifier: Optional[_builtins.str] = None,
|
|
145783
|
+
access_key_secret_path: Optional[_builtins.str] = None,
|
|
145784
|
+
secret_identifier: Optional[_builtins.str] = None,
|
|
145785
|
+
secret_key_identifier: Optional[_builtins.str] = None,
|
|
145786
|
+
secret_key_secret_path: Optional[_builtins.str] = None,
|
|
145787
|
+
secret_space_path: Optional[_builtins.str] = None,
|
|
145788
|
+
user_name: Optional[_builtins.str] = None):
|
|
145715
145789
|
"""
|
|
145716
145790
|
:param _builtins.str auth_type: Type of authentication (UserPassword, Anonymous)
|
|
145717
|
-
:param
|
|
145791
|
+
:param _builtins.str secret_identifier: Secret identifier for UserPassword auth type
|
|
145792
|
+
:param _builtins.str secret_space_path: Secret space path for UserPassword auth type
|
|
145793
|
+
:param _builtins.str user_name: User name for UserPassword auth type
|
|
145718
145794
|
"""
|
|
145719
145795
|
pulumi.set(__self__, "auth_type", auth_type)
|
|
145720
|
-
if
|
|
145721
|
-
pulumi.set(__self__, "
|
|
145796
|
+
if access_key is not None:
|
|
145797
|
+
pulumi.set(__self__, "access_key", access_key)
|
|
145798
|
+
if access_key_identifier is not None:
|
|
145799
|
+
pulumi.set(__self__, "access_key_identifier", access_key_identifier)
|
|
145800
|
+
if access_key_secret_path is not None:
|
|
145801
|
+
pulumi.set(__self__, "access_key_secret_path", access_key_secret_path)
|
|
145802
|
+
if secret_identifier is not None:
|
|
145803
|
+
pulumi.set(__self__, "secret_identifier", secret_identifier)
|
|
145804
|
+
if secret_key_identifier is not None:
|
|
145805
|
+
pulumi.set(__self__, "secret_key_identifier", secret_key_identifier)
|
|
145806
|
+
if secret_key_secret_path is not None:
|
|
145807
|
+
pulumi.set(__self__, "secret_key_secret_path", secret_key_secret_path)
|
|
145808
|
+
if secret_space_path is not None:
|
|
145809
|
+
pulumi.set(__self__, "secret_space_path", secret_space_path)
|
|
145810
|
+
if user_name is not None:
|
|
145811
|
+
pulumi.set(__self__, "user_name", user_name)
|
|
145722
145812
|
|
|
145723
145813
|
@_builtins.property
|
|
145724
145814
|
@pulumi.getter(name="authType")
|
|
@@ -145733,77 +145823,37 @@ class GetHarRegistryConfigAuthArgs:
|
|
|
145733
145823
|
pulumi.set(self, "auth_type", value)
|
|
145734
145824
|
|
|
145735
145825
|
@_builtins.property
|
|
145736
|
-
@pulumi.getter(name="
|
|
145737
|
-
def
|
|
145738
|
-
""
|
|
145739
|
-
User password authentication details
|
|
145740
|
-
"""
|
|
145741
|
-
return pulumi.get(self, "user_password")
|
|
145826
|
+
@pulumi.getter(name="accessKey")
|
|
145827
|
+
def access_key(self) -> Optional[_builtins.str]:
|
|
145828
|
+
return pulumi.get(self, "access_key")
|
|
145742
145829
|
|
|
145743
|
-
@
|
|
145744
|
-
def
|
|
145745
|
-
pulumi.set(self, "
|
|
145830
|
+
@access_key.setter
|
|
145831
|
+
def access_key(self, value: Optional[_builtins.str]):
|
|
145832
|
+
pulumi.set(self, "access_key", value)
|
|
145746
145833
|
|
|
145834
|
+
@_builtins.property
|
|
145835
|
+
@pulumi.getter(name="accessKeyIdentifier")
|
|
145836
|
+
def access_key_identifier(self) -> Optional[_builtins.str]:
|
|
145837
|
+
return pulumi.get(self, "access_key_identifier")
|
|
145747
145838
|
|
|
145748
|
-
|
|
145749
|
-
|
|
145750
|
-
|
|
145751
|
-
"""
|
|
145752
|
-
User name
|
|
145753
|
-
"""
|
|
145754
|
-
secret_identifier: NotRequired[_builtins.str]
|
|
145755
|
-
"""
|
|
145756
|
-
Secret identifier
|
|
145757
|
-
"""
|
|
145758
|
-
secret_space_id: NotRequired[_builtins.int]
|
|
145759
|
-
"""
|
|
145760
|
-
Secret space ID
|
|
145761
|
-
"""
|
|
145762
|
-
secret_space_path: NotRequired[_builtins.str]
|
|
145763
|
-
"""
|
|
145764
|
-
Secret space path
|
|
145765
|
-
"""
|
|
145766
|
-
elif False:
|
|
145767
|
-
GetHarRegistryConfigAuthUserPasswordArgsDict: TypeAlias = Mapping[str, Any]
|
|
145768
|
-
|
|
145769
|
-
@pulumi.input_type
|
|
145770
|
-
class GetHarRegistryConfigAuthUserPasswordArgs:
|
|
145771
|
-
def __init__(__self__, *,
|
|
145772
|
-
user_name: _builtins.str,
|
|
145773
|
-
secret_identifier: Optional[_builtins.str] = None,
|
|
145774
|
-
secret_space_id: Optional[_builtins.int] = None,
|
|
145775
|
-
secret_space_path: Optional[_builtins.str] = None):
|
|
145776
|
-
"""
|
|
145777
|
-
:param _builtins.str user_name: User name
|
|
145778
|
-
:param _builtins.str secret_identifier: Secret identifier
|
|
145779
|
-
:param _builtins.int secret_space_id: Secret space ID
|
|
145780
|
-
:param _builtins.str secret_space_path: Secret space path
|
|
145781
|
-
"""
|
|
145782
|
-
pulumi.set(__self__, "user_name", user_name)
|
|
145783
|
-
if secret_identifier is not None:
|
|
145784
|
-
pulumi.set(__self__, "secret_identifier", secret_identifier)
|
|
145785
|
-
if secret_space_id is not None:
|
|
145786
|
-
pulumi.set(__self__, "secret_space_id", secret_space_id)
|
|
145787
|
-
if secret_space_path is not None:
|
|
145788
|
-
pulumi.set(__self__, "secret_space_path", secret_space_path)
|
|
145839
|
+
@access_key_identifier.setter
|
|
145840
|
+
def access_key_identifier(self, value: Optional[_builtins.str]):
|
|
145841
|
+
pulumi.set(self, "access_key_identifier", value)
|
|
145789
145842
|
|
|
145790
145843
|
@_builtins.property
|
|
145791
|
-
@pulumi.getter(name="
|
|
145792
|
-
def
|
|
145793
|
-
""
|
|
145794
|
-
User name
|
|
145795
|
-
"""
|
|
145796
|
-
return pulumi.get(self, "user_name")
|
|
145844
|
+
@pulumi.getter(name="accessKeySecretPath")
|
|
145845
|
+
def access_key_secret_path(self) -> Optional[_builtins.str]:
|
|
145846
|
+
return pulumi.get(self, "access_key_secret_path")
|
|
145797
145847
|
|
|
145798
|
-
@
|
|
145799
|
-
def
|
|
145800
|
-
pulumi.set(self, "
|
|
145848
|
+
@access_key_secret_path.setter
|
|
145849
|
+
def access_key_secret_path(self, value: Optional[_builtins.str]):
|
|
145850
|
+
pulumi.set(self, "access_key_secret_path", value)
|
|
145801
145851
|
|
|
145802
145852
|
@_builtins.property
|
|
145803
145853
|
@pulumi.getter(name="secretIdentifier")
|
|
145804
145854
|
def secret_identifier(self) -> Optional[_builtins.str]:
|
|
145805
145855
|
"""
|
|
145806
|
-
Secret identifier
|
|
145856
|
+
Secret identifier for UserPassword auth type
|
|
145807
145857
|
"""
|
|
145808
145858
|
return pulumi.get(self, "secret_identifier")
|
|
145809
145859
|
|
|
@@ -145812,22 +145862,28 @@ class GetHarRegistryConfigAuthUserPasswordArgs:
|
|
|
145812
145862
|
pulumi.set(self, "secret_identifier", value)
|
|
145813
145863
|
|
|
145814
145864
|
@_builtins.property
|
|
145815
|
-
@pulumi.getter(name="
|
|
145816
|
-
def
|
|
145817
|
-
""
|
|
145818
|
-
|
|
145819
|
-
|
|
145820
|
-
|
|
145865
|
+
@pulumi.getter(name="secretKeyIdentifier")
|
|
145866
|
+
def secret_key_identifier(self) -> Optional[_builtins.str]:
|
|
145867
|
+
return pulumi.get(self, "secret_key_identifier")
|
|
145868
|
+
|
|
145869
|
+
@secret_key_identifier.setter
|
|
145870
|
+
def secret_key_identifier(self, value: Optional[_builtins.str]):
|
|
145871
|
+
pulumi.set(self, "secret_key_identifier", value)
|
|
145821
145872
|
|
|
145822
|
-
@
|
|
145823
|
-
|
|
145824
|
-
|
|
145873
|
+
@_builtins.property
|
|
145874
|
+
@pulumi.getter(name="secretKeySecretPath")
|
|
145875
|
+
def secret_key_secret_path(self) -> Optional[_builtins.str]:
|
|
145876
|
+
return pulumi.get(self, "secret_key_secret_path")
|
|
145877
|
+
|
|
145878
|
+
@secret_key_secret_path.setter
|
|
145879
|
+
def secret_key_secret_path(self, value: Optional[_builtins.str]):
|
|
145880
|
+
pulumi.set(self, "secret_key_secret_path", value)
|
|
145825
145881
|
|
|
145826
145882
|
@_builtins.property
|
|
145827
145883
|
@pulumi.getter(name="secretSpacePath")
|
|
145828
145884
|
def secret_space_path(self) -> Optional[_builtins.str]:
|
|
145829
145885
|
"""
|
|
145830
|
-
Secret space path
|
|
145886
|
+
Secret space path for UserPassword auth type
|
|
145831
145887
|
"""
|
|
145832
145888
|
return pulumi.get(self, "secret_space_path")
|
|
145833
145889
|
|
|
@@ -145835,16 +145891,28 @@ class GetHarRegistryConfigAuthUserPasswordArgs:
|
|
|
145835
145891
|
def secret_space_path(self, value: Optional[_builtins.str]):
|
|
145836
145892
|
pulumi.set(self, "secret_space_path", value)
|
|
145837
145893
|
|
|
145894
|
+
@_builtins.property
|
|
145895
|
+
@pulumi.getter(name="userName")
|
|
145896
|
+
def user_name(self) -> Optional[_builtins.str]:
|
|
145897
|
+
"""
|
|
145898
|
+
User name for UserPassword auth type
|
|
145899
|
+
"""
|
|
145900
|
+
return pulumi.get(self, "user_name")
|
|
145901
|
+
|
|
145902
|
+
@user_name.setter
|
|
145903
|
+
def user_name(self, value: Optional[_builtins.str]):
|
|
145904
|
+
pulumi.set(self, "user_name", value)
|
|
145905
|
+
|
|
145838
145906
|
|
|
145839
145907
|
if not MYPY:
|
|
145840
145908
|
class GetInfraVariableSetConnectorArgsDict(TypedDict):
|
|
145841
145909
|
connector_ref: _builtins.str
|
|
145842
145910
|
"""
|
|
145843
|
-
|
|
145911
|
+
Connector Ref is the reference to the connector
|
|
145844
145912
|
"""
|
|
145845
145913
|
type: _builtins.str
|
|
145846
145914
|
"""
|
|
145847
|
-
Type
|
|
145915
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
145848
145916
|
"""
|
|
145849
145917
|
elif False:
|
|
145850
145918
|
GetInfraVariableSetConnectorArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -145855,8 +145923,8 @@ class GetInfraVariableSetConnectorArgs:
|
|
|
145855
145923
|
connector_ref: _builtins.str,
|
|
145856
145924
|
type: _builtins.str):
|
|
145857
145925
|
"""
|
|
145858
|
-
:param _builtins.str connector_ref:
|
|
145859
|
-
:param _builtins.str type: Type
|
|
145926
|
+
:param _builtins.str connector_ref: Connector Ref is the reference to the connector
|
|
145927
|
+
:param _builtins.str type: Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
145860
145928
|
"""
|
|
145861
145929
|
pulumi.set(__self__, "connector_ref", connector_ref)
|
|
145862
145930
|
pulumi.set(__self__, "type", type)
|
|
@@ -145865,7 +145933,7 @@ class GetInfraVariableSetConnectorArgs:
|
|
|
145865
145933
|
@pulumi.getter(name="connectorRef")
|
|
145866
145934
|
def connector_ref(self) -> _builtins.str:
|
|
145867
145935
|
"""
|
|
145868
|
-
|
|
145936
|
+
Connector Ref is the reference to the connector
|
|
145869
145937
|
"""
|
|
145870
145938
|
return pulumi.get(self, "connector_ref")
|
|
145871
145939
|
|
|
@@ -145877,7 +145945,7 @@ class GetInfraVariableSetConnectorArgs:
|
|
|
145877
145945
|
@pulumi.getter
|
|
145878
145946
|
def type(self) -> _builtins.str:
|
|
145879
145947
|
"""
|
|
145880
|
-
Type
|
|
145948
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
145881
145949
|
"""
|
|
145882
145950
|
return pulumi.get(self, "type")
|
|
145883
145951
|
|
|
@@ -145890,15 +145958,15 @@ if not MYPY:
|
|
|
145890
145958
|
class GetInfraVariableSetEnvironmentVariableArgsDict(TypedDict):
|
|
145891
145959
|
key: _builtins.str
|
|
145892
145960
|
"""
|
|
145893
|
-
Key is the identifier for the variable
|
|
145961
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
145894
145962
|
"""
|
|
145895
145963
|
value: _builtins.str
|
|
145896
145964
|
"""
|
|
145897
|
-
|
|
145965
|
+
Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
|
|
145898
145966
|
"""
|
|
145899
145967
|
value_type: _builtins.str
|
|
145900
145968
|
"""
|
|
145901
|
-
Value type indicates the value type of the variable
|
|
145969
|
+
Value type indicates the value type of the variable. Currently we support string and secret.
|
|
145902
145970
|
"""
|
|
145903
145971
|
elif False:
|
|
145904
145972
|
GetInfraVariableSetEnvironmentVariableArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -145910,9 +145978,9 @@ class GetInfraVariableSetEnvironmentVariableArgs:
|
|
|
145910
145978
|
value: _builtins.str,
|
|
145911
145979
|
value_type: _builtins.str):
|
|
145912
145980
|
"""
|
|
145913
|
-
:param _builtins.str key: Key is the identifier for the variable
|
|
145914
|
-
:param _builtins.str value:
|
|
145915
|
-
:param _builtins.str value_type: Value type indicates the value type of the variable
|
|
145981
|
+
:param _builtins.str key: Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
145982
|
+
:param _builtins.str value: Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
|
|
145983
|
+
:param _builtins.str value_type: Value type indicates the value type of the variable. Currently we support string and secret.
|
|
145916
145984
|
"""
|
|
145917
145985
|
pulumi.set(__self__, "key", key)
|
|
145918
145986
|
pulumi.set(__self__, "value", value)
|
|
@@ -145922,7 +145990,7 @@ class GetInfraVariableSetEnvironmentVariableArgs:
|
|
|
145922
145990
|
@pulumi.getter
|
|
145923
145991
|
def key(self) -> _builtins.str:
|
|
145924
145992
|
"""
|
|
145925
|
-
Key is the identifier for the variable
|
|
145993
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
145926
145994
|
"""
|
|
145927
145995
|
return pulumi.get(self, "key")
|
|
145928
145996
|
|
|
@@ -145934,7 +146002,7 @@ class GetInfraVariableSetEnvironmentVariableArgs:
|
|
|
145934
146002
|
@pulumi.getter
|
|
145935
146003
|
def value(self) -> _builtins.str:
|
|
145936
146004
|
"""
|
|
145937
|
-
|
|
146005
|
+
Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
|
|
145938
146006
|
"""
|
|
145939
146007
|
return pulumi.get(self, "value")
|
|
145940
146008
|
|
|
@@ -145946,7 +146014,7 @@ class GetInfraVariableSetEnvironmentVariableArgs:
|
|
|
145946
146014
|
@pulumi.getter(name="valueType")
|
|
145947
146015
|
def value_type(self) -> _builtins.str:
|
|
145948
146016
|
"""
|
|
145949
|
-
Value type indicates the value type of the variable
|
|
146017
|
+
Value type indicates the value type of the variable. Currently we support string and secret.
|
|
145950
146018
|
"""
|
|
145951
146019
|
return pulumi.get(self, "value_type")
|
|
145952
146020
|
|
|
@@ -145959,15 +146027,15 @@ if not MYPY:
|
|
|
145959
146027
|
class GetInfraVariableSetTerraformVariableArgsDict(TypedDict):
|
|
145960
146028
|
key: _builtins.str
|
|
145961
146029
|
"""
|
|
145962
|
-
Key is the identifier for the variable
|
|
146030
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
145963
146031
|
"""
|
|
145964
146032
|
value: _builtins.str
|
|
145965
146033
|
"""
|
|
145966
|
-
|
|
146034
|
+
Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
|
|
145967
146035
|
"""
|
|
145968
146036
|
value_type: _builtins.str
|
|
145969
146037
|
"""
|
|
145970
|
-
Value type indicates the value type of the variable
|
|
146038
|
+
Value type indicates the value type of the variable. Currently we support string and secret.
|
|
145971
146039
|
"""
|
|
145972
146040
|
elif False:
|
|
145973
146041
|
GetInfraVariableSetTerraformVariableArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -145979,9 +146047,9 @@ class GetInfraVariableSetTerraformVariableArgs:
|
|
|
145979
146047
|
value: _builtins.str,
|
|
145980
146048
|
value_type: _builtins.str):
|
|
145981
146049
|
"""
|
|
145982
|
-
:param _builtins.str key: Key is the identifier for the variable
|
|
145983
|
-
:param _builtins.str value:
|
|
145984
|
-
:param _builtins.str value_type: Value type indicates the value type of the variable
|
|
146050
|
+
:param _builtins.str key: Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
146051
|
+
:param _builtins.str value: Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
|
|
146052
|
+
:param _builtins.str value_type: Value type indicates the value type of the variable. Currently we support string and secret.
|
|
145985
146053
|
"""
|
|
145986
146054
|
pulumi.set(__self__, "key", key)
|
|
145987
146055
|
pulumi.set(__self__, "value", value)
|
|
@@ -145991,7 +146059,7 @@ class GetInfraVariableSetTerraformVariableArgs:
|
|
|
145991
146059
|
@pulumi.getter
|
|
145992
146060
|
def key(self) -> _builtins.str:
|
|
145993
146061
|
"""
|
|
145994
|
-
Key is the identifier for the variable
|
|
146062
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
145995
146063
|
"""
|
|
145996
146064
|
return pulumi.get(self, "key")
|
|
145997
146065
|
|
|
@@ -146003,7 +146071,7 @@ class GetInfraVariableSetTerraformVariableArgs:
|
|
|
146003
146071
|
@pulumi.getter
|
|
146004
146072
|
def value(self) -> _builtins.str:
|
|
146005
146073
|
"""
|
|
146006
|
-
|
|
146074
|
+
Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
|
|
146007
146075
|
"""
|
|
146008
146076
|
return pulumi.get(self, "value")
|
|
146009
146077
|
|
|
@@ -146015,7 +146083,7 @@ class GetInfraVariableSetTerraformVariableArgs:
|
|
|
146015
146083
|
@pulumi.getter(name="valueType")
|
|
146016
146084
|
def value_type(self) -> _builtins.str:
|
|
146017
146085
|
"""
|
|
146018
|
-
Value type indicates the value type of the variable
|
|
146086
|
+
Value type indicates the value type of the variable. Currently we support string and secret.
|
|
146019
146087
|
"""
|
|
146020
146088
|
return pulumi.get(self, "value_type")
|
|
146021
146089
|
|
|
@@ -146048,7 +146116,7 @@ if not MYPY:
|
|
|
146048
146116
|
"""
|
|
146049
146117
|
repository_sha: NotRequired[_builtins.str]
|
|
146050
146118
|
"""
|
|
146051
|
-
Repository commit is
|
|
146119
|
+
Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
146052
146120
|
"""
|
|
146053
146121
|
elif False:
|
|
146054
146122
|
GetInfraVariableSetTerraformVariableFileArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -146068,7 +146136,7 @@ class GetInfraVariableSetTerraformVariableFileArgs:
|
|
|
146068
146136
|
:param _builtins.str repository_branch: Repository branch is the name of the branch to fetch the variables from. This cannot be set if repository commit or sha is set
|
|
146069
146137
|
:param _builtins.str repository_commit: Repository commit is tag to fetch the variables from. This cannot be set if repository branch or sha is set.
|
|
146070
146138
|
:param _builtins.str repository_path: Repository path is the path in which the variables reside.
|
|
146071
|
-
:param _builtins.str repository_sha: Repository commit is
|
|
146139
|
+
:param _builtins.str repository_sha: Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
146072
146140
|
"""
|
|
146073
146141
|
pulumi.set(__self__, "repository", repository)
|
|
146074
146142
|
pulumi.set(__self__, "repository_connector", repository_connector)
|
|
@@ -146145,7 +146213,7 @@ class GetInfraVariableSetTerraformVariableFileArgs:
|
|
|
146145
146213
|
@pulumi.getter(name="repositorySha")
|
|
146146
146214
|
def repository_sha(self) -> Optional[_builtins.str]:
|
|
146147
146215
|
"""
|
|
146148
|
-
Repository commit is
|
|
146216
|
+
Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
146149
146217
|
"""
|
|
146150
146218
|
return pulumi.get(self, "repository_sha")
|
|
146151
146219
|
|
|
@@ -147735,11 +147803,11 @@ if not MYPY:
|
|
|
147735
147803
|
class GetWorkspaceConnectorArgsDict(TypedDict):
|
|
147736
147804
|
connector_ref: _builtins.str
|
|
147737
147805
|
"""
|
|
147738
|
-
|
|
147806
|
+
Connector Ref is the reference to the connector
|
|
147739
147807
|
"""
|
|
147740
147808
|
type: _builtins.str
|
|
147741
147809
|
"""
|
|
147742
|
-
Type
|
|
147810
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
147743
147811
|
"""
|
|
147744
147812
|
elif False:
|
|
147745
147813
|
GetWorkspaceConnectorArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -147750,8 +147818,8 @@ class GetWorkspaceConnectorArgs:
|
|
|
147750
147818
|
connector_ref: _builtins.str,
|
|
147751
147819
|
type: _builtins.str):
|
|
147752
147820
|
"""
|
|
147753
|
-
:param _builtins.str connector_ref:
|
|
147754
|
-
:param _builtins.str type: Type
|
|
147821
|
+
:param _builtins.str connector_ref: Connector Ref is the reference to the connector
|
|
147822
|
+
:param _builtins.str type: Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
147755
147823
|
"""
|
|
147756
147824
|
pulumi.set(__self__, "connector_ref", connector_ref)
|
|
147757
147825
|
pulumi.set(__self__, "type", type)
|
|
@@ -147760,7 +147828,7 @@ class GetWorkspaceConnectorArgs:
|
|
|
147760
147828
|
@pulumi.getter(name="connectorRef")
|
|
147761
147829
|
def connector_ref(self) -> _builtins.str:
|
|
147762
147830
|
"""
|
|
147763
|
-
|
|
147831
|
+
Connector Ref is the reference to the connector
|
|
147764
147832
|
"""
|
|
147765
147833
|
return pulumi.get(self, "connector_ref")
|
|
147766
147834
|
|
|
@@ -147772,7 +147840,7 @@ class GetWorkspaceConnectorArgs:
|
|
|
147772
147840
|
@pulumi.getter
|
|
147773
147841
|
def type(self) -> _builtins.str:
|
|
147774
147842
|
"""
|
|
147775
|
-
Type
|
|
147843
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
147776
147844
|
"""
|
|
147777
147845
|
return pulumi.get(self, "type")
|
|
147778
147846
|
|