pulumi-oci 1.29.0a1711606977__py3-none-any.whl → 1.29.0a1711616250__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.
Files changed (41) hide show
  1. pulumi_oci/__init__.py +8 -0
  2. pulumi_oci/database/autonomous_database.py +155 -14
  3. pulumi_oci/database/get_autonomous_database.py +41 -2
  4. pulumi_oci/database/get_autonomous_databases.py +1 -1
  5. pulumi_oci/database/outputs.py +68 -2
  6. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +111 -6
  7. pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py +32 -4
  8. pulumi_oci/databasemanagement/outputs.py +267 -75
  9. pulumi_oci/dataintegration/__init__.py +3 -0
  10. pulumi_oci/dataintegration/_inputs.py +4504 -0
  11. pulumi_oci/dataintegration/get_workspace_task.py +443 -0
  12. pulumi_oci/dataintegration/get_workspace_tasks.py +254 -0
  13. pulumi_oci/dataintegration/outputs.py +16511 -4723
  14. pulumi_oci/dataintegration/workspace_task.py +1364 -0
  15. pulumi_oci/devops/_inputs.py +18 -2
  16. pulumi_oci/devops/deploy_artifact.py +2 -0
  17. pulumi_oci/devops/deploy_stage.py +141 -0
  18. pulumi_oci/devops/get_deploy_stage.py +40 -1
  19. pulumi_oci/devops/outputs.py +75 -6
  20. pulumi_oci/logging/_inputs.py +2751 -187
  21. pulumi_oci/logging/outputs.py +4981 -768
  22. pulumi_oci/logging/unified_agent_configuration.py +34 -208
  23. pulumi_oci/monitoring/_inputs.py +136 -0
  24. pulumi_oci/monitoring/alarm.py +173 -0
  25. pulumi_oci/monitoring/get_alarm.py +40 -1
  26. pulumi_oci/monitoring/get_alarm_history_collection.py +2 -2
  27. pulumi_oci/monitoring/outputs.py +305 -0
  28. pulumi_oci/networkloadbalancer/_inputs.py +20 -20
  29. pulumi_oci/networkloadbalancer/backend.py +7 -7
  30. pulumi_oci/networkloadbalancer/backend_set.py +11 -11
  31. pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
  32. pulumi_oci/networkloadbalancer/get_listener.py +1 -1
  33. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +14 -1
  34. pulumi_oci/networkloadbalancer/listener.py +7 -7
  35. pulumi_oci/networkloadbalancer/network_load_balancer.py +56 -7
  36. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -7
  37. pulumi_oci/networkloadbalancer/outputs.py +41 -34
  38. {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/METADATA +1 -1
  39. {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/RECORD +41 -38
  40. {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/WHEEL +0 -0
  41. {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/top_level.txt +0 -0
@@ -1996,6 +1996,8 @@ class DeployArtifactDeployArtifactSource(dict):
1996
1996
  suggest = "deploy_artifact_path"
1997
1997
  elif key == "deployArtifactVersion":
1998
1998
  suggest = "deploy_artifact_version"
1999
+ elif key == "helmArtifactSourceType":
2000
+ suggest = "helm_artifact_source_type"
1999
2001
  elif key == "helmVerificationKeySource":
2000
2002
  suggest = "helm_verification_key_source"
2001
2003
  elif key == "imageDigest":
@@ -2022,16 +2024,18 @@ class DeployArtifactDeployArtifactSource(dict):
2022
2024
  chart_url: Optional[str] = None,
2023
2025
  deploy_artifact_path: Optional[str] = None,
2024
2026
  deploy_artifact_version: Optional[str] = None,
2027
+ helm_artifact_source_type: Optional[str] = None,
2025
2028
  helm_verification_key_source: Optional['outputs.DeployArtifactDeployArtifactSourceHelmVerificationKeySource'] = None,
2026
2029
  image_digest: Optional[str] = None,
2027
2030
  image_uri: Optional[str] = None,
2028
2031
  repository_id: Optional[str] = None):
2029
2032
  """
2030
2033
  :param str deploy_artifact_source_type: (Updatable) Specifies types of artifact sources.
2031
- :param str base64encoded_content: (Updatable) Specifies content for the inline artifact.
2034
+ :param str base64encoded_content: (Updatable) The Helm commands to be executed, base 64 encoded
2032
2035
  :param str chart_url: (Updatable) The URL of an OCIR repository.
2033
2036
  :param str deploy_artifact_path: (Updatable) Specifies the artifact path in the repository.
2034
2037
  :param str deploy_artifact_version: (Updatable) Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.
2038
+ :param str helm_artifact_source_type: (Updatable) Specifies types of artifact sources.
2035
2039
  :param 'DeployArtifactDeployArtifactSourceHelmVerificationKeySourceArgs' helm_verification_key_source: (Updatable) The source of the verification material.
2036
2040
  :param str image_digest: (Updatable) Specifies image digest for the version of the image.
2037
2041
  :param str image_uri: (Updatable) Specifies OCIR Image Path - optionally include tag.
@@ -2046,6 +2050,8 @@ class DeployArtifactDeployArtifactSource(dict):
2046
2050
  pulumi.set(__self__, "deploy_artifact_path", deploy_artifact_path)
2047
2051
  if deploy_artifact_version is not None:
2048
2052
  pulumi.set(__self__, "deploy_artifact_version", deploy_artifact_version)
2053
+ if helm_artifact_source_type is not None:
2054
+ pulumi.set(__self__, "helm_artifact_source_type", helm_artifact_source_type)
2049
2055
  if helm_verification_key_source is not None:
2050
2056
  pulumi.set(__self__, "helm_verification_key_source", helm_verification_key_source)
2051
2057
  if image_digest is not None:
@@ -2067,7 +2073,7 @@ class DeployArtifactDeployArtifactSource(dict):
2067
2073
  @pulumi.getter(name="base64encodedContent")
2068
2074
  def base64encoded_content(self) -> Optional[str]:
2069
2075
  """
2070
- (Updatable) Specifies content for the inline artifact.
2076
+ (Updatable) The Helm commands to be executed, base 64 encoded
2071
2077
  """
2072
2078
  return pulumi.get(self, "base64encoded_content")
2073
2079
 
@@ -2095,6 +2101,14 @@ class DeployArtifactDeployArtifactSource(dict):
2095
2101
  """
2096
2102
  return pulumi.get(self, "deploy_artifact_version")
2097
2103
 
2104
+ @property
2105
+ @pulumi.getter(name="helmArtifactSourceType")
2106
+ def helm_artifact_source_type(self) -> Optional[str]:
2107
+ """
2108
+ (Updatable) Specifies types of artifact sources.
2109
+ """
2110
+ return pulumi.get(self, "helm_artifact_source_type")
2111
+
2098
2112
  @property
2099
2113
  @pulumi.getter(name="helmVerificationKeySource")
2100
2114
  def helm_verification_key_source(self) -> Optional['outputs.DeployArtifactDeployArtifactSourceHelmVerificationKeySource']:
@@ -7720,16 +7734,18 @@ class GetDeployArtifactDeployArtifactSourceResult(dict):
7720
7734
  deploy_artifact_path: str,
7721
7735
  deploy_artifact_source_type: str,
7722
7736
  deploy_artifact_version: str,
7737
+ helm_artifact_source_type: str,
7723
7738
  helm_verification_key_sources: Sequence['outputs.GetDeployArtifactDeployArtifactSourceHelmVerificationKeySourceResult'],
7724
7739
  image_digest: str,
7725
7740
  image_uri: str,
7726
7741
  repository_id: str):
7727
7742
  """
7728
- :param str base64encoded_content: Specifies content for the inline artifact.
7743
+ :param str base64encoded_content: The Helm commands to be executed, base 64 encoded
7729
7744
  :param str chart_url: The URL of an OCIR repository.
7730
7745
  :param str deploy_artifact_path: Specifies the artifact path in the repository.
7731
7746
  :param str deploy_artifact_source_type: Specifies types of artifact sources.
7732
7747
  :param str deploy_artifact_version: Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.
7748
+ :param str helm_artifact_source_type: Specifies types of artifact sources.
7733
7749
  :param Sequence['GetDeployArtifactDeployArtifactSourceHelmVerificationKeySourceArgs'] helm_verification_key_sources: The source of the verification material.
7734
7750
  :param str image_digest: Specifies image digest for the version of the image.
7735
7751
  :param str image_uri: Specifies OCIR Image Path - optionally include tag.
@@ -7740,6 +7756,7 @@ class GetDeployArtifactDeployArtifactSourceResult(dict):
7740
7756
  pulumi.set(__self__, "deploy_artifact_path", deploy_artifact_path)
7741
7757
  pulumi.set(__self__, "deploy_artifact_source_type", deploy_artifact_source_type)
7742
7758
  pulumi.set(__self__, "deploy_artifact_version", deploy_artifact_version)
7759
+ pulumi.set(__self__, "helm_artifact_source_type", helm_artifact_source_type)
7743
7760
  pulumi.set(__self__, "helm_verification_key_sources", helm_verification_key_sources)
7744
7761
  pulumi.set(__self__, "image_digest", image_digest)
7745
7762
  pulumi.set(__self__, "image_uri", image_uri)
@@ -7749,7 +7766,7 @@ class GetDeployArtifactDeployArtifactSourceResult(dict):
7749
7766
  @pulumi.getter(name="base64encodedContent")
7750
7767
  def base64encoded_content(self) -> str:
7751
7768
  """
7752
- Specifies content for the inline artifact.
7769
+ The Helm commands to be executed, base 64 encoded
7753
7770
  """
7754
7771
  return pulumi.get(self, "base64encoded_content")
7755
7772
 
@@ -7785,6 +7802,14 @@ class GetDeployArtifactDeployArtifactSourceResult(dict):
7785
7802
  """
7786
7803
  return pulumi.get(self, "deploy_artifact_version")
7787
7804
 
7805
+ @property
7806
+ @pulumi.getter(name="helmArtifactSourceType")
7807
+ def helm_artifact_source_type(self) -> str:
7808
+ """
7809
+ Specifies types of artifact sources.
7810
+ """
7811
+ return pulumi.get(self, "helm_artifact_source_type")
7812
+
7788
7813
  @property
7789
7814
  @pulumi.getter(name="helmVerificationKeySources")
7790
7815
  def helm_verification_key_sources(self) -> Sequence['outputs.GetDeployArtifactDeployArtifactSourceHelmVerificationKeySourceResult']:
@@ -8061,16 +8086,18 @@ class GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceResult(d
8061
8086
  deploy_artifact_path: str,
8062
8087
  deploy_artifact_source_type: str,
8063
8088
  deploy_artifact_version: str,
8089
+ helm_artifact_source_type: str,
8064
8090
  helm_verification_key_sources: Sequence['outputs.GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceHelmVerificationKeySourceResult'],
8065
8091
  image_digest: str,
8066
8092
  image_uri: str,
8067
8093
  repository_id: str):
8068
8094
  """
8069
- :param str base64encoded_content: Specifies content for the inline artifact.
8095
+ :param str base64encoded_content: The Helm commands to be executed, base 64 encoded
8070
8096
  :param str chart_url: The URL of an OCIR repository.
8071
8097
  :param str deploy_artifact_path: Specifies the artifact path in the repository.
8072
8098
  :param str deploy_artifact_source_type: Specifies types of artifact sources.
8073
8099
  :param str deploy_artifact_version: Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.
8100
+ :param str helm_artifact_source_type: Specifies types of artifact sources.
8074
8101
  :param Sequence['GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceHelmVerificationKeySourceArgs'] helm_verification_key_sources: The source of the verification material.
8075
8102
  :param str image_digest: Specifies image digest for the version of the image.
8076
8103
  :param str image_uri: Specifies OCIR Image Path - optionally include tag.
@@ -8081,6 +8108,7 @@ class GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceResult(d
8081
8108
  pulumi.set(__self__, "deploy_artifact_path", deploy_artifact_path)
8082
8109
  pulumi.set(__self__, "deploy_artifact_source_type", deploy_artifact_source_type)
8083
8110
  pulumi.set(__self__, "deploy_artifact_version", deploy_artifact_version)
8111
+ pulumi.set(__self__, "helm_artifact_source_type", helm_artifact_source_type)
8084
8112
  pulumi.set(__self__, "helm_verification_key_sources", helm_verification_key_sources)
8085
8113
  pulumi.set(__self__, "image_digest", image_digest)
8086
8114
  pulumi.set(__self__, "image_uri", image_uri)
@@ -8090,7 +8118,7 @@ class GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceResult(d
8090
8118
  @pulumi.getter(name="base64encodedContent")
8091
8119
  def base64encoded_content(self) -> str:
8092
8120
  """
8093
- Specifies content for the inline artifact.
8121
+ The Helm commands to be executed, base 64 encoded
8094
8122
  """
8095
8123
  return pulumi.get(self, "base64encoded_content")
8096
8124
 
@@ -8126,6 +8154,14 @@ class GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceResult(d
8126
8154
  """
8127
8155
  return pulumi.get(self, "deploy_artifact_version")
8128
8156
 
8157
+ @property
8158
+ @pulumi.getter(name="helmArtifactSourceType")
8159
+ def helm_artifact_source_type(self) -> str:
8160
+ """
8161
+ Specifies types of artifact sources.
8162
+ """
8163
+ return pulumi.get(self, "helm_artifact_source_type")
8164
+
8129
8165
  @property
8130
8166
  @pulumi.getter(name="helmVerificationKeySources")
8131
8167
  def helm_verification_key_sources(self) -> Sequence['outputs.GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceHelmVerificationKeySourceResult']:
@@ -10235,10 +10271,12 @@ class GetDeployStagesDeployStageCollectionItemResult(dict):
10235
10271
  function_timeout_in_seconds: int,
10236
10272
  green_backend_ips: Sequence['outputs.GetDeployStagesDeployStageCollectionItemGreenBackendIpResult'],
10237
10273
  helm_chart_deploy_artifact_id: str,
10274
+ helm_command_artifact_ids: Sequence[str],
10238
10275
  id: str,
10239
10276
  is_async: bool,
10240
10277
  is_debug_enabled: bool,
10241
10278
  is_force_enabled: bool,
10279
+ is_uninstall_on_stage_delete: bool,
10242
10280
  is_validation_enabled: bool,
10243
10281
  kubernetes_manifest_deploy_artifact_ids: Sequence[str],
10244
10282
  lifecycle_details: str,
@@ -10252,6 +10290,7 @@ class GetDeployStagesDeployStageCollectionItemResult(dict):
10252
10290
  oke_cluster_deploy_environment_id: str,
10253
10291
  production_load_balancer_configs: Sequence['outputs.GetDeployStagesDeployStageCollectionItemProductionLoadBalancerConfigResult'],
10254
10292
  project_id: str,
10293
+ purpose: str,
10255
10294
  release_name: str,
10256
10295
  rollback_policies: Sequence['outputs.GetDeployStagesDeployStageCollectionItemRollbackPolicyResult'],
10257
10296
  rollout_policies: Sequence['outputs.GetDeployStagesDeployStageCollectionItemRolloutPolicyResult'],
@@ -10304,10 +10343,12 @@ class GetDeployStagesDeployStageCollectionItemResult(dict):
10304
10343
  :param int function_timeout_in_seconds: Timeout for execution of the Function. Value in seconds.
10305
10344
  :param Sequence['GetDeployStagesDeployStageCollectionItemGreenBackendIpArgs'] green_backend_ips: Collection of backend environment IP addresses.
10306
10345
  :param str helm_chart_deploy_artifact_id: Helm chart artifact OCID.
10346
+ :param Sequence[str] helm_command_artifact_ids: List of Helm command artifact OCIDs.
10307
10347
  :param str id: Unique identifier or OCID for listing a single resource by ID.
10308
10348
  :param bool is_async: A boolean flag specifies whether this stage executes asynchronously.
10309
10349
  :param bool is_debug_enabled: Enables helm --debug option to stream output to tf stdout. Set to false by default.
10310
10350
  :param bool is_force_enabled: Force resource update through delete; or if required, recreate. Set to false by default.
10351
+ :param bool is_uninstall_on_stage_delete: Uninstall the Helm chart release on deleting the stage.
10311
10352
  :param bool is_validation_enabled: A boolean flag specifies whether the invoked function must be validated.
10312
10353
  :param Sequence[str] kubernetes_manifest_deploy_artifact_ids: List of Kubernetes manifest artifact OCIDs.
10313
10354
  :param str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
@@ -10321,6 +10362,7 @@ class GetDeployStagesDeployStageCollectionItemResult(dict):
10321
10362
  :param str oke_cluster_deploy_environment_id: Kubernetes cluster environment OCID for deployment.
10322
10363
  :param Sequence['GetDeployStagesDeployStageCollectionItemProductionLoadBalancerConfigArgs'] production_load_balancer_configs: Specifies config for load balancer traffic shift stages. The Load Balancer specified here should be an Application Load Balancer type. Network Load Balancers are not supported.
10323
10364
  :param str project_id: The OCID of a project.
10365
+ :param str purpose: The purpose of running this Helm stage
10324
10366
  :param str release_name: Release name of the Helm chart.
10325
10367
  :param Sequence['GetDeployStagesDeployStageCollectionItemRollbackPolicyArgs'] rollback_policies: Specifies the rollback policy. This is initiated on the failure of certain stage types.
10326
10368
  :param Sequence['GetDeployStagesDeployStageCollectionItemRolloutPolicyArgs'] rollout_policies: Description of rollout policy for load balancer traffic shift stage.
@@ -10373,10 +10415,12 @@ class GetDeployStagesDeployStageCollectionItemResult(dict):
10373
10415
  pulumi.set(__self__, "function_timeout_in_seconds", function_timeout_in_seconds)
10374
10416
  pulumi.set(__self__, "green_backend_ips", green_backend_ips)
10375
10417
  pulumi.set(__self__, "helm_chart_deploy_artifact_id", helm_chart_deploy_artifact_id)
10418
+ pulumi.set(__self__, "helm_command_artifact_ids", helm_command_artifact_ids)
10376
10419
  pulumi.set(__self__, "id", id)
10377
10420
  pulumi.set(__self__, "is_async", is_async)
10378
10421
  pulumi.set(__self__, "is_debug_enabled", is_debug_enabled)
10379
10422
  pulumi.set(__self__, "is_force_enabled", is_force_enabled)
10423
+ pulumi.set(__self__, "is_uninstall_on_stage_delete", is_uninstall_on_stage_delete)
10380
10424
  pulumi.set(__self__, "is_validation_enabled", is_validation_enabled)
10381
10425
  pulumi.set(__self__, "kubernetes_manifest_deploy_artifact_ids", kubernetes_manifest_deploy_artifact_ids)
10382
10426
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
@@ -10390,6 +10434,7 @@ class GetDeployStagesDeployStageCollectionItemResult(dict):
10390
10434
  pulumi.set(__self__, "oke_cluster_deploy_environment_id", oke_cluster_deploy_environment_id)
10391
10435
  pulumi.set(__self__, "production_load_balancer_configs", production_load_balancer_configs)
10392
10436
  pulumi.set(__self__, "project_id", project_id)
10437
+ pulumi.set(__self__, "purpose", purpose)
10393
10438
  pulumi.set(__self__, "release_name", release_name)
10394
10439
  pulumi.set(__self__, "rollback_policies", rollback_policies)
10395
10440
  pulumi.set(__self__, "rollout_policies", rollout_policies)
@@ -10659,6 +10704,14 @@ class GetDeployStagesDeployStageCollectionItemResult(dict):
10659
10704
  """
10660
10705
  return pulumi.get(self, "helm_chart_deploy_artifact_id")
10661
10706
 
10707
+ @property
10708
+ @pulumi.getter(name="helmCommandArtifactIds")
10709
+ def helm_command_artifact_ids(self) -> Sequence[str]:
10710
+ """
10711
+ List of Helm command artifact OCIDs.
10712
+ """
10713
+ return pulumi.get(self, "helm_command_artifact_ids")
10714
+
10662
10715
  @property
10663
10716
  @pulumi.getter
10664
10717
  def id(self) -> str:
@@ -10691,6 +10744,14 @@ class GetDeployStagesDeployStageCollectionItemResult(dict):
10691
10744
  """
10692
10745
  return pulumi.get(self, "is_force_enabled")
10693
10746
 
10747
+ @property
10748
+ @pulumi.getter(name="isUninstallOnStageDelete")
10749
+ def is_uninstall_on_stage_delete(self) -> bool:
10750
+ """
10751
+ Uninstall the Helm chart release on deleting the stage.
10752
+ """
10753
+ return pulumi.get(self, "is_uninstall_on_stage_delete")
10754
+
10694
10755
  @property
10695
10756
  @pulumi.getter(name="isValidationEnabled")
10696
10757
  def is_validation_enabled(self) -> bool:
@@ -10795,6 +10856,14 @@ class GetDeployStagesDeployStageCollectionItemResult(dict):
10795
10856
  """
10796
10857
  return pulumi.get(self, "project_id")
10797
10858
 
10859
+ @property
10860
+ @pulumi.getter
10861
+ def purpose(self) -> str:
10862
+ """
10863
+ The purpose of running this Helm stage
10864
+ """
10865
+ return pulumi.get(self, "purpose")
10866
+
10798
10867
  @property
10799
10868
  @pulumi.getter(name="releaseName")
10800
10869
  def release_name(self) -> str: