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
|
@@ -36,6 +36,7 @@ __all__ = [
|
|
|
36
36
|
'AwsSecretManagerConnectorCredentialsAssumeRole',
|
|
37
37
|
'AwsSecretManagerConnectorCredentialsManual',
|
|
38
38
|
'AwsSecretManagerConnectorCredentialsOidcAuthentication',
|
|
39
|
+
'AzureCloudCostConnectorBillingExportSpec2',
|
|
39
40
|
'AzureCloudCostConnectorBillingExportSpec',
|
|
40
41
|
'AzureCloudProviderConnectorCredentials',
|
|
41
42
|
'AzureCloudProviderConnectorCredentialsAzureInheritFromDelegateDetails',
|
|
@@ -1650,6 +1651,7 @@ __all__ = [
|
|
|
1650
1651
|
'GetAwsSecretManagerConnectorCredentialAssumeRoleResult',
|
|
1651
1652
|
'GetAwsSecretManagerConnectorCredentialManualResult',
|
|
1652
1653
|
'GetAwsSecretManagerConnectorCredentialOidcAuthenticationResult',
|
|
1654
|
+
'GetAzureCloudCostConnectorBillingExportSpec2Result',
|
|
1653
1655
|
'GetAzureCloudCostConnectorBillingExportSpecResult',
|
|
1654
1656
|
'GetAzureCloudProviderConnectorCredentialResult',
|
|
1655
1657
|
'GetAzureCloudProviderConnectorCredentialAzureInheritFromDelegateDetailResult',
|
|
@@ -1760,7 +1762,6 @@ __all__ = [
|
|
|
1760
1762
|
'GetGitopsRepositoryRepoResult',
|
|
1761
1763
|
'GetHarRegistryConfigResult',
|
|
1762
1764
|
'GetHarRegistryConfigAuthResult',
|
|
1763
|
-
'GetHarRegistryConfigAuthUserPasswordResult',
|
|
1764
1765
|
'GetHelmConnectorCredentialResult',
|
|
1765
1766
|
'GetInfraVariableSetConnectorResult',
|
|
1766
1767
|
'GetInfraVariableSetEnvironmentVariableResult',
|
|
@@ -2293,7 +2294,7 @@ class AwsConnectorInheritFromDelegate(dict):
|
|
|
2293
2294
|
region: Optional[_builtins.str] = None):
|
|
2294
2295
|
"""
|
|
2295
2296
|
:param Sequence[_builtins.str] delegate_selectors: The delegates to inherit the credentials from.
|
|
2296
|
-
:param _builtins.str region: Test Region to perform Connection test of AWS Connector.
|
|
2297
|
+
:param _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}.
|
|
2297
2298
|
"""
|
|
2298
2299
|
pulumi.set(__self__, "delegate_selectors", delegate_selectors)
|
|
2299
2300
|
if region is not None:
|
|
@@ -2311,7 +2312,7 @@ class AwsConnectorInheritFromDelegate(dict):
|
|
|
2311
2312
|
@pulumi.getter
|
|
2312
2313
|
def region(self) -> Optional[_builtins.str]:
|
|
2313
2314
|
"""
|
|
2314
|
-
Test Region to perform Connection test of AWS Connector.
|
|
2315
|
+
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}.
|
|
2315
2316
|
"""
|
|
2316
2317
|
return pulumi.get(self, "region")
|
|
2317
2318
|
|
|
@@ -2340,7 +2341,7 @@ class AwsConnectorIrsa(dict):
|
|
|
2340
2341
|
region: Optional[_builtins.str] = None):
|
|
2341
2342
|
"""
|
|
2342
2343
|
:param Sequence[_builtins.str] delegate_selectors: The delegates to inherit the credentials from.
|
|
2343
|
-
:param _builtins.str region: Test Region to perform Connection test of AWS Connector.
|
|
2344
|
+
:param _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}.
|
|
2344
2345
|
"""
|
|
2345
2346
|
pulumi.set(__self__, "delegate_selectors", delegate_selectors)
|
|
2346
2347
|
if region is not None:
|
|
@@ -2358,7 +2359,7 @@ class AwsConnectorIrsa(dict):
|
|
|
2358
2359
|
@pulumi.getter
|
|
2359
2360
|
def region(self) -> Optional[_builtins.str]:
|
|
2360
2361
|
"""
|
|
2361
|
-
Test Region to perform Connection test of AWS Connector.
|
|
2362
|
+
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}.
|
|
2362
2363
|
"""
|
|
2363
2364
|
return pulumi.get(self, "region")
|
|
2364
2365
|
|
|
@@ -2402,8 +2403,8 @@ class AwsConnectorManual(dict):
|
|
|
2402
2403
|
:param _builtins.str access_key: AWS access key.
|
|
2403
2404
|
:param _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}.
|
|
2404
2405
|
:param Sequence[_builtins.str] delegate_selectors: Connect only use delegates with these tags.
|
|
2405
|
-
:param _builtins.str region: Test Region to perform Connection test of AWS Connector.
|
|
2406
|
-
:param _builtins.str session_token_ref: Reference to the Harness secret containing the aws session token.
|
|
2406
|
+
:param _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}.
|
|
2407
|
+
:param _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}.
|
|
2407
2408
|
"""
|
|
2408
2409
|
pulumi.set(__self__, "secret_key_ref", secret_key_ref)
|
|
2409
2410
|
if access_key is not None:
|
|
@@ -2453,7 +2454,7 @@ class AwsConnectorManual(dict):
|
|
|
2453
2454
|
@pulumi.getter
|
|
2454
2455
|
def region(self) -> Optional[_builtins.str]:
|
|
2455
2456
|
"""
|
|
2456
|
-
Test Region to perform Connection test of AWS Connector.
|
|
2457
|
+
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}.
|
|
2457
2458
|
"""
|
|
2458
2459
|
return pulumi.get(self, "region")
|
|
2459
2460
|
|
|
@@ -2461,7 +2462,7 @@ class AwsConnectorManual(dict):
|
|
|
2461
2462
|
@pulumi.getter(name="sessionTokenRef")
|
|
2462
2463
|
def session_token_ref(self) -> Optional[_builtins.str]:
|
|
2463
2464
|
"""
|
|
2464
|
-
Reference to the Harness secret containing the aws session token.
|
|
2465
|
+
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}.
|
|
2465
2466
|
"""
|
|
2466
2467
|
return pulumi.get(self, "session_token_ref")
|
|
2467
2468
|
|
|
@@ -2494,7 +2495,7 @@ class AwsConnectorOidcAuthentication(dict):
|
|
|
2494
2495
|
"""
|
|
2495
2496
|
:param _builtins.str iam_role_arn: The IAM Role to assume the credentials from.
|
|
2496
2497
|
:param Sequence[_builtins.str] delegate_selectors: The delegates to inherit the credentials from.
|
|
2497
|
-
:param _builtins.str region:
|
|
2498
|
+
:param _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}.
|
|
2498
2499
|
"""
|
|
2499
2500
|
pulumi.set(__self__, "iam_role_arn", iam_role_arn)
|
|
2500
2501
|
if delegate_selectors is not None:
|
|
@@ -2522,7 +2523,7 @@ class AwsConnectorOidcAuthentication(dict):
|
|
|
2522
2523
|
@pulumi.getter
|
|
2523
2524
|
def region(self) -> Optional[_builtins.str]:
|
|
2524
2525
|
"""
|
|
2525
|
-
|
|
2526
|
+
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}.
|
|
2526
2527
|
"""
|
|
2527
2528
|
return pulumi.get(self, "region")
|
|
2528
2529
|
|
|
@@ -2911,7 +2912,7 @@ class AwsSecretManagerConnectorCredentialsManual(dict):
|
|
|
2911
2912
|
access_key_ref: Optional[_builtins.str] = None):
|
|
2912
2913
|
"""
|
|
2913
2914
|
:param _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}.
|
|
2914
|
-
:param _builtins.str access_key_plain_text: The plain text AWS access key.
|
|
2915
|
+
:param _builtins.str access_key_plain_text: The plain text AWS access key.
|
|
2915
2916
|
:param _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}.
|
|
2916
2917
|
"""
|
|
2917
2918
|
pulumi.set(__self__, "secret_key_ref", secret_key_ref)
|
|
@@ -2932,7 +2933,7 @@ class AwsSecretManagerConnectorCredentialsManual(dict):
|
|
|
2932
2933
|
@pulumi.getter(name="accessKeyPlainText")
|
|
2933
2934
|
def access_key_plain_text(self) -> Optional[_builtins.str]:
|
|
2934
2935
|
"""
|
|
2935
|
-
The plain text AWS access key.
|
|
2936
|
+
The plain text AWS access key.
|
|
2936
2937
|
"""
|
|
2937
2938
|
return pulumi.get(self, "access_key_plain_text")
|
|
2938
2939
|
|
|
@@ -2980,12 +2981,114 @@ class AwsSecretManagerConnectorCredentialsOidcAuthentication(dict):
|
|
|
2980
2981
|
return pulumi.get(self, "iam_role_arn")
|
|
2981
2982
|
|
|
2982
2983
|
|
|
2984
|
+
@pulumi.output_type
|
|
2985
|
+
class AzureCloudCostConnectorBillingExportSpec2(dict):
|
|
2986
|
+
@staticmethod
|
|
2987
|
+
def __key_warning(key: str):
|
|
2988
|
+
suggest = None
|
|
2989
|
+
if key == "billingType":
|
|
2990
|
+
suggest = "billing_type"
|
|
2991
|
+
elif key == "containerName":
|
|
2992
|
+
suggest = "container_name"
|
|
2993
|
+
elif key == "directoryName":
|
|
2994
|
+
suggest = "directory_name"
|
|
2995
|
+
elif key == "reportName":
|
|
2996
|
+
suggest = "report_name"
|
|
2997
|
+
elif key == "storageAccountName":
|
|
2998
|
+
suggest = "storage_account_name"
|
|
2999
|
+
elif key == "subscriptionId":
|
|
3000
|
+
suggest = "subscription_id"
|
|
3001
|
+
|
|
3002
|
+
if suggest:
|
|
3003
|
+
pulumi.log.warn(f"Key '{key}' not found in AzureCloudCostConnectorBillingExportSpec2. Access the value via the '{suggest}' property getter instead.")
|
|
3004
|
+
|
|
3005
|
+
def __getitem__(self, key: str) -> Any:
|
|
3006
|
+
AzureCloudCostConnectorBillingExportSpec2.__key_warning(key)
|
|
3007
|
+
return super().__getitem__(key)
|
|
3008
|
+
|
|
3009
|
+
def get(self, key: str, default = None) -> Any:
|
|
3010
|
+
AzureCloudCostConnectorBillingExportSpec2.__key_warning(key)
|
|
3011
|
+
return super().get(key, default)
|
|
3012
|
+
|
|
3013
|
+
def __init__(__self__, *,
|
|
3014
|
+
billing_type: _builtins.str,
|
|
3015
|
+
container_name: _builtins.str,
|
|
3016
|
+
directory_name: _builtins.str,
|
|
3017
|
+
report_name: _builtins.str,
|
|
3018
|
+
storage_account_name: _builtins.str,
|
|
3019
|
+
subscription_id: _builtins.str):
|
|
3020
|
+
"""
|
|
3021
|
+
:param _builtins.str billing_type: Billing type.
|
|
3022
|
+
:param _builtins.str container_name: Name of the container.
|
|
3023
|
+
:param _builtins.str directory_name: Name of the directory.
|
|
3024
|
+
:param _builtins.str report_name: Name of the report.
|
|
3025
|
+
:param _builtins.str storage_account_name: Name of the storage account.
|
|
3026
|
+
:param _builtins.str subscription_id: Subsription id.
|
|
3027
|
+
"""
|
|
3028
|
+
pulumi.set(__self__, "billing_type", billing_type)
|
|
3029
|
+
pulumi.set(__self__, "container_name", container_name)
|
|
3030
|
+
pulumi.set(__self__, "directory_name", directory_name)
|
|
3031
|
+
pulumi.set(__self__, "report_name", report_name)
|
|
3032
|
+
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
3033
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
3034
|
+
|
|
3035
|
+
@_builtins.property
|
|
3036
|
+
@pulumi.getter(name="billingType")
|
|
3037
|
+
def billing_type(self) -> _builtins.str:
|
|
3038
|
+
"""
|
|
3039
|
+
Billing type.
|
|
3040
|
+
"""
|
|
3041
|
+
return pulumi.get(self, "billing_type")
|
|
3042
|
+
|
|
3043
|
+
@_builtins.property
|
|
3044
|
+
@pulumi.getter(name="containerName")
|
|
3045
|
+
def container_name(self) -> _builtins.str:
|
|
3046
|
+
"""
|
|
3047
|
+
Name of the container.
|
|
3048
|
+
"""
|
|
3049
|
+
return pulumi.get(self, "container_name")
|
|
3050
|
+
|
|
3051
|
+
@_builtins.property
|
|
3052
|
+
@pulumi.getter(name="directoryName")
|
|
3053
|
+
def directory_name(self) -> _builtins.str:
|
|
3054
|
+
"""
|
|
3055
|
+
Name of the directory.
|
|
3056
|
+
"""
|
|
3057
|
+
return pulumi.get(self, "directory_name")
|
|
3058
|
+
|
|
3059
|
+
@_builtins.property
|
|
3060
|
+
@pulumi.getter(name="reportName")
|
|
3061
|
+
def report_name(self) -> _builtins.str:
|
|
3062
|
+
"""
|
|
3063
|
+
Name of the report.
|
|
3064
|
+
"""
|
|
3065
|
+
return pulumi.get(self, "report_name")
|
|
3066
|
+
|
|
3067
|
+
@_builtins.property
|
|
3068
|
+
@pulumi.getter(name="storageAccountName")
|
|
3069
|
+
def storage_account_name(self) -> _builtins.str:
|
|
3070
|
+
"""
|
|
3071
|
+
Name of the storage account.
|
|
3072
|
+
"""
|
|
3073
|
+
return pulumi.get(self, "storage_account_name")
|
|
3074
|
+
|
|
3075
|
+
@_builtins.property
|
|
3076
|
+
@pulumi.getter(name="subscriptionId")
|
|
3077
|
+
def subscription_id(self) -> _builtins.str:
|
|
3078
|
+
"""
|
|
3079
|
+
Subsription id.
|
|
3080
|
+
"""
|
|
3081
|
+
return pulumi.get(self, "subscription_id")
|
|
3082
|
+
|
|
3083
|
+
|
|
2983
3084
|
@pulumi.output_type
|
|
2984
3085
|
class AzureCloudCostConnectorBillingExportSpec(dict):
|
|
2985
3086
|
@staticmethod
|
|
2986
3087
|
def __key_warning(key: str):
|
|
2987
3088
|
suggest = None
|
|
2988
|
-
if key == "
|
|
3089
|
+
if key == "billingType":
|
|
3090
|
+
suggest = "billing_type"
|
|
3091
|
+
elif key == "containerName":
|
|
2989
3092
|
suggest = "container_name"
|
|
2990
3093
|
elif key == "directoryName":
|
|
2991
3094
|
suggest = "directory_name"
|
|
@@ -3008,24 +3111,35 @@ class AzureCloudCostConnectorBillingExportSpec(dict):
|
|
|
3008
3111
|
return super().get(key, default)
|
|
3009
3112
|
|
|
3010
3113
|
def __init__(__self__, *,
|
|
3114
|
+
billing_type: _builtins.str,
|
|
3011
3115
|
container_name: _builtins.str,
|
|
3012
3116
|
directory_name: _builtins.str,
|
|
3013
3117
|
report_name: _builtins.str,
|
|
3014
3118
|
storage_account_name: _builtins.str,
|
|
3015
3119
|
subscription_id: _builtins.str):
|
|
3016
3120
|
"""
|
|
3121
|
+
:param _builtins.str billing_type: Billing type.
|
|
3017
3122
|
:param _builtins.str container_name: Name of the container.
|
|
3018
3123
|
:param _builtins.str directory_name: Name of the directory.
|
|
3019
3124
|
:param _builtins.str report_name: Name of the report.
|
|
3020
3125
|
:param _builtins.str storage_account_name: Name of the storage account.
|
|
3021
3126
|
:param _builtins.str subscription_id: Subsription Id.
|
|
3022
3127
|
"""
|
|
3128
|
+
pulumi.set(__self__, "billing_type", billing_type)
|
|
3023
3129
|
pulumi.set(__self__, "container_name", container_name)
|
|
3024
3130
|
pulumi.set(__self__, "directory_name", directory_name)
|
|
3025
3131
|
pulumi.set(__self__, "report_name", report_name)
|
|
3026
3132
|
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
3027
3133
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
3028
3134
|
|
|
3135
|
+
@_builtins.property
|
|
3136
|
+
@pulumi.getter(name="billingType")
|
|
3137
|
+
def billing_type(self) -> _builtins.str:
|
|
3138
|
+
"""
|
|
3139
|
+
Billing type.
|
|
3140
|
+
"""
|
|
3141
|
+
return pulumi.get(self, "billing_type")
|
|
3142
|
+
|
|
3029
3143
|
@_builtins.property
|
|
3030
3144
|
@pulumi.getter(name="containerName")
|
|
3031
3145
|
def container_name(self) -> _builtins.str:
|
|
@@ -4177,10 +4291,6 @@ class ConnectorCustomSecretManagerTemplateInputEnvironmentVariable(dict):
|
|
|
4177
4291
|
type: _builtins.str,
|
|
4178
4292
|
value: _builtins.str,
|
|
4179
4293
|
default: Optional[_builtins.bool] = None):
|
|
4180
|
-
"""
|
|
4181
|
-
:param _builtins.str name: : Name of the resource.
|
|
4182
|
-
:param _builtins.str type: : Type of the custom secrets manager, typically set to `CustomSecretManager`.
|
|
4183
|
-
"""
|
|
4184
4294
|
pulumi.set(__self__, "name", name)
|
|
4185
4295
|
pulumi.set(__self__, "type", type)
|
|
4186
4296
|
pulumi.set(__self__, "value", value)
|
|
@@ -4190,17 +4300,11 @@ class ConnectorCustomSecretManagerTemplateInputEnvironmentVariable(dict):
|
|
|
4190
4300
|
@_builtins.property
|
|
4191
4301
|
@pulumi.getter
|
|
4192
4302
|
def name(self) -> _builtins.str:
|
|
4193
|
-
"""
|
|
4194
|
-
: Name of the resource.
|
|
4195
|
-
"""
|
|
4196
4303
|
return pulumi.get(self, "name")
|
|
4197
4304
|
|
|
4198
4305
|
@_builtins.property
|
|
4199
4306
|
@pulumi.getter
|
|
4200
4307
|
def type(self) -> _builtins.str:
|
|
4201
|
-
"""
|
|
4202
|
-
: Type of the custom secrets manager, typically set to `CustomSecretManager`.
|
|
4203
|
-
"""
|
|
4204
4308
|
return pulumi.get(self, "type")
|
|
4205
4309
|
|
|
4206
4310
|
@_builtins.property
|
|
@@ -4701,8 +4805,8 @@ class ConnectorPdcHost(dict):
|
|
|
4701
4805
|
hostname: _builtins.str,
|
|
4702
4806
|
attributes: Optional[Mapping[str, _builtins.str]] = None):
|
|
4703
4807
|
"""
|
|
4704
|
-
:param _builtins.str hostname:
|
|
4705
|
-
:param Mapping[str, _builtins.str] attributes:
|
|
4808
|
+
:param _builtins.str hostname: hostname
|
|
4809
|
+
:param Mapping[str, _builtins.str] attributes: attributes for current host
|
|
4706
4810
|
"""
|
|
4707
4811
|
pulumi.set(__self__, "hostname", hostname)
|
|
4708
4812
|
if attributes is not None:
|
|
@@ -4712,7 +4816,7 @@ class ConnectorPdcHost(dict):
|
|
|
4712
4816
|
@pulumi.getter
|
|
4713
4817
|
def hostname(self) -> _builtins.str:
|
|
4714
4818
|
"""
|
|
4715
|
-
|
|
4819
|
+
hostname
|
|
4716
4820
|
"""
|
|
4717
4821
|
return pulumi.get(self, "hostname")
|
|
4718
4822
|
|
|
@@ -4720,7 +4824,7 @@ class ConnectorPdcHost(dict):
|
|
|
4720
4824
|
@pulumi.getter
|
|
4721
4825
|
def attributes(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
4722
4826
|
"""
|
|
4723
|
-
|
|
4827
|
+
attributes for current host
|
|
4724
4828
|
"""
|
|
4725
4829
|
return pulumi.get(self, "attributes")
|
|
4726
4830
|
|
|
@@ -4911,7 +5015,7 @@ class DockerConnectorCredentials(dict):
|
|
|
4911
5015
|
username: Optional[_builtins.str] = None,
|
|
4912
5016
|
username_ref: Optional[_builtins.str] = None):
|
|
4913
5017
|
"""
|
|
4914
|
-
:param _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}.
|
|
5018
|
+
:param _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}.
|
|
4915
5019
|
:param _builtins.str username: The username to use for the docker registry.
|
|
4916
5020
|
:param _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}.
|
|
4917
5021
|
"""
|
|
@@ -4925,7 +5029,7 @@ class DockerConnectorCredentials(dict):
|
|
|
4925
5029
|
@pulumi.getter(name="passwordRef")
|
|
4926
5030
|
def password_ref(self) -> _builtins.str:
|
|
4927
5031
|
"""
|
|
4928
|
-
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}.
|
|
5032
|
+
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}.
|
|
4929
5033
|
"""
|
|
4930
5034
|
return pulumi.get(self, "password_ref")
|
|
4931
5035
|
|
|
@@ -4971,7 +5075,7 @@ class ElasticsearchConnectorApiToken(dict):
|
|
|
4971
5075
|
client_id: _builtins.str,
|
|
4972
5076
|
client_secret_ref: _builtins.str):
|
|
4973
5077
|
"""
|
|
4974
|
-
:param _builtins.str client_id: The
|
|
5078
|
+
:param _builtins.str client_id: The API Key id used for connecting to ElasticSearch.
|
|
4975
5079
|
:param _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}.
|
|
4976
5080
|
"""
|
|
4977
5081
|
pulumi.set(__self__, "client_id", client_id)
|
|
@@ -4981,7 +5085,7 @@ class ElasticsearchConnectorApiToken(dict):
|
|
|
4981
5085
|
@pulumi.getter(name="clientId")
|
|
4982
5086
|
def client_id(self) -> _builtins.str:
|
|
4983
5087
|
"""
|
|
4984
|
-
The
|
|
5088
|
+
The API Key id used for connecting to ElasticSearch.
|
|
4985
5089
|
"""
|
|
4986
5090
|
return pulumi.get(self, "client_id")
|
|
4987
5091
|
|
|
@@ -5188,21 +5292,21 @@ class EnvironmentGitDetails(dict):
|
|
|
5188
5292
|
"""
|
|
5189
5293
|
:param _builtins.str base_branch: Name of the default branch (this checks out a new branch titled by branch_name).
|
|
5190
5294
|
:param _builtins.str branch: Name of the branch.
|
|
5191
|
-
:param _builtins.str commit_message: message for the commit
|
|
5192
|
-
:param _builtins.str connector_ref: Identifier of the Harness Connector used for
|
|
5295
|
+
:param _builtins.str commit_message: Commit message used for the merge commit.
|
|
5296
|
+
:param _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}.
|
|
5193
5297
|
:param _builtins.str file_path: File path of the Entity in the repository.
|
|
5194
|
-
:param _builtins.bool import_from_git:
|
|
5195
|
-
:param _builtins.bool is_force_import:
|
|
5298
|
+
:param _builtins.bool import_from_git: import environment from git
|
|
5299
|
+
:param _builtins.bool is_force_import: force import environment from remote even if same file path already exist
|
|
5196
5300
|
:param _builtins.bool is_harnesscode_repo: If the gitProvider is HarnessCode
|
|
5197
5301
|
:param _builtins.bool is_new_branch: If a new branch creation is requested.
|
|
5198
|
-
:param _builtins.str last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
5199
|
-
:param _builtins.str last_object_id: Last object identifier (for Github). To be provided only when updating
|
|
5302
|
+
:param _builtins.str last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
|
|
5303
|
+
:param _builtins.str last_object_id: Last object identifier (for Github). To be provided only when updating Pipeline.
|
|
5200
5304
|
:param _builtins.str load_from_cache: If the Entity is to be fetched from cache
|
|
5201
|
-
:param _builtins.bool load_from_fallback_branch:
|
|
5305
|
+
:param _builtins.bool load_from_fallback_branch: If the Entity is to be fetched from fallbackBranch
|
|
5202
5306
|
:param _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}.
|
|
5203
5307
|
:param _builtins.str parent_entity_repo_name: Name of the repository where parent entity lies.
|
|
5204
5308
|
:param _builtins.str repo_name: Name of the repository.
|
|
5205
|
-
:param _builtins.str store_type:
|
|
5309
|
+
:param _builtins.str store_type: Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
5206
5310
|
"""
|
|
5207
5311
|
if base_branch is not None:
|
|
5208
5312
|
pulumi.set(__self__, "base_branch", base_branch)
|
|
@@ -5259,7 +5363,7 @@ class EnvironmentGitDetails(dict):
|
|
|
5259
5363
|
@pulumi.getter(name="commitMessage")
|
|
5260
5364
|
def commit_message(self) -> Optional[_builtins.str]:
|
|
5261
5365
|
"""
|
|
5262
|
-
message for the commit
|
|
5366
|
+
Commit message used for the merge commit.
|
|
5263
5367
|
"""
|
|
5264
5368
|
return pulumi.get(self, "commit_message")
|
|
5265
5369
|
|
|
@@ -5267,7 +5371,7 @@ class EnvironmentGitDetails(dict):
|
|
|
5267
5371
|
@pulumi.getter(name="connectorRef")
|
|
5268
5372
|
def connector_ref(self) -> Optional[_builtins.str]:
|
|
5269
5373
|
"""
|
|
5270
|
-
Identifier of the Harness Connector used for
|
|
5374
|
+
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}.
|
|
5271
5375
|
"""
|
|
5272
5376
|
return pulumi.get(self, "connector_ref")
|
|
5273
5377
|
|
|
@@ -5283,7 +5387,7 @@ class EnvironmentGitDetails(dict):
|
|
|
5283
5387
|
@pulumi.getter(name="importFromGit")
|
|
5284
5388
|
def import_from_git(self) -> Optional[_builtins.bool]:
|
|
5285
5389
|
"""
|
|
5286
|
-
|
|
5390
|
+
import environment from git
|
|
5287
5391
|
"""
|
|
5288
5392
|
return pulumi.get(self, "import_from_git")
|
|
5289
5393
|
|
|
@@ -5291,7 +5395,7 @@ class EnvironmentGitDetails(dict):
|
|
|
5291
5395
|
@pulumi.getter(name="isForceImport")
|
|
5292
5396
|
def is_force_import(self) -> Optional[_builtins.bool]:
|
|
5293
5397
|
"""
|
|
5294
|
-
|
|
5398
|
+
force import environment from remote even if same file path already exist
|
|
5295
5399
|
"""
|
|
5296
5400
|
return pulumi.get(self, "is_force_import")
|
|
5297
5401
|
|
|
@@ -5315,7 +5419,7 @@ class EnvironmentGitDetails(dict):
|
|
|
5315
5419
|
@pulumi.getter(name="lastCommitId")
|
|
5316
5420
|
def last_commit_id(self) -> Optional[_builtins.str]:
|
|
5317
5421
|
"""
|
|
5318
|
-
Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
5422
|
+
Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
|
|
5319
5423
|
"""
|
|
5320
5424
|
return pulumi.get(self, "last_commit_id")
|
|
5321
5425
|
|
|
@@ -5323,7 +5427,7 @@ class EnvironmentGitDetails(dict):
|
|
|
5323
5427
|
@pulumi.getter(name="lastObjectId")
|
|
5324
5428
|
def last_object_id(self) -> Optional[_builtins.str]:
|
|
5325
5429
|
"""
|
|
5326
|
-
Last object identifier (for Github). To be provided only when updating
|
|
5430
|
+
Last object identifier (for Github). To be provided only when updating Pipeline.
|
|
5327
5431
|
"""
|
|
5328
5432
|
return pulumi.get(self, "last_object_id")
|
|
5329
5433
|
|
|
@@ -5339,7 +5443,7 @@ class EnvironmentGitDetails(dict):
|
|
|
5339
5443
|
@pulumi.getter(name="loadFromFallbackBranch")
|
|
5340
5444
|
def load_from_fallback_branch(self) -> Optional[_builtins.bool]:
|
|
5341
5445
|
"""
|
|
5342
|
-
|
|
5446
|
+
If the Entity is to be fetched from fallbackBranch
|
|
5343
5447
|
"""
|
|
5344
5448
|
return pulumi.get(self, "load_from_fallback_branch")
|
|
5345
5449
|
|
|
@@ -5371,7 +5475,7 @@ class EnvironmentGitDetails(dict):
|
|
|
5371
5475
|
@pulumi.getter(name="storeType")
|
|
5372
5476
|
def store_type(self) -> Optional[_builtins.str]:
|
|
5373
5477
|
"""
|
|
5374
|
-
|
|
5478
|
+
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
5375
5479
|
"""
|
|
5376
5480
|
return pulumi.get(self, "store_type")
|
|
5377
5481
|
|
|
@@ -5469,8 +5573,8 @@ class FeatureFlagEnvironmentAddTargetRule(dict):
|
|
|
5469
5573
|
targets: Optional[Sequence[_builtins.str]] = None,
|
|
5470
5574
|
variation: Optional[_builtins.str] = None):
|
|
5471
5575
|
"""
|
|
5472
|
-
:param Sequence[_builtins.str] targets: The targets
|
|
5473
|
-
:param _builtins.str variation: The identifier of the variation
|
|
5576
|
+
:param Sequence[_builtins.str] targets: The targets that should be served this variation
|
|
5577
|
+
:param _builtins.str variation: The identifier of the variation
|
|
5474
5578
|
"""
|
|
5475
5579
|
if targets is not None:
|
|
5476
5580
|
pulumi.set(__self__, "targets", targets)
|
|
@@ -5481,7 +5585,7 @@ class FeatureFlagEnvironmentAddTargetRule(dict):
|
|
|
5481
5585
|
@pulumi.getter
|
|
5482
5586
|
def targets(self) -> Optional[Sequence[_builtins.str]]:
|
|
5483
5587
|
"""
|
|
5484
|
-
The targets
|
|
5588
|
+
The targets that should be served this variation
|
|
5485
5589
|
"""
|
|
5486
5590
|
return pulumi.get(self, "targets")
|
|
5487
5591
|
|
|
@@ -5489,7 +5593,7 @@ class FeatureFlagEnvironmentAddTargetRule(dict):
|
|
|
5489
5593
|
@pulumi.getter
|
|
5490
5594
|
def variation(self) -> Optional[_builtins.str]:
|
|
5491
5595
|
"""
|
|
5492
|
-
The identifier of the variation
|
|
5596
|
+
The identifier of the variation
|
|
5493
5597
|
"""
|
|
5494
5598
|
return pulumi.get(self, "variation")
|
|
5495
5599
|
|
|
@@ -5524,7 +5628,7 @@ class FeatureFlagTargetGroupRule(dict):
|
|
|
5524
5628
|
:param _builtins.str attribute: The attribute to use in the clause. This can be any target attribute
|
|
5525
5629
|
:param _builtins.str op: The type of operation such as equals, starts_with, contains
|
|
5526
5630
|
:param Sequence[_builtins.str] values: The values that are compared against the operator
|
|
5527
|
-
:param _builtins.str id: The ID
|
|
5631
|
+
:param _builtins.str id: The rule ID. Gets auto-generated by the system
|
|
5528
5632
|
:param _builtins.bool negate: Is the operation negated?
|
|
5529
5633
|
"""
|
|
5530
5634
|
pulumi.set(__self__, "attribute", attribute)
|
|
@@ -5563,7 +5667,7 @@ class FeatureFlagTargetGroupRule(dict):
|
|
|
5563
5667
|
@pulumi.getter
|
|
5564
5668
|
def id(self) -> Optional[_builtins.str]:
|
|
5565
5669
|
"""
|
|
5566
|
-
The ID
|
|
5670
|
+
The rule ID. Gets auto-generated by the system
|
|
5567
5671
|
"""
|
|
5568
5672
|
return pulumi.get(self, "id")
|
|
5569
5673
|
|
|
@@ -10011,7 +10115,7 @@ class GithubConnectorCredentialsHttp(dict):
|
|
|
10011
10115
|
username: Optional[_builtins.str] = None,
|
|
10012
10116
|
username_ref: Optional[_builtins.str] = None):
|
|
10013
10117
|
"""
|
|
10014
|
-
:param Sequence['GithubConnectorCredentialsHttpAnonymouseArgs'] anonymouses: Configuration for using the http anonymous
|
|
10118
|
+
:param Sequence['GithubConnectorCredentialsHttpAnonymouseArgs'] anonymouses: Configuration for using the github http anonymous for interacting with the github api.
|
|
10015
10119
|
:param 'GithubConnectorCredentialsHttpGithubAppArgs' github_app: Configuration for using the github app for interacting with the github api.
|
|
10016
10120
|
:param _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}.
|
|
10017
10121
|
:param _builtins.str username: Username to use for authentication.
|
|
@@ -10032,7 +10136,7 @@ class GithubConnectorCredentialsHttp(dict):
|
|
|
10032
10136
|
@pulumi.getter
|
|
10033
10137
|
def anonymouses(self) -> Optional[Sequence['outputs.GithubConnectorCredentialsHttpAnonymouse']]:
|
|
10034
10138
|
"""
|
|
10035
|
-
Configuration for using the http anonymous
|
|
10139
|
+
Configuration for using the github http anonymous for interacting with the github api.
|
|
10036
10140
|
"""
|
|
10037
10141
|
return pulumi.get(self, "anonymouses")
|
|
10038
10142
|
|
|
@@ -96728,7 +96832,7 @@ class HarRegistryConfig(dict):
|
|
|
96728
96832
|
:param _builtins.str type: Type of registry (VIRTUAL or UPSTREAM)
|
|
96729
96833
|
:param _builtins.str auth_type: Type of authentication for UPSTREAM registry type (UserPassword, Anonymous)
|
|
96730
96834
|
:param Sequence['HarRegistryConfigAuthArgs'] auths: Authentication configuration for UPSTREAM registry type
|
|
96731
|
-
:param _builtins.str source:
|
|
96835
|
+
:param _builtins.str source: Upstream source
|
|
96732
96836
|
:param Sequence[_builtins.str] upstream_proxies: List of upstream proxies for VIRTUAL registry type
|
|
96733
96837
|
:param _builtins.str url: URL of the upstream (required if type=UPSTREAM & package_type=HELM)
|
|
96734
96838
|
"""
|
|
@@ -96772,7 +96876,7 @@ class HarRegistryConfig(dict):
|
|
|
96772
96876
|
@pulumi.getter
|
|
96773
96877
|
def source(self) -> Optional[_builtins.str]:
|
|
96774
96878
|
"""
|
|
96775
|
-
|
|
96879
|
+
Upstream source
|
|
96776
96880
|
"""
|
|
96777
96881
|
return pulumi.get(self, "source")
|
|
96778
96882
|
|
|
@@ -96800,8 +96904,18 @@ class HarRegistryConfigAuth(dict):
|
|
|
96800
96904
|
suggest = None
|
|
96801
96905
|
if key == "authType":
|
|
96802
96906
|
suggest = "auth_type"
|
|
96907
|
+
elif key == "accessKey":
|
|
96908
|
+
suggest = "access_key"
|
|
96909
|
+
elif key == "accessKeyIdentifier":
|
|
96910
|
+
suggest = "access_key_identifier"
|
|
96911
|
+
elif key == "accessKeySecretPath":
|
|
96912
|
+
suggest = "access_key_secret_path"
|
|
96803
96913
|
elif key == "secretIdentifier":
|
|
96804
96914
|
suggest = "secret_identifier"
|
|
96915
|
+
elif key == "secretKeyIdentifier":
|
|
96916
|
+
suggest = "secret_key_identifier"
|
|
96917
|
+
elif key == "secretKeySecretPath":
|
|
96918
|
+
suggest = "secret_key_secret_path"
|
|
96805
96919
|
elif key == "secretSpacePath":
|
|
96806
96920
|
suggest = "secret_space_path"
|
|
96807
96921
|
elif key == "userName":
|
|
@@ -96820,7 +96934,12 @@ class HarRegistryConfigAuth(dict):
|
|
|
96820
96934
|
|
|
96821
96935
|
def __init__(__self__, *,
|
|
96822
96936
|
auth_type: _builtins.str,
|
|
96937
|
+
access_key: Optional[_builtins.str] = None,
|
|
96938
|
+
access_key_identifier: Optional[_builtins.str] = None,
|
|
96939
|
+
access_key_secret_path: Optional[_builtins.str] = None,
|
|
96823
96940
|
secret_identifier: Optional[_builtins.str] = None,
|
|
96941
|
+
secret_key_identifier: Optional[_builtins.str] = None,
|
|
96942
|
+
secret_key_secret_path: Optional[_builtins.str] = None,
|
|
96824
96943
|
secret_space_path: Optional[_builtins.str] = None,
|
|
96825
96944
|
user_name: Optional[_builtins.str] = None):
|
|
96826
96945
|
"""
|
|
@@ -96830,8 +96949,18 @@ class HarRegistryConfigAuth(dict):
|
|
|
96830
96949
|
:param _builtins.str user_name: User name for UserPassword auth type
|
|
96831
96950
|
"""
|
|
96832
96951
|
pulumi.set(__self__, "auth_type", auth_type)
|
|
96952
|
+
if access_key is not None:
|
|
96953
|
+
pulumi.set(__self__, "access_key", access_key)
|
|
96954
|
+
if access_key_identifier is not None:
|
|
96955
|
+
pulumi.set(__self__, "access_key_identifier", access_key_identifier)
|
|
96956
|
+
if access_key_secret_path is not None:
|
|
96957
|
+
pulumi.set(__self__, "access_key_secret_path", access_key_secret_path)
|
|
96833
96958
|
if secret_identifier is not None:
|
|
96834
96959
|
pulumi.set(__self__, "secret_identifier", secret_identifier)
|
|
96960
|
+
if secret_key_identifier is not None:
|
|
96961
|
+
pulumi.set(__self__, "secret_key_identifier", secret_key_identifier)
|
|
96962
|
+
if secret_key_secret_path is not None:
|
|
96963
|
+
pulumi.set(__self__, "secret_key_secret_path", secret_key_secret_path)
|
|
96835
96964
|
if secret_space_path is not None:
|
|
96836
96965
|
pulumi.set(__self__, "secret_space_path", secret_space_path)
|
|
96837
96966
|
if user_name is not None:
|
|
@@ -96845,6 +96974,21 @@ class HarRegistryConfigAuth(dict):
|
|
|
96845
96974
|
"""
|
|
96846
96975
|
return pulumi.get(self, "auth_type")
|
|
96847
96976
|
|
|
96977
|
+
@_builtins.property
|
|
96978
|
+
@pulumi.getter(name="accessKey")
|
|
96979
|
+
def access_key(self) -> Optional[_builtins.str]:
|
|
96980
|
+
return pulumi.get(self, "access_key")
|
|
96981
|
+
|
|
96982
|
+
@_builtins.property
|
|
96983
|
+
@pulumi.getter(name="accessKeyIdentifier")
|
|
96984
|
+
def access_key_identifier(self) -> Optional[_builtins.str]:
|
|
96985
|
+
return pulumi.get(self, "access_key_identifier")
|
|
96986
|
+
|
|
96987
|
+
@_builtins.property
|
|
96988
|
+
@pulumi.getter(name="accessKeySecretPath")
|
|
96989
|
+
def access_key_secret_path(self) -> Optional[_builtins.str]:
|
|
96990
|
+
return pulumi.get(self, "access_key_secret_path")
|
|
96991
|
+
|
|
96848
96992
|
@_builtins.property
|
|
96849
96993
|
@pulumi.getter(name="secretIdentifier")
|
|
96850
96994
|
def secret_identifier(self) -> Optional[_builtins.str]:
|
|
@@ -96853,6 +96997,16 @@ class HarRegistryConfigAuth(dict):
|
|
|
96853
96997
|
"""
|
|
96854
96998
|
return pulumi.get(self, "secret_identifier")
|
|
96855
96999
|
|
|
97000
|
+
@_builtins.property
|
|
97001
|
+
@pulumi.getter(name="secretKeyIdentifier")
|
|
97002
|
+
def secret_key_identifier(self) -> Optional[_builtins.str]:
|
|
97003
|
+
return pulumi.get(self, "secret_key_identifier")
|
|
97004
|
+
|
|
97005
|
+
@_builtins.property
|
|
97006
|
+
@pulumi.getter(name="secretKeySecretPath")
|
|
97007
|
+
def secret_key_secret_path(self) -> Optional[_builtins.str]:
|
|
97008
|
+
return pulumi.get(self, "secret_key_secret_path")
|
|
97009
|
+
|
|
96856
97010
|
@_builtins.property
|
|
96857
97011
|
@pulumi.getter(name="secretSpacePath")
|
|
96858
97012
|
def secret_space_path(self) -> Optional[_builtins.str]:
|
|
@@ -96954,8 +97108,8 @@ class InfraVariableSetConnector(dict):
|
|
|
96954
97108
|
connector_ref: _builtins.str,
|
|
96955
97109
|
type: _builtins.str):
|
|
96956
97110
|
"""
|
|
96957
|
-
:param _builtins.str connector_ref:
|
|
96958
|
-
:param _builtins.str type: Type
|
|
97111
|
+
:param _builtins.str connector_ref: Connector Ref is the reference to the connector
|
|
97112
|
+
:param _builtins.str type: Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
96959
97113
|
"""
|
|
96960
97114
|
pulumi.set(__self__, "connector_ref", connector_ref)
|
|
96961
97115
|
pulumi.set(__self__, "type", type)
|
|
@@ -96964,7 +97118,7 @@ class InfraVariableSetConnector(dict):
|
|
|
96964
97118
|
@pulumi.getter(name="connectorRef")
|
|
96965
97119
|
def connector_ref(self) -> _builtins.str:
|
|
96966
97120
|
"""
|
|
96967
|
-
|
|
97121
|
+
Connector Ref is the reference to the connector
|
|
96968
97122
|
"""
|
|
96969
97123
|
return pulumi.get(self, "connector_ref")
|
|
96970
97124
|
|
|
@@ -96972,7 +97126,7 @@ class InfraVariableSetConnector(dict):
|
|
|
96972
97126
|
@pulumi.getter
|
|
96973
97127
|
def type(self) -> _builtins.str:
|
|
96974
97128
|
"""
|
|
96975
|
-
Type
|
|
97129
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
96976
97130
|
"""
|
|
96977
97131
|
return pulumi.get(self, "type")
|
|
96978
97132
|
|
|
@@ -97001,7 +97155,7 @@ class InfraVariableSetEnvironmentVariable(dict):
|
|
|
97001
97155
|
value: _builtins.str,
|
|
97002
97156
|
value_type: _builtins.str):
|
|
97003
97157
|
"""
|
|
97004
|
-
:param _builtins.str key: Key is the identifier for the variable. Must be unique within the
|
|
97158
|
+
:param _builtins.str key: Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
97005
97159
|
: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.
|
|
97006
97160
|
:param _builtins.str value_type: Value type indicates the value type of the variable. Currently we support string and secret.
|
|
97007
97161
|
"""
|
|
@@ -97013,7 +97167,7 @@ class InfraVariableSetEnvironmentVariable(dict):
|
|
|
97013
97167
|
@pulumi.getter
|
|
97014
97168
|
def key(self) -> _builtins.str:
|
|
97015
97169
|
"""
|
|
97016
|
-
Key is the identifier for the variable. Must be unique within the
|
|
97170
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
97017
97171
|
"""
|
|
97018
97172
|
return pulumi.get(self, "key")
|
|
97019
97173
|
|
|
@@ -97058,7 +97212,7 @@ class InfraVariableSetTerraformVariable(dict):
|
|
|
97058
97212
|
value: _builtins.str,
|
|
97059
97213
|
value_type: _builtins.str):
|
|
97060
97214
|
"""
|
|
97061
|
-
:param _builtins.str key: Key is the identifier for the variable. Must be unique within the
|
|
97215
|
+
:param _builtins.str key: Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
97062
97216
|
: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.
|
|
97063
97217
|
:param _builtins.str value_type: Value type indicates the value type of the variable. Currently we support string and secret.
|
|
97064
97218
|
"""
|
|
@@ -97070,7 +97224,7 @@ class InfraVariableSetTerraformVariable(dict):
|
|
|
97070
97224
|
@pulumi.getter
|
|
97071
97225
|
def key(self) -> _builtins.str:
|
|
97072
97226
|
"""
|
|
97073
|
-
Key is the identifier for the variable. Must be unique within the
|
|
97227
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
97074
97228
|
"""
|
|
97075
97229
|
return pulumi.get(self, "key")
|
|
97076
97230
|
|
|
@@ -97131,7 +97285,7 @@ class InfraVariableSetTerraformVariableFile(dict):
|
|
|
97131
97285
|
: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
|
|
97132
97286
|
: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.
|
|
97133
97287
|
:param _builtins.str repository_path: Repository path is the path in which the variables reside.
|
|
97134
|
-
:param _builtins.str repository_sha: Repository commit is
|
|
97288
|
+
: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.
|
|
97135
97289
|
"""
|
|
97136
97290
|
pulumi.set(__self__, "repository", repository)
|
|
97137
97291
|
pulumi.set(__self__, "repository_connector", repository_connector)
|
|
@@ -97188,7 +97342,7 @@ class InfraVariableSetTerraformVariableFile(dict):
|
|
|
97188
97342
|
@pulumi.getter(name="repositorySha")
|
|
97189
97343
|
def repository_sha(self) -> Optional[_builtins.str]:
|
|
97190
97344
|
"""
|
|
97191
|
-
Repository commit is
|
|
97345
|
+
Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
97192
97346
|
"""
|
|
97193
97347
|
return pulumi.get(self, "repository_sha")
|
|
97194
97348
|
|
|
@@ -97263,21 +97417,21 @@ class InfrastructureGitDetails(dict):
|
|
|
97263
97417
|
"""
|
|
97264
97418
|
:param _builtins.str base_branch: Name of the default branch (this checks out a new branch titled by branch_name).
|
|
97265
97419
|
:param _builtins.str branch: Name of the branch.
|
|
97266
|
-
:param _builtins.str commit_message: message for the commit
|
|
97267
|
-
:param _builtins.str connector_ref: Identifier of the Harness Connector used for
|
|
97420
|
+
:param _builtins.str commit_message: Commit message used for the merge commit.
|
|
97421
|
+
:param _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}.
|
|
97268
97422
|
:param _builtins.str file_path: File path of the Entity in the repository.
|
|
97269
|
-
:param _builtins.bool import_from_git:
|
|
97270
|
-
:param _builtins.bool is_force_import:
|
|
97423
|
+
:param _builtins.bool import_from_git: import infrastructure from git
|
|
97424
|
+
:param _builtins.bool is_force_import: force import infrastructure from remote even if same file path already exist
|
|
97271
97425
|
:param _builtins.bool is_harnesscode_repo: If the gitProvider is HarnessCode
|
|
97272
97426
|
:param _builtins.bool is_new_branch: If a new branch creation is requested.
|
|
97273
|
-
:param _builtins.str last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
97274
|
-
:param _builtins.str last_object_id: Last object identifier (for Github). To be provided only when updating
|
|
97427
|
+
:param _builtins.str last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating infrastructure.
|
|
97428
|
+
:param _builtins.str last_object_id: Last object identifier (for Github). To be provided only when updating infrastructure.
|
|
97275
97429
|
:param _builtins.str load_from_cache: If the Entity is to be fetched from cache
|
|
97276
|
-
:param _builtins.bool load_from_fallback_branch:
|
|
97430
|
+
:param _builtins.bool load_from_fallback_branch: If the Entity is to be fetched from fallbackBranch
|
|
97277
97431
|
:param _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}.
|
|
97278
97432
|
:param _builtins.str parent_entity_repo_name: Name of the repository where parent entity lies.
|
|
97279
97433
|
:param _builtins.str repo_name: Name of the repository.
|
|
97280
|
-
:param _builtins.str store_type:
|
|
97434
|
+
:param _builtins.str store_type: Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
97281
97435
|
"""
|
|
97282
97436
|
if base_branch is not None:
|
|
97283
97437
|
pulumi.set(__self__, "base_branch", base_branch)
|
|
@@ -97334,7 +97488,7 @@ class InfrastructureGitDetails(dict):
|
|
|
97334
97488
|
@pulumi.getter(name="commitMessage")
|
|
97335
97489
|
def commit_message(self) -> Optional[_builtins.str]:
|
|
97336
97490
|
"""
|
|
97337
|
-
message for the commit
|
|
97491
|
+
Commit message used for the merge commit.
|
|
97338
97492
|
"""
|
|
97339
97493
|
return pulumi.get(self, "commit_message")
|
|
97340
97494
|
|
|
@@ -97342,7 +97496,7 @@ class InfrastructureGitDetails(dict):
|
|
|
97342
97496
|
@pulumi.getter(name="connectorRef")
|
|
97343
97497
|
def connector_ref(self) -> Optional[_builtins.str]:
|
|
97344
97498
|
"""
|
|
97345
|
-
Identifier of the Harness Connector used for
|
|
97499
|
+
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}.
|
|
97346
97500
|
"""
|
|
97347
97501
|
return pulumi.get(self, "connector_ref")
|
|
97348
97502
|
|
|
@@ -97358,7 +97512,7 @@ class InfrastructureGitDetails(dict):
|
|
|
97358
97512
|
@pulumi.getter(name="importFromGit")
|
|
97359
97513
|
def import_from_git(self) -> Optional[_builtins.bool]:
|
|
97360
97514
|
"""
|
|
97361
|
-
|
|
97515
|
+
import infrastructure from git
|
|
97362
97516
|
"""
|
|
97363
97517
|
return pulumi.get(self, "import_from_git")
|
|
97364
97518
|
|
|
@@ -97366,7 +97520,7 @@ class InfrastructureGitDetails(dict):
|
|
|
97366
97520
|
@pulumi.getter(name="isForceImport")
|
|
97367
97521
|
def is_force_import(self) -> Optional[_builtins.bool]:
|
|
97368
97522
|
"""
|
|
97369
|
-
|
|
97523
|
+
force import infrastructure from remote even if same file path already exist
|
|
97370
97524
|
"""
|
|
97371
97525
|
return pulumi.get(self, "is_force_import")
|
|
97372
97526
|
|
|
@@ -97390,7 +97544,7 @@ class InfrastructureGitDetails(dict):
|
|
|
97390
97544
|
@pulumi.getter(name="lastCommitId")
|
|
97391
97545
|
def last_commit_id(self) -> Optional[_builtins.str]:
|
|
97392
97546
|
"""
|
|
97393
|
-
Last commit identifier (for Git Repositories other than Github). To be provided only when updating
|
|
97547
|
+
Last commit identifier (for Git Repositories other than Github). To be provided only when updating infrastructure.
|
|
97394
97548
|
"""
|
|
97395
97549
|
return pulumi.get(self, "last_commit_id")
|
|
97396
97550
|
|
|
@@ -97398,7 +97552,7 @@ class InfrastructureGitDetails(dict):
|
|
|
97398
97552
|
@pulumi.getter(name="lastObjectId")
|
|
97399
97553
|
def last_object_id(self) -> Optional[_builtins.str]:
|
|
97400
97554
|
"""
|
|
97401
|
-
Last object identifier (for Github). To be provided only when updating
|
|
97555
|
+
Last object identifier (for Github). To be provided only when updating infrastructure.
|
|
97402
97556
|
"""
|
|
97403
97557
|
return pulumi.get(self, "last_object_id")
|
|
97404
97558
|
|
|
@@ -97414,7 +97568,7 @@ class InfrastructureGitDetails(dict):
|
|
|
97414
97568
|
@pulumi.getter(name="loadFromFallbackBranch")
|
|
97415
97569
|
def load_from_fallback_branch(self) -> Optional[_builtins.bool]:
|
|
97416
97570
|
"""
|
|
97417
|
-
|
|
97571
|
+
If the Entity is to be fetched from fallbackBranch
|
|
97418
97572
|
"""
|
|
97419
97573
|
return pulumi.get(self, "load_from_fallback_branch")
|
|
97420
97574
|
|
|
@@ -97446,7 +97600,7 @@ class InfrastructureGitDetails(dict):
|
|
|
97446
97600
|
@pulumi.getter(name="storeType")
|
|
97447
97601
|
def store_type(self) -> Optional[_builtins.str]:
|
|
97448
97602
|
"""
|
|
97449
|
-
|
|
97603
|
+
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
|
|
97450
97604
|
"""
|
|
97451
97605
|
return pulumi.get(self, "store_type")
|
|
97452
97606
|
|
|
@@ -97901,7 +98055,7 @@ class JenkinsConnectorAuthJenkinsUserNamePassword(dict):
|
|
|
97901
98055
|
username: Optional[_builtins.str] = None,
|
|
97902
98056
|
username_ref: Optional[_builtins.str] = None):
|
|
97903
98057
|
"""
|
|
97904
|
-
:param _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}.
|
|
98058
|
+
:param _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}.
|
|
97905
98059
|
:param _builtins.str username: Username to use for authentication.
|
|
97906
98060
|
:param _builtins.str username_ref: Username reference to use for authentication.
|
|
97907
98061
|
"""
|
|
@@ -97915,7 +98069,7 @@ class JenkinsConnectorAuthJenkinsUserNamePassword(dict):
|
|
|
97915
98069
|
@pulumi.getter(name="passwordRef")
|
|
97916
98070
|
def password_ref(self) -> _builtins.str:
|
|
97917
98071
|
"""
|
|
97918
|
-
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}.
|
|
98072
|
+
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}.
|
|
97919
98073
|
"""
|
|
97920
98074
|
return pulumi.get(self, "password_ref")
|
|
97921
98075
|
|
|
@@ -98519,8 +98673,8 @@ class ManualFreezeCurrentOrUpcomingWindow(dict):
|
|
|
98519
98673
|
end_time: Optional[_builtins.int] = None,
|
|
98520
98674
|
start_time: Optional[_builtins.int] = None):
|
|
98521
98675
|
"""
|
|
98522
|
-
:param _builtins.int end_time: End time of the freeze
|
|
98523
|
-
:param _builtins.int start_time: Start time of the freeze
|
|
98676
|
+
:param _builtins.int end_time: End time of the freeze window
|
|
98677
|
+
:param _builtins.int start_time: Start time of the freeze window
|
|
98524
98678
|
"""
|
|
98525
98679
|
if end_time is not None:
|
|
98526
98680
|
pulumi.set(__self__, "end_time", end_time)
|
|
@@ -98531,7 +98685,7 @@ class ManualFreezeCurrentOrUpcomingWindow(dict):
|
|
|
98531
98685
|
@pulumi.getter(name="endTime")
|
|
98532
98686
|
def end_time(self) -> Optional[_builtins.int]:
|
|
98533
98687
|
"""
|
|
98534
|
-
End time of the freeze
|
|
98688
|
+
End time of the freeze window
|
|
98535
98689
|
"""
|
|
98536
98690
|
return pulumi.get(self, "end_time")
|
|
98537
98691
|
|
|
@@ -98539,7 +98693,7 @@ class ManualFreezeCurrentOrUpcomingWindow(dict):
|
|
|
98539
98693
|
@pulumi.getter(name="startTime")
|
|
98540
98694
|
def start_time(self) -> Optional[_builtins.int]:
|
|
98541
98695
|
"""
|
|
98542
|
-
Start time of the freeze
|
|
98696
|
+
Start time of the freeze window
|
|
98543
98697
|
"""
|
|
98544
98698
|
return pulumi.get(self, "start_time")
|
|
98545
98699
|
|
|
@@ -98574,11 +98728,11 @@ class ManualFreezeFreezeWindow(dict):
|
|
|
98574
98728
|
start_time: Optional[_builtins.str] = None,
|
|
98575
98729
|
time_zone: Optional[_builtins.str] = None):
|
|
98576
98730
|
"""
|
|
98577
|
-
:param _builtins.str duration: Duration of the freeze
|
|
98578
|
-
:param _builtins.str end_time: End
|
|
98731
|
+
:param _builtins.str duration: Duration of the freeze window
|
|
98732
|
+
:param _builtins.str end_time: End Time of the freeze window
|
|
98579
98733
|
:param Sequence['ManualFreezeFreezeWindowRecurrenceArgs'] recurrences: Recurrence of the freeze window
|
|
98580
|
-
:param _builtins.str start_time: Start
|
|
98581
|
-
:param _builtins.str time_zone:
|
|
98734
|
+
:param _builtins.str start_time: Start Time of the freeze window
|
|
98735
|
+
:param _builtins.str time_zone: Time zone of the freeze window
|
|
98582
98736
|
"""
|
|
98583
98737
|
if duration is not None:
|
|
98584
98738
|
pulumi.set(__self__, "duration", duration)
|
|
@@ -98595,7 +98749,7 @@ class ManualFreezeFreezeWindow(dict):
|
|
|
98595
98749
|
@pulumi.getter
|
|
98596
98750
|
def duration(self) -> Optional[_builtins.str]:
|
|
98597
98751
|
"""
|
|
98598
|
-
Duration of the freeze
|
|
98752
|
+
Duration of the freeze window
|
|
98599
98753
|
"""
|
|
98600
98754
|
return pulumi.get(self, "duration")
|
|
98601
98755
|
|
|
@@ -98603,7 +98757,7 @@ class ManualFreezeFreezeWindow(dict):
|
|
|
98603
98757
|
@pulumi.getter(name="endTime")
|
|
98604
98758
|
def end_time(self) -> Optional[_builtins.str]:
|
|
98605
98759
|
"""
|
|
98606
|
-
End
|
|
98760
|
+
End Time of the freeze window
|
|
98607
98761
|
"""
|
|
98608
98762
|
return pulumi.get(self, "end_time")
|
|
98609
98763
|
|
|
@@ -98619,7 +98773,7 @@ class ManualFreezeFreezeWindow(dict):
|
|
|
98619
98773
|
@pulumi.getter(name="startTime")
|
|
98620
98774
|
def start_time(self) -> Optional[_builtins.str]:
|
|
98621
98775
|
"""
|
|
98622
|
-
Start
|
|
98776
|
+
Start Time of the freeze window
|
|
98623
98777
|
"""
|
|
98624
98778
|
return pulumi.get(self, "start_time")
|
|
98625
98779
|
|
|
@@ -98627,7 +98781,7 @@ class ManualFreezeFreezeWindow(dict):
|
|
|
98627
98781
|
@pulumi.getter(name="timeZone")
|
|
98628
98782
|
def time_zone(self) -> Optional[_builtins.str]:
|
|
98629
98783
|
"""
|
|
98630
|
-
|
|
98784
|
+
Time zone of the freeze window
|
|
98631
98785
|
"""
|
|
98632
98786
|
return pulumi.get(self, "time_zone")
|
|
98633
98787
|
|
|
@@ -98656,7 +98810,7 @@ class ManualFreezeFreezeWindowRecurrence(dict):
|
|
|
98656
98810
|
type: Optional[_builtins.str] = None):
|
|
98657
98811
|
"""
|
|
98658
98812
|
:param Sequence['ManualFreezeFreezeWindowRecurrenceRecurrenceSpecArgs'] recurrence_specs: Used to filter resources on their attributes
|
|
98659
|
-
:param _builtins.str type:
|
|
98813
|
+
:param _builtins.str type: Type of the recurrence
|
|
98660
98814
|
"""
|
|
98661
98815
|
if recurrence_specs is not None:
|
|
98662
98816
|
pulumi.set(__self__, "recurrence_specs", recurrence_specs)
|
|
@@ -98675,7 +98829,7 @@ class ManualFreezeFreezeWindowRecurrence(dict):
|
|
|
98675
98829
|
@pulumi.getter
|
|
98676
98830
|
def type(self) -> Optional[_builtins.str]:
|
|
98677
98831
|
"""
|
|
98678
|
-
|
|
98832
|
+
Type of the recurrence
|
|
98679
98833
|
"""
|
|
98680
98834
|
return pulumi.get(self, "type")
|
|
98681
98835
|
|
|
@@ -98686,8 +98840,8 @@ class ManualFreezeFreezeWindowRecurrenceRecurrenceSpec(dict):
|
|
|
98686
98840
|
until: Optional[_builtins.str] = None,
|
|
98687
98841
|
value: Optional[_builtins.int] = None):
|
|
98688
98842
|
"""
|
|
98689
|
-
:param _builtins.str until:
|
|
98690
|
-
:param _builtins.int value:
|
|
98843
|
+
:param _builtins.str until: Time till which freeze window recurrs
|
|
98844
|
+
:param _builtins.int value: Every n months recurrence
|
|
98691
98845
|
"""
|
|
98692
98846
|
if until is not None:
|
|
98693
98847
|
pulumi.set(__self__, "until", until)
|
|
@@ -98698,7 +98852,7 @@ class ManualFreezeFreezeWindowRecurrenceRecurrenceSpec(dict):
|
|
|
98698
98852
|
@pulumi.getter
|
|
98699
98853
|
def until(self) -> Optional[_builtins.str]:
|
|
98700
98854
|
"""
|
|
98701
|
-
|
|
98855
|
+
Time till which freeze window recurrs
|
|
98702
98856
|
"""
|
|
98703
98857
|
return pulumi.get(self, "until")
|
|
98704
98858
|
|
|
@@ -98706,7 +98860,7 @@ class ManualFreezeFreezeWindowRecurrenceRecurrenceSpec(dict):
|
|
|
98706
98860
|
@pulumi.getter
|
|
98707
98861
|
def value(self) -> Optional[_builtins.int]:
|
|
98708
98862
|
"""
|
|
98709
|
-
|
|
98863
|
+
Every n months recurrence
|
|
98710
98864
|
"""
|
|
98711
98865
|
return pulumi.get(self, "value")
|
|
98712
98866
|
|
|
@@ -99184,7 +99338,7 @@ class NexusConnectorCredentials(dict):
|
|
|
99184
99338
|
username: Optional[_builtins.str] = None,
|
|
99185
99339
|
username_ref: Optional[_builtins.str] = None):
|
|
99186
99340
|
"""
|
|
99187
|
-
:param _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}.
|
|
99341
|
+
:param _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}.
|
|
99188
99342
|
:param _builtins.str username: Username to use for authentication.
|
|
99189
99343
|
:param _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}.
|
|
99190
99344
|
"""
|
|
@@ -99198,7 +99352,7 @@ class NexusConnectorCredentials(dict):
|
|
|
99198
99352
|
@pulumi.getter(name="passwordRef")
|
|
99199
99353
|
def password_ref(self) -> _builtins.str:
|
|
99200
99354
|
"""
|
|
99201
|
-
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}.
|
|
99355
|
+
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}.
|
|
99202
99356
|
"""
|
|
99203
99357
|
return pulumi.get(self, "password_ref")
|
|
99204
99358
|
|
|
@@ -102732,7 +102886,7 @@ class TasConnectorCredentialsTasManualDetails(dict):
|
|
|
102732
102886
|
"""
|
|
102733
102887
|
:param _builtins.str endpoint_url: URL of the Tas server.
|
|
102734
102888
|
:param _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}.
|
|
102735
|
-
:param _builtins.str reference_token: Reference
|
|
102889
|
+
:param _builtins.str reference_token: Reference token for authentication.
|
|
102736
102890
|
:param _builtins.str username: Username to use for authentication.
|
|
102737
102891
|
:param _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}.
|
|
102738
102892
|
"""
|
|
@@ -102765,7 +102919,7 @@ class TasConnectorCredentialsTasManualDetails(dict):
|
|
|
102765
102919
|
@pulumi.getter(name="referenceToken")
|
|
102766
102920
|
def reference_token(self) -> Optional[_builtins.str]:
|
|
102767
102921
|
"""
|
|
102768
|
-
Reference
|
|
102922
|
+
Reference token for authentication.
|
|
102769
102923
|
"""
|
|
102770
102924
|
return pulumi.get(self, "reference_token")
|
|
102771
102925
|
|
|
@@ -103470,8 +103624,8 @@ class WorkspaceConnector(dict):
|
|
|
103470
103624
|
connector_ref: _builtins.str,
|
|
103471
103625
|
type: _builtins.str):
|
|
103472
103626
|
"""
|
|
103473
|
-
:param _builtins.str connector_ref:
|
|
103474
|
-
:param _builtins.str type: Type
|
|
103627
|
+
:param _builtins.str connector_ref: Connector Ref is the reference to the connector
|
|
103628
|
+
:param _builtins.str type: Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
103475
103629
|
"""
|
|
103476
103630
|
pulumi.set(__self__, "connector_ref", connector_ref)
|
|
103477
103631
|
pulumi.set(__self__, "type", type)
|
|
@@ -103480,7 +103634,7 @@ class WorkspaceConnector(dict):
|
|
|
103480
103634
|
@pulumi.getter(name="connectorRef")
|
|
103481
103635
|
def connector_ref(self) -> _builtins.str:
|
|
103482
103636
|
"""
|
|
103483
|
-
|
|
103637
|
+
Connector Ref is the reference to the connector
|
|
103484
103638
|
"""
|
|
103485
103639
|
return pulumi.get(self, "connector_ref")
|
|
103486
103640
|
|
|
@@ -103488,7 +103642,7 @@ class WorkspaceConnector(dict):
|
|
|
103488
103642
|
@pulumi.getter
|
|
103489
103643
|
def type(self) -> _builtins.str:
|
|
103490
103644
|
"""
|
|
103491
|
-
Type
|
|
103645
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
103492
103646
|
"""
|
|
103493
103647
|
return pulumi.get(self, "type")
|
|
103494
103648
|
|
|
@@ -104438,27 +104592,111 @@ class GetAwsSecretManagerConnectorCredentialOidcAuthenticationResult(dict):
|
|
|
104438
104592
|
return pulumi.get(self, "iam_role_arn")
|
|
104439
104593
|
|
|
104440
104594
|
|
|
104595
|
+
@pulumi.output_type
|
|
104596
|
+
class GetAzureCloudCostConnectorBillingExportSpec2Result(dict):
|
|
104597
|
+
def __init__(__self__, *,
|
|
104598
|
+
billing_type: _builtins.str,
|
|
104599
|
+
container_name: _builtins.str,
|
|
104600
|
+
directory_name: _builtins.str,
|
|
104601
|
+
report_name: _builtins.str,
|
|
104602
|
+
storage_account_name: _builtins.str,
|
|
104603
|
+
subscription_id: _builtins.str):
|
|
104604
|
+
"""
|
|
104605
|
+
:param _builtins.str billing_type: Billing type.
|
|
104606
|
+
:param _builtins.str container_name: Name of the container.
|
|
104607
|
+
:param _builtins.str directory_name: Name of the directory.
|
|
104608
|
+
:param _builtins.str report_name: Name of the report.
|
|
104609
|
+
:param _builtins.str storage_account_name: Name of the storage account.
|
|
104610
|
+
:param _builtins.str subscription_id: Subsription id.
|
|
104611
|
+
"""
|
|
104612
|
+
pulumi.set(__self__, "billing_type", billing_type)
|
|
104613
|
+
pulumi.set(__self__, "container_name", container_name)
|
|
104614
|
+
pulumi.set(__self__, "directory_name", directory_name)
|
|
104615
|
+
pulumi.set(__self__, "report_name", report_name)
|
|
104616
|
+
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
104617
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
104618
|
+
|
|
104619
|
+
@_builtins.property
|
|
104620
|
+
@pulumi.getter(name="billingType")
|
|
104621
|
+
def billing_type(self) -> _builtins.str:
|
|
104622
|
+
"""
|
|
104623
|
+
Billing type.
|
|
104624
|
+
"""
|
|
104625
|
+
return pulumi.get(self, "billing_type")
|
|
104626
|
+
|
|
104627
|
+
@_builtins.property
|
|
104628
|
+
@pulumi.getter(name="containerName")
|
|
104629
|
+
def container_name(self) -> _builtins.str:
|
|
104630
|
+
"""
|
|
104631
|
+
Name of the container.
|
|
104632
|
+
"""
|
|
104633
|
+
return pulumi.get(self, "container_name")
|
|
104634
|
+
|
|
104635
|
+
@_builtins.property
|
|
104636
|
+
@pulumi.getter(name="directoryName")
|
|
104637
|
+
def directory_name(self) -> _builtins.str:
|
|
104638
|
+
"""
|
|
104639
|
+
Name of the directory.
|
|
104640
|
+
"""
|
|
104641
|
+
return pulumi.get(self, "directory_name")
|
|
104642
|
+
|
|
104643
|
+
@_builtins.property
|
|
104644
|
+
@pulumi.getter(name="reportName")
|
|
104645
|
+
def report_name(self) -> _builtins.str:
|
|
104646
|
+
"""
|
|
104647
|
+
Name of the report.
|
|
104648
|
+
"""
|
|
104649
|
+
return pulumi.get(self, "report_name")
|
|
104650
|
+
|
|
104651
|
+
@_builtins.property
|
|
104652
|
+
@pulumi.getter(name="storageAccountName")
|
|
104653
|
+
def storage_account_name(self) -> _builtins.str:
|
|
104654
|
+
"""
|
|
104655
|
+
Name of the storage account.
|
|
104656
|
+
"""
|
|
104657
|
+
return pulumi.get(self, "storage_account_name")
|
|
104658
|
+
|
|
104659
|
+
@_builtins.property
|
|
104660
|
+
@pulumi.getter(name="subscriptionId")
|
|
104661
|
+
def subscription_id(self) -> _builtins.str:
|
|
104662
|
+
"""
|
|
104663
|
+
Subsription id.
|
|
104664
|
+
"""
|
|
104665
|
+
return pulumi.get(self, "subscription_id")
|
|
104666
|
+
|
|
104667
|
+
|
|
104441
104668
|
@pulumi.output_type
|
|
104442
104669
|
class GetAzureCloudCostConnectorBillingExportSpecResult(dict):
|
|
104443
104670
|
def __init__(__self__, *,
|
|
104671
|
+
billing_type: _builtins.str,
|
|
104444
104672
|
container_name: _builtins.str,
|
|
104445
104673
|
directory_name: _builtins.str,
|
|
104446
104674
|
report_name: _builtins.str,
|
|
104447
104675
|
storage_account_name: _builtins.str,
|
|
104448
104676
|
subscription_id: _builtins.str):
|
|
104449
104677
|
"""
|
|
104678
|
+
:param _builtins.str billing_type: Billing type.
|
|
104450
104679
|
:param _builtins.str container_name: Name of the container.
|
|
104451
104680
|
:param _builtins.str directory_name: Name of the directory.
|
|
104452
104681
|
:param _builtins.str report_name: Name of the report.
|
|
104453
104682
|
:param _builtins.str storage_account_name: Name of the storage account.
|
|
104454
104683
|
:param _builtins.str subscription_id: Subsription Id.
|
|
104455
104684
|
"""
|
|
104685
|
+
pulumi.set(__self__, "billing_type", billing_type)
|
|
104456
104686
|
pulumi.set(__self__, "container_name", container_name)
|
|
104457
104687
|
pulumi.set(__self__, "directory_name", directory_name)
|
|
104458
104688
|
pulumi.set(__self__, "report_name", report_name)
|
|
104459
104689
|
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
104460
104690
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
104461
104691
|
|
|
104692
|
+
@_builtins.property
|
|
104693
|
+
@pulumi.getter(name="billingType")
|
|
104694
|
+
def billing_type(self) -> _builtins.str:
|
|
104695
|
+
"""
|
|
104696
|
+
Billing type.
|
|
104697
|
+
"""
|
|
104698
|
+
return pulumi.get(self, "billing_type")
|
|
104699
|
+
|
|
104462
104700
|
@_builtins.property
|
|
104463
104701
|
@pulumi.getter(name="containerName")
|
|
104464
104702
|
def container_name(self) -> _builtins.str:
|
|
@@ -105287,10 +105525,6 @@ class GetConnectorCustomSecretManagerTemplateInputEnvironmentVariableResult(dict
|
|
|
105287
105525
|
name: _builtins.str,
|
|
105288
105526
|
type: _builtins.str,
|
|
105289
105527
|
value: _builtins.str):
|
|
105290
|
-
"""
|
|
105291
|
-
:param _builtins.str name: : Name of the resource.
|
|
105292
|
-
:param _builtins.str type: : Type of the custom secrets manager, typically set to `CustomSecretManager`.
|
|
105293
|
-
"""
|
|
105294
105528
|
pulumi.set(__self__, "default", default)
|
|
105295
105529
|
pulumi.set(__self__, "name", name)
|
|
105296
105530
|
pulumi.set(__self__, "type", type)
|
|
@@ -105304,17 +105538,11 @@ class GetConnectorCustomSecretManagerTemplateInputEnvironmentVariableResult(dict
|
|
|
105304
105538
|
@_builtins.property
|
|
105305
105539
|
@pulumi.getter
|
|
105306
105540
|
def name(self) -> _builtins.str:
|
|
105307
|
-
"""
|
|
105308
|
-
: Name of the resource.
|
|
105309
|
-
"""
|
|
105310
105541
|
return pulumi.get(self, "name")
|
|
105311
105542
|
|
|
105312
105543
|
@_builtins.property
|
|
105313
105544
|
@pulumi.getter
|
|
105314
105545
|
def type(self) -> _builtins.str:
|
|
105315
|
-
"""
|
|
105316
|
-
: Type of the custom secrets manager, typically set to `CustomSecretManager`.
|
|
105317
|
-
"""
|
|
105318
105546
|
return pulumi.get(self, "type")
|
|
105319
105547
|
|
|
105320
105548
|
@_builtins.property
|
|
@@ -105653,8 +105881,8 @@ class GetConnectorPdcHostResult(dict):
|
|
|
105653
105881
|
hostname: _builtins.str,
|
|
105654
105882
|
attributes: Optional[Mapping[str, _builtins.str]] = None):
|
|
105655
105883
|
"""
|
|
105656
|
-
:param _builtins.str hostname:
|
|
105657
|
-
:param Mapping[str, _builtins.str] attributes:
|
|
105884
|
+
:param _builtins.str hostname: hostname
|
|
105885
|
+
:param Mapping[str, _builtins.str] attributes: attributes for current host
|
|
105658
105886
|
"""
|
|
105659
105887
|
pulumi.set(__self__, "hostname", hostname)
|
|
105660
105888
|
if attributes is not None:
|
|
@@ -105664,7 +105892,7 @@ class GetConnectorPdcHostResult(dict):
|
|
|
105664
105892
|
@pulumi.getter
|
|
105665
105893
|
def hostname(self) -> _builtins.str:
|
|
105666
105894
|
"""
|
|
105667
|
-
|
|
105895
|
+
hostname
|
|
105668
105896
|
"""
|
|
105669
105897
|
return pulumi.get(self, "hostname")
|
|
105670
105898
|
|
|
@@ -105672,7 +105900,7 @@ class GetConnectorPdcHostResult(dict):
|
|
|
105672
105900
|
@pulumi.getter
|
|
105673
105901
|
def attributes(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
105674
105902
|
"""
|
|
105675
|
-
|
|
105903
|
+
attributes for current host
|
|
105676
105904
|
"""
|
|
105677
105905
|
return pulumi.get(self, "attributes")
|
|
105678
105906
|
|
|
@@ -109375,20 +109603,28 @@ class GetGitopsRepositoryRepoResult(dict):
|
|
|
109375
109603
|
class GetHarRegistryConfigResult(dict):
|
|
109376
109604
|
def __init__(__self__, *,
|
|
109377
109605
|
type: _builtins.str,
|
|
109606
|
+
auth_type: Optional[_builtins.str] = None,
|
|
109378
109607
|
auths: Optional[Sequence['outputs.GetHarRegistryConfigAuthResult']] = None,
|
|
109379
109608
|
source: Optional[_builtins.str] = None,
|
|
109609
|
+
upstream_proxies: Optional[Sequence[_builtins.str]] = None,
|
|
109380
109610
|
url: Optional[_builtins.str] = None):
|
|
109381
109611
|
"""
|
|
109382
|
-
:param _builtins.str type: Type of registry (VIRTUAL
|
|
109383
|
-
:param
|
|
109384
|
-
:param
|
|
109385
|
-
:param _builtins.str
|
|
109612
|
+
:param _builtins.str type: Type of registry (VIRTUAL or UPSTREAM)
|
|
109613
|
+
:param _builtins.str auth_type: Type of authentication for UPSTREAM registry type (UserPassword, Anonymous)
|
|
109614
|
+
:param Sequence['GetHarRegistryConfigAuthArgs'] auths: Authentication configuration for UPSTREAM registry type
|
|
109615
|
+
:param _builtins.str source: Upstream source
|
|
109616
|
+
:param Sequence[_builtins.str] upstream_proxies: List of upstream proxies for VIRTUAL registry type
|
|
109617
|
+
:param _builtins.str url: URL of the upstream (required if type=UPSTREAM & package_type=HELM)
|
|
109386
109618
|
"""
|
|
109387
109619
|
pulumi.set(__self__, "type", type)
|
|
109620
|
+
if auth_type is not None:
|
|
109621
|
+
pulumi.set(__self__, "auth_type", auth_type)
|
|
109388
109622
|
if auths is not None:
|
|
109389
109623
|
pulumi.set(__self__, "auths", auths)
|
|
109390
109624
|
if source is not None:
|
|
109391
109625
|
pulumi.set(__self__, "source", source)
|
|
109626
|
+
if upstream_proxies is not None:
|
|
109627
|
+
pulumi.set(__self__, "upstream_proxies", upstream_proxies)
|
|
109392
109628
|
if url is not None:
|
|
109393
109629
|
pulumi.set(__self__, "url", url)
|
|
109394
109630
|
|
|
@@ -109396,15 +109632,23 @@ class GetHarRegistryConfigResult(dict):
|
|
|
109396
109632
|
@pulumi.getter
|
|
109397
109633
|
def type(self) -> _builtins.str:
|
|
109398
109634
|
"""
|
|
109399
|
-
Type of registry (VIRTUAL
|
|
109635
|
+
Type of registry (VIRTUAL or UPSTREAM)
|
|
109400
109636
|
"""
|
|
109401
109637
|
return pulumi.get(self, "type")
|
|
109402
109638
|
|
|
109639
|
+
@_builtins.property
|
|
109640
|
+
@pulumi.getter(name="authType")
|
|
109641
|
+
def auth_type(self) -> Optional[_builtins.str]:
|
|
109642
|
+
"""
|
|
109643
|
+
Type of authentication for UPSTREAM registry type (UserPassword, Anonymous)
|
|
109644
|
+
"""
|
|
109645
|
+
return pulumi.get(self, "auth_type")
|
|
109646
|
+
|
|
109403
109647
|
@_builtins.property
|
|
109404
109648
|
@pulumi.getter
|
|
109405
109649
|
def auths(self) -> Optional[Sequence['outputs.GetHarRegistryConfigAuthResult']]:
|
|
109406
109650
|
"""
|
|
109407
|
-
Authentication configuration for UPSTREAM type
|
|
109651
|
+
Authentication configuration for UPSTREAM registry type
|
|
109408
109652
|
"""
|
|
109409
109653
|
return pulumi.get(self, "auths")
|
|
109410
109654
|
|
|
@@ -109412,15 +109656,23 @@ class GetHarRegistryConfigResult(dict):
|
|
|
109412
109656
|
@pulumi.getter
|
|
109413
109657
|
def source(self) -> Optional[_builtins.str]:
|
|
109414
109658
|
"""
|
|
109415
|
-
|
|
109659
|
+
Upstream source
|
|
109416
109660
|
"""
|
|
109417
109661
|
return pulumi.get(self, "source")
|
|
109418
109662
|
|
|
109663
|
+
@_builtins.property
|
|
109664
|
+
@pulumi.getter(name="upstreamProxies")
|
|
109665
|
+
def upstream_proxies(self) -> Optional[Sequence[_builtins.str]]:
|
|
109666
|
+
"""
|
|
109667
|
+
List of upstream proxies for VIRTUAL registry type
|
|
109668
|
+
"""
|
|
109669
|
+
return pulumi.get(self, "upstream_proxies")
|
|
109670
|
+
|
|
109419
109671
|
@_builtins.property
|
|
109420
109672
|
@pulumi.getter
|
|
109421
109673
|
def url(self) -> Optional[_builtins.str]:
|
|
109422
109674
|
"""
|
|
109423
|
-
URL of the upstream
|
|
109675
|
+
URL of the upstream (required if type=UPSTREAM & package_type=HELM)
|
|
109424
109676
|
"""
|
|
109425
109677
|
return pulumi.get(self, "url")
|
|
109426
109678
|
|
|
@@ -109429,14 +109681,37 @@ class GetHarRegistryConfigResult(dict):
|
|
|
109429
109681
|
class GetHarRegistryConfigAuthResult(dict):
|
|
109430
109682
|
def __init__(__self__, *,
|
|
109431
109683
|
auth_type: _builtins.str,
|
|
109432
|
-
|
|
109684
|
+
access_key: Optional[_builtins.str] = None,
|
|
109685
|
+
access_key_identifier: Optional[_builtins.str] = None,
|
|
109686
|
+
access_key_secret_path: Optional[_builtins.str] = None,
|
|
109687
|
+
secret_identifier: Optional[_builtins.str] = None,
|
|
109688
|
+
secret_key_identifier: Optional[_builtins.str] = None,
|
|
109689
|
+
secret_key_secret_path: Optional[_builtins.str] = None,
|
|
109690
|
+
secret_space_path: Optional[_builtins.str] = None,
|
|
109691
|
+
user_name: Optional[_builtins.str] = None):
|
|
109433
109692
|
"""
|
|
109434
109693
|
:param _builtins.str auth_type: Type of authentication (UserPassword, Anonymous)
|
|
109435
|
-
:param
|
|
109694
|
+
:param _builtins.str secret_identifier: Secret identifier for UserPassword auth type
|
|
109695
|
+
:param _builtins.str secret_space_path: Secret space path for UserPassword auth type
|
|
109696
|
+
:param _builtins.str user_name: User name for UserPassword auth type
|
|
109436
109697
|
"""
|
|
109437
109698
|
pulumi.set(__self__, "auth_type", auth_type)
|
|
109438
|
-
if
|
|
109439
|
-
pulumi.set(__self__, "
|
|
109699
|
+
if access_key is not None:
|
|
109700
|
+
pulumi.set(__self__, "access_key", access_key)
|
|
109701
|
+
if access_key_identifier is not None:
|
|
109702
|
+
pulumi.set(__self__, "access_key_identifier", access_key_identifier)
|
|
109703
|
+
if access_key_secret_path is not None:
|
|
109704
|
+
pulumi.set(__self__, "access_key_secret_path", access_key_secret_path)
|
|
109705
|
+
if secret_identifier is not None:
|
|
109706
|
+
pulumi.set(__self__, "secret_identifier", secret_identifier)
|
|
109707
|
+
if secret_key_identifier is not None:
|
|
109708
|
+
pulumi.set(__self__, "secret_key_identifier", secret_key_identifier)
|
|
109709
|
+
if secret_key_secret_path is not None:
|
|
109710
|
+
pulumi.set(__self__, "secret_key_secret_path", secret_key_secret_path)
|
|
109711
|
+
if secret_space_path is not None:
|
|
109712
|
+
pulumi.set(__self__, "secret_space_path", secret_space_path)
|
|
109713
|
+
if user_name is not None:
|
|
109714
|
+
pulumi.set(__self__, "user_name", user_name)
|
|
109440
109715
|
|
|
109441
109716
|
@_builtins.property
|
|
109442
109717
|
@pulumi.getter(name="authType")
|
|
@@ -109447,67 +109722,54 @@ class GetHarRegistryConfigAuthResult(dict):
|
|
|
109447
109722
|
return pulumi.get(self, "auth_type")
|
|
109448
109723
|
|
|
109449
109724
|
@_builtins.property
|
|
109450
|
-
@pulumi.getter(name="
|
|
109451
|
-
def
|
|
109452
|
-
""
|
|
109453
|
-
User password authentication details
|
|
109454
|
-
"""
|
|
109455
|
-
return pulumi.get(self, "user_password")
|
|
109456
|
-
|
|
109725
|
+
@pulumi.getter(name="accessKey")
|
|
109726
|
+
def access_key(self) -> Optional[_builtins.str]:
|
|
109727
|
+
return pulumi.get(self, "access_key")
|
|
109457
109728
|
|
|
109458
|
-
@
|
|
109459
|
-
|
|
109460
|
-
def
|
|
109461
|
-
|
|
109462
|
-
secret_identifier: Optional[_builtins.str] = None,
|
|
109463
|
-
secret_space_id: Optional[_builtins.int] = None,
|
|
109464
|
-
secret_space_path: Optional[_builtins.str] = None):
|
|
109465
|
-
"""
|
|
109466
|
-
:param _builtins.str user_name: User name
|
|
109467
|
-
:param _builtins.str secret_identifier: Secret identifier
|
|
109468
|
-
:param _builtins.int secret_space_id: Secret space ID
|
|
109469
|
-
:param _builtins.str secret_space_path: Secret space path
|
|
109470
|
-
"""
|
|
109471
|
-
pulumi.set(__self__, "user_name", user_name)
|
|
109472
|
-
if secret_identifier is not None:
|
|
109473
|
-
pulumi.set(__self__, "secret_identifier", secret_identifier)
|
|
109474
|
-
if secret_space_id is not None:
|
|
109475
|
-
pulumi.set(__self__, "secret_space_id", secret_space_id)
|
|
109476
|
-
if secret_space_path is not None:
|
|
109477
|
-
pulumi.set(__self__, "secret_space_path", secret_space_path)
|
|
109729
|
+
@_builtins.property
|
|
109730
|
+
@pulumi.getter(name="accessKeyIdentifier")
|
|
109731
|
+
def access_key_identifier(self) -> Optional[_builtins.str]:
|
|
109732
|
+
return pulumi.get(self, "access_key_identifier")
|
|
109478
109733
|
|
|
109479
109734
|
@_builtins.property
|
|
109480
|
-
@pulumi.getter(name="
|
|
109481
|
-
def
|
|
109482
|
-
""
|
|
109483
|
-
User name
|
|
109484
|
-
"""
|
|
109485
|
-
return pulumi.get(self, "user_name")
|
|
109735
|
+
@pulumi.getter(name="accessKeySecretPath")
|
|
109736
|
+
def access_key_secret_path(self) -> Optional[_builtins.str]:
|
|
109737
|
+
return pulumi.get(self, "access_key_secret_path")
|
|
109486
109738
|
|
|
109487
109739
|
@_builtins.property
|
|
109488
109740
|
@pulumi.getter(name="secretIdentifier")
|
|
109489
109741
|
def secret_identifier(self) -> Optional[_builtins.str]:
|
|
109490
109742
|
"""
|
|
109491
|
-
Secret identifier
|
|
109743
|
+
Secret identifier for UserPassword auth type
|
|
109492
109744
|
"""
|
|
109493
109745
|
return pulumi.get(self, "secret_identifier")
|
|
109494
109746
|
|
|
109495
109747
|
@_builtins.property
|
|
109496
|
-
@pulumi.getter(name="
|
|
109497
|
-
def
|
|
109498
|
-
""
|
|
109499
|
-
|
|
109500
|
-
|
|
109501
|
-
|
|
109748
|
+
@pulumi.getter(name="secretKeyIdentifier")
|
|
109749
|
+
def secret_key_identifier(self) -> Optional[_builtins.str]:
|
|
109750
|
+
return pulumi.get(self, "secret_key_identifier")
|
|
109751
|
+
|
|
109752
|
+
@_builtins.property
|
|
109753
|
+
@pulumi.getter(name="secretKeySecretPath")
|
|
109754
|
+
def secret_key_secret_path(self) -> Optional[_builtins.str]:
|
|
109755
|
+
return pulumi.get(self, "secret_key_secret_path")
|
|
109502
109756
|
|
|
109503
109757
|
@_builtins.property
|
|
109504
109758
|
@pulumi.getter(name="secretSpacePath")
|
|
109505
109759
|
def secret_space_path(self) -> Optional[_builtins.str]:
|
|
109506
109760
|
"""
|
|
109507
|
-
Secret space path
|
|
109761
|
+
Secret space path for UserPassword auth type
|
|
109508
109762
|
"""
|
|
109509
109763
|
return pulumi.get(self, "secret_space_path")
|
|
109510
109764
|
|
|
109765
|
+
@_builtins.property
|
|
109766
|
+
@pulumi.getter(name="userName")
|
|
109767
|
+
def user_name(self) -> Optional[_builtins.str]:
|
|
109768
|
+
"""
|
|
109769
|
+
User name for UserPassword auth type
|
|
109770
|
+
"""
|
|
109771
|
+
return pulumi.get(self, "user_name")
|
|
109772
|
+
|
|
109511
109773
|
|
|
109512
109774
|
@pulumi.output_type
|
|
109513
109775
|
class GetHelmConnectorCredentialResult(dict):
|
|
@@ -109555,8 +109817,8 @@ class GetInfraVariableSetConnectorResult(dict):
|
|
|
109555
109817
|
connector_ref: _builtins.str,
|
|
109556
109818
|
type: _builtins.str):
|
|
109557
109819
|
"""
|
|
109558
|
-
:param _builtins.str connector_ref:
|
|
109559
|
-
:param _builtins.str type: Type
|
|
109820
|
+
:param _builtins.str connector_ref: Connector Ref is the reference to the connector
|
|
109821
|
+
:param _builtins.str type: Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
109560
109822
|
"""
|
|
109561
109823
|
pulumi.set(__self__, "connector_ref", connector_ref)
|
|
109562
109824
|
pulumi.set(__self__, "type", type)
|
|
@@ -109565,7 +109827,7 @@ class GetInfraVariableSetConnectorResult(dict):
|
|
|
109565
109827
|
@pulumi.getter(name="connectorRef")
|
|
109566
109828
|
def connector_ref(self) -> _builtins.str:
|
|
109567
109829
|
"""
|
|
109568
|
-
|
|
109830
|
+
Connector Ref is the reference to the connector
|
|
109569
109831
|
"""
|
|
109570
109832
|
return pulumi.get(self, "connector_ref")
|
|
109571
109833
|
|
|
@@ -109573,7 +109835,7 @@ class GetInfraVariableSetConnectorResult(dict):
|
|
|
109573
109835
|
@pulumi.getter
|
|
109574
109836
|
def type(self) -> _builtins.str:
|
|
109575
109837
|
"""
|
|
109576
|
-
Type
|
|
109838
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
109577
109839
|
"""
|
|
109578
109840
|
return pulumi.get(self, "type")
|
|
109579
109841
|
|
|
@@ -109585,9 +109847,9 @@ class GetInfraVariableSetEnvironmentVariableResult(dict):
|
|
|
109585
109847
|
value: _builtins.str,
|
|
109586
109848
|
value_type: _builtins.str):
|
|
109587
109849
|
"""
|
|
109588
|
-
:param _builtins.str key: Key is the identifier for the variable
|
|
109589
|
-
:param _builtins.str value:
|
|
109590
|
-
:param _builtins.str value_type: Value type indicates the value type of the variable
|
|
109850
|
+
:param _builtins.str key: Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
109851
|
+
: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.
|
|
109852
|
+
:param _builtins.str value_type: Value type indicates the value type of the variable. Currently we support string and secret.
|
|
109591
109853
|
"""
|
|
109592
109854
|
pulumi.set(__self__, "key", key)
|
|
109593
109855
|
pulumi.set(__self__, "value", value)
|
|
@@ -109597,7 +109859,7 @@ class GetInfraVariableSetEnvironmentVariableResult(dict):
|
|
|
109597
109859
|
@pulumi.getter
|
|
109598
109860
|
def key(self) -> _builtins.str:
|
|
109599
109861
|
"""
|
|
109600
|
-
Key is the identifier for the variable
|
|
109862
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
109601
109863
|
"""
|
|
109602
109864
|
return pulumi.get(self, "key")
|
|
109603
109865
|
|
|
@@ -109605,7 +109867,7 @@ class GetInfraVariableSetEnvironmentVariableResult(dict):
|
|
|
109605
109867
|
@pulumi.getter
|
|
109606
109868
|
def value(self) -> _builtins.str:
|
|
109607
109869
|
"""
|
|
109608
|
-
|
|
109870
|
+
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.
|
|
109609
109871
|
"""
|
|
109610
109872
|
return pulumi.get(self, "value")
|
|
109611
109873
|
|
|
@@ -109613,7 +109875,7 @@ class GetInfraVariableSetEnvironmentVariableResult(dict):
|
|
|
109613
109875
|
@pulumi.getter(name="valueType")
|
|
109614
109876
|
def value_type(self) -> _builtins.str:
|
|
109615
109877
|
"""
|
|
109616
|
-
Value type indicates the value type of the variable
|
|
109878
|
+
Value type indicates the value type of the variable. Currently we support string and secret.
|
|
109617
109879
|
"""
|
|
109618
109880
|
return pulumi.get(self, "value_type")
|
|
109619
109881
|
|
|
@@ -109625,9 +109887,9 @@ class GetInfraVariableSetTerraformVariableResult(dict):
|
|
|
109625
109887
|
value: _builtins.str,
|
|
109626
109888
|
value_type: _builtins.str):
|
|
109627
109889
|
"""
|
|
109628
|
-
:param _builtins.str key: Key is the identifier for the variable
|
|
109629
|
-
:param _builtins.str value:
|
|
109630
|
-
:param _builtins.str value_type: Value type indicates the value type of the variable
|
|
109890
|
+
:param _builtins.str key: Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
109891
|
+
: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.
|
|
109892
|
+
:param _builtins.str value_type: Value type indicates the value type of the variable. Currently we support string and secret.
|
|
109631
109893
|
"""
|
|
109632
109894
|
pulumi.set(__self__, "key", key)
|
|
109633
109895
|
pulumi.set(__self__, "value", value)
|
|
@@ -109637,7 +109899,7 @@ class GetInfraVariableSetTerraformVariableResult(dict):
|
|
|
109637
109899
|
@pulumi.getter
|
|
109638
109900
|
def key(self) -> _builtins.str:
|
|
109639
109901
|
"""
|
|
109640
|
-
Key is the identifier for the variable
|
|
109902
|
+
Key is the identifier for the variable. Must be unique within the Variable Set.
|
|
109641
109903
|
"""
|
|
109642
109904
|
return pulumi.get(self, "key")
|
|
109643
109905
|
|
|
@@ -109645,7 +109907,7 @@ class GetInfraVariableSetTerraformVariableResult(dict):
|
|
|
109645
109907
|
@pulumi.getter
|
|
109646
109908
|
def value(self) -> _builtins.str:
|
|
109647
109909
|
"""
|
|
109648
|
-
|
|
109910
|
+
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.
|
|
109649
109911
|
"""
|
|
109650
109912
|
return pulumi.get(self, "value")
|
|
109651
109913
|
|
|
@@ -109653,7 +109915,7 @@ class GetInfraVariableSetTerraformVariableResult(dict):
|
|
|
109653
109915
|
@pulumi.getter(name="valueType")
|
|
109654
109916
|
def value_type(self) -> _builtins.str:
|
|
109655
109917
|
"""
|
|
109656
|
-
Value type indicates the value type of the variable
|
|
109918
|
+
Value type indicates the value type of the variable. Currently we support string and secret.
|
|
109657
109919
|
"""
|
|
109658
109920
|
return pulumi.get(self, "value_type")
|
|
109659
109921
|
|
|
@@ -109673,7 +109935,7 @@ class GetInfraVariableSetTerraformVariableFileResult(dict):
|
|
|
109673
109935
|
: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
|
|
109674
109936
|
: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.
|
|
109675
109937
|
:param _builtins.str repository_path: Repository path is the path in which the variables reside.
|
|
109676
|
-
:param _builtins.str repository_sha: Repository commit is
|
|
109938
|
+
: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.
|
|
109677
109939
|
"""
|
|
109678
109940
|
pulumi.set(__self__, "repository", repository)
|
|
109679
109941
|
pulumi.set(__self__, "repository_connector", repository_connector)
|
|
@@ -109730,7 +109992,7 @@ class GetInfraVariableSetTerraformVariableFileResult(dict):
|
|
|
109730
109992
|
@pulumi.getter(name="repositorySha")
|
|
109731
109993
|
def repository_sha(self) -> Optional[_builtins.str]:
|
|
109732
109994
|
"""
|
|
109733
|
-
Repository commit is
|
|
109995
|
+
Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
109734
109996
|
"""
|
|
109735
109997
|
return pulumi.get(self, "repository_sha")
|
|
109736
109998
|
|
|
@@ -110382,8 +110644,8 @@ class GetManualFreezeCurrentOrUpcomingWindowResult(dict):
|
|
|
110382
110644
|
end_time: _builtins.int,
|
|
110383
110645
|
start_time: _builtins.int):
|
|
110384
110646
|
"""
|
|
110385
|
-
:param _builtins.int end_time: End time of the freeze
|
|
110386
|
-
:param _builtins.int start_time: Start time of the freeze
|
|
110647
|
+
:param _builtins.int end_time: End time of the freeze window
|
|
110648
|
+
:param _builtins.int start_time: Start time of the freeze window
|
|
110387
110649
|
"""
|
|
110388
110650
|
pulumi.set(__self__, "end_time", end_time)
|
|
110389
110651
|
pulumi.set(__self__, "start_time", start_time)
|
|
@@ -110392,7 +110654,7 @@ class GetManualFreezeCurrentOrUpcomingWindowResult(dict):
|
|
|
110392
110654
|
@pulumi.getter(name="endTime")
|
|
110393
110655
|
def end_time(self) -> _builtins.int:
|
|
110394
110656
|
"""
|
|
110395
|
-
End time of the freeze
|
|
110657
|
+
End time of the freeze window
|
|
110396
110658
|
"""
|
|
110397
110659
|
return pulumi.get(self, "end_time")
|
|
110398
110660
|
|
|
@@ -110400,7 +110662,7 @@ class GetManualFreezeCurrentOrUpcomingWindowResult(dict):
|
|
|
110400
110662
|
@pulumi.getter(name="startTime")
|
|
110401
110663
|
def start_time(self) -> _builtins.int:
|
|
110402
110664
|
"""
|
|
110403
|
-
Start time of the freeze
|
|
110665
|
+
Start time of the freeze window
|
|
110404
110666
|
"""
|
|
110405
110667
|
return pulumi.get(self, "start_time")
|
|
110406
110668
|
|
|
@@ -110414,11 +110676,11 @@ class GetManualFreezeFreezeWindowResult(dict):
|
|
|
110414
110676
|
start_time: _builtins.str,
|
|
110415
110677
|
time_zone: _builtins.str):
|
|
110416
110678
|
"""
|
|
110417
|
-
:param _builtins.str duration: Duration of the freeze
|
|
110418
|
-
:param _builtins.str end_time: End
|
|
110679
|
+
:param _builtins.str duration: Duration of the freeze window
|
|
110680
|
+
:param _builtins.str end_time: End Time of the freeze window
|
|
110419
110681
|
:param Sequence['GetManualFreezeFreezeWindowRecurrenceArgs'] recurrences: Recurrence of the freeze window
|
|
110420
|
-
:param _builtins.str start_time: Start
|
|
110421
|
-
:param _builtins.str time_zone:
|
|
110682
|
+
:param _builtins.str start_time: Start Time of the freeze window
|
|
110683
|
+
:param _builtins.str time_zone: Time zone of the freeze window
|
|
110422
110684
|
"""
|
|
110423
110685
|
pulumi.set(__self__, "duration", duration)
|
|
110424
110686
|
pulumi.set(__self__, "end_time", end_time)
|
|
@@ -110430,7 +110692,7 @@ class GetManualFreezeFreezeWindowResult(dict):
|
|
|
110430
110692
|
@pulumi.getter
|
|
110431
110693
|
def duration(self) -> _builtins.str:
|
|
110432
110694
|
"""
|
|
110433
|
-
Duration of the freeze
|
|
110695
|
+
Duration of the freeze window
|
|
110434
110696
|
"""
|
|
110435
110697
|
return pulumi.get(self, "duration")
|
|
110436
110698
|
|
|
@@ -110438,7 +110700,7 @@ class GetManualFreezeFreezeWindowResult(dict):
|
|
|
110438
110700
|
@pulumi.getter(name="endTime")
|
|
110439
110701
|
def end_time(self) -> _builtins.str:
|
|
110440
110702
|
"""
|
|
110441
|
-
End
|
|
110703
|
+
End Time of the freeze window
|
|
110442
110704
|
"""
|
|
110443
110705
|
return pulumi.get(self, "end_time")
|
|
110444
110706
|
|
|
@@ -110454,7 +110716,7 @@ class GetManualFreezeFreezeWindowResult(dict):
|
|
|
110454
110716
|
@pulumi.getter(name="startTime")
|
|
110455
110717
|
def start_time(self) -> _builtins.str:
|
|
110456
110718
|
"""
|
|
110457
|
-
Start
|
|
110719
|
+
Start Time of the freeze window
|
|
110458
110720
|
"""
|
|
110459
110721
|
return pulumi.get(self, "start_time")
|
|
110460
110722
|
|
|
@@ -110462,7 +110724,7 @@ class GetManualFreezeFreezeWindowResult(dict):
|
|
|
110462
110724
|
@pulumi.getter(name="timeZone")
|
|
110463
110725
|
def time_zone(self) -> _builtins.str:
|
|
110464
110726
|
"""
|
|
110465
|
-
|
|
110727
|
+
Time zone of the freeze window
|
|
110466
110728
|
"""
|
|
110467
110729
|
return pulumi.get(self, "time_zone")
|
|
110468
110730
|
|
|
@@ -110474,7 +110736,7 @@ class GetManualFreezeFreezeWindowRecurrenceResult(dict):
|
|
|
110474
110736
|
type: _builtins.str):
|
|
110475
110737
|
"""
|
|
110476
110738
|
:param Sequence['GetManualFreezeFreezeWindowRecurrenceRecurrenceSpecArgs'] recurrence_specs: Used to filter resources on their attributes
|
|
110477
|
-
:param _builtins.str type:
|
|
110739
|
+
:param _builtins.str type: Type of the recurrence
|
|
110478
110740
|
"""
|
|
110479
110741
|
pulumi.set(__self__, "recurrence_specs", recurrence_specs)
|
|
110480
110742
|
pulumi.set(__self__, "type", type)
|
|
@@ -110491,7 +110753,7 @@ class GetManualFreezeFreezeWindowRecurrenceResult(dict):
|
|
|
110491
110753
|
@pulumi.getter
|
|
110492
110754
|
def type(self) -> _builtins.str:
|
|
110493
110755
|
"""
|
|
110494
|
-
|
|
110756
|
+
Type of the recurrence
|
|
110495
110757
|
"""
|
|
110496
110758
|
return pulumi.get(self, "type")
|
|
110497
110759
|
|
|
@@ -110502,8 +110764,8 @@ class GetManualFreezeFreezeWindowRecurrenceRecurrenceSpecResult(dict):
|
|
|
110502
110764
|
until: _builtins.str,
|
|
110503
110765
|
value: _builtins.int):
|
|
110504
110766
|
"""
|
|
110505
|
-
:param _builtins.str until:
|
|
110506
|
-
:param _builtins.int value:
|
|
110767
|
+
:param _builtins.str until: Time till which freeze window recurrs
|
|
110768
|
+
:param _builtins.int value: Every n months recurrence
|
|
110507
110769
|
"""
|
|
110508
110770
|
pulumi.set(__self__, "until", until)
|
|
110509
110771
|
pulumi.set(__self__, "value", value)
|
|
@@ -110512,7 +110774,7 @@ class GetManualFreezeFreezeWindowRecurrenceRecurrenceSpecResult(dict):
|
|
|
110512
110774
|
@pulumi.getter
|
|
110513
110775
|
def until(self) -> _builtins.str:
|
|
110514
110776
|
"""
|
|
110515
|
-
|
|
110777
|
+
Time till which freeze window recurrs
|
|
110516
110778
|
"""
|
|
110517
110779
|
return pulumi.get(self, "until")
|
|
110518
110780
|
|
|
@@ -110520,7 +110782,7 @@ class GetManualFreezeFreezeWindowRecurrenceRecurrenceSpecResult(dict):
|
|
|
110520
110782
|
@pulumi.getter
|
|
110521
110783
|
def value(self) -> _builtins.int:
|
|
110522
110784
|
"""
|
|
110523
|
-
|
|
110785
|
+
Every n months recurrence
|
|
110524
110786
|
"""
|
|
110525
110787
|
return pulumi.get(self, "value")
|
|
110526
110788
|
|
|
@@ -112741,8 +113003,8 @@ class GetWorkspaceConnectorResult(dict):
|
|
|
112741
113003
|
connector_ref: _builtins.str,
|
|
112742
113004
|
type: _builtins.str):
|
|
112743
113005
|
"""
|
|
112744
|
-
:param _builtins.str connector_ref:
|
|
112745
|
-
:param _builtins.str type: Type
|
|
113006
|
+
:param _builtins.str connector_ref: Connector Ref is the reference to the connector
|
|
113007
|
+
:param _builtins.str type: Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
112746
113008
|
"""
|
|
112747
113009
|
pulumi.set(__self__, "connector_ref", connector_ref)
|
|
112748
113010
|
pulumi.set(__self__, "type", type)
|
|
@@ -112751,7 +113013,7 @@ class GetWorkspaceConnectorResult(dict):
|
|
|
112751
113013
|
@pulumi.getter(name="connectorRef")
|
|
112752
113014
|
def connector_ref(self) -> _builtins.str:
|
|
112753
113015
|
"""
|
|
112754
|
-
|
|
113016
|
+
Connector Ref is the reference to the connector
|
|
112755
113017
|
"""
|
|
112756
113018
|
return pulumi.get(self, "connector_ref")
|
|
112757
113019
|
|
|
@@ -112759,7 +113021,7 @@ class GetWorkspaceConnectorResult(dict):
|
|
|
112759
113021
|
@pulumi.getter
|
|
112760
113022
|
def type(self) -> _builtins.str:
|
|
112761
113023
|
"""
|
|
112762
|
-
Type
|
|
113024
|
+
Type is the connector type of the connector. Supported types: aws, azure, gcp
|
|
112763
113025
|
"""
|
|
112764
113026
|
return pulumi.get(self, "type")
|
|
112765
113027
|
|