pulumi-oci 2.16.0a1731504509__py3-none-any.whl → 2.17.0__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 (38) hide show
  1. pulumi_oci/__init__.py +40 -0
  2. pulumi_oci/core/_inputs.py +3 -3
  3. pulumi_oci/core/compute_capacity_reservation.py +7 -7
  4. pulumi_oci/core/get_boot_volume.py +1 -1
  5. pulumi_oci/core/get_volume.py +1 -1
  6. pulumi_oci/core/instance_pool.py +7 -7
  7. pulumi_oci/core/outputs.py +46 -46
  8. pulumi_oci/generativeai/__init__.py +16 -0
  9. pulumi_oci/generativeai/_inputs.py +1090 -0
  10. pulumi_oci/generativeai/agent_agent.py +665 -0
  11. pulumi_oci/generativeai/agent_agent_endpoint.py +888 -0
  12. pulumi_oci/generativeai/agent_data_ingestion_job.py +647 -0
  13. pulumi_oci/generativeai/agent_data_source.py +697 -0
  14. pulumi_oci/generativeai/agent_knowledge_base.py +659 -0
  15. pulumi_oci/generativeai/get_agent_agent.py +285 -0
  16. pulumi_oci/generativeai/get_agent_agent_endpoint.py +342 -0
  17. pulumi_oci/generativeai/get_agent_agent_endpoints.py +217 -0
  18. pulumi_oci/generativeai/get_agent_agents.py +195 -0
  19. pulumi_oci/generativeai/get_agent_data_ingestion_job.py +286 -0
  20. pulumi_oci/generativeai/get_agent_data_ingestion_job_log_content.py +117 -0
  21. pulumi_oci/generativeai/get_agent_data_ingestion_jobs.py +217 -0
  22. pulumi_oci/generativeai/get_agent_data_source.py +286 -0
  23. pulumi_oci/generativeai/get_agent_data_sources.py +217 -0
  24. pulumi_oci/generativeai/get_agent_knowledge_base.py +272 -0
  25. pulumi_oci/generativeai/get_agent_knowledge_bases.py +195 -0
  26. pulumi_oci/generativeai/outputs.py +2840 -268
  27. pulumi_oci/goldengate/connection.py +1065 -78
  28. pulumi_oci/goldengate/deployment.py +7 -7
  29. pulumi_oci/goldengate/deployment_backup.py +49 -0
  30. pulumi_oci/goldengate/get_connection.py +288 -7
  31. pulumi_oci/goldengate/get_deployment.py +1 -1
  32. pulumi_oci/goldengate/get_deployment_backup.py +15 -1
  33. pulumi_oci/goldengate/outputs.py +240 -3
  34. pulumi_oci/pulumi-plugin.json +1 -1
  35. {pulumi_oci-2.16.0a1731504509.dist-info → pulumi_oci-2.17.0.dist-info}/METADATA +1 -1
  36. {pulumi_oci-2.16.0a1731504509.dist-info → pulumi_oci-2.17.0.dist-info}/RECORD +38 -22
  37. {pulumi_oci-2.16.0a1731504509.dist-info → pulumi_oci-2.17.0.dist-info}/WHEEL +0 -0
  38. {pulumi_oci-2.16.0a1731504509.dist-info → pulumi_oci-2.17.0.dist-info}/top_level.txt +0 -0
@@ -370,7 +370,7 @@ class GetDeploymentResult:
370
370
  @pulumi.getter(name="loadBalancerSubnetId")
371
371
  def load_balancer_subnet_id(self) -> str:
372
372
  """
373
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
373
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatibility, this is an optional property. It will become mandatory for public deployments after October 1, 2024.
374
374
  """
375
375
  return pulumi.get(self, "load_balancer_subnet_id")
376
376
 
@@ -27,7 +27,7 @@ class GetDeploymentBackupResult:
27
27
  """
28
28
  A collection of values returned by getDeploymentBackup.
29
29
  """
30
- def __init__(__self__, backup_type=None, bucket=None, compartment_id=None, defined_tags=None, deployment_backup_id=None, deployment_id=None, deployment_type=None, display_name=None, freeform_tags=None, id=None, is_automatic=None, is_lock_override=None, lifecycle_details=None, locks=None, namespace=None, object=None, ogg_version=None, size_in_bytes=None, state=None, system_tags=None, time_backup_finished=None, time_created=None, time_of_backup=None, time_updated=None):
30
+ def __init__(__self__, backup_type=None, bucket=None, compartment_id=None, defined_tags=None, deployment_backup_id=None, deployment_id=None, deployment_type=None, display_name=None, freeform_tags=None, id=None, is_automatic=None, is_lock_override=None, is_metadata_only=None, lifecycle_details=None, locks=None, namespace=None, object=None, ogg_version=None, size_in_bytes=None, state=None, system_tags=None, time_backup_finished=None, time_created=None, time_of_backup=None, time_updated=None):
31
31
  if backup_type and not isinstance(backup_type, str):
32
32
  raise TypeError("Expected argument 'backup_type' to be a str")
33
33
  pulumi.set(__self__, "backup_type", backup_type)
@@ -64,6 +64,9 @@ class GetDeploymentBackupResult:
64
64
  if is_lock_override and not isinstance(is_lock_override, bool):
65
65
  raise TypeError("Expected argument 'is_lock_override' to be a bool")
66
66
  pulumi.set(__self__, "is_lock_override", is_lock_override)
67
+ if is_metadata_only and not isinstance(is_metadata_only, bool):
68
+ raise TypeError("Expected argument 'is_metadata_only' to be a bool")
69
+ pulumi.set(__self__, "is_metadata_only", is_metadata_only)
67
70
  if lifecycle_details and not isinstance(lifecycle_details, str):
68
71
  raise TypeError("Expected argument 'lifecycle_details' to be a str")
69
72
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
@@ -191,6 +194,14 @@ class GetDeploymentBackupResult:
191
194
  def is_lock_override(self) -> bool:
192
195
  return pulumi.get(self, "is_lock_override")
193
196
 
197
+ @property
198
+ @pulumi.getter(name="isMetadataOnly")
199
+ def is_metadata_only(self) -> bool:
200
+ """
201
+ Parameter to allow users to create backup without trails
202
+ """
203
+ return pulumi.get(self, "is_metadata_only")
204
+
194
205
  @property
195
206
  @pulumi.getter(name="lifecycleDetails")
196
207
  def lifecycle_details(self) -> str:
@@ -306,6 +317,7 @@ class AwaitableGetDeploymentBackupResult(GetDeploymentBackupResult):
306
317
  id=self.id,
307
318
  is_automatic=self.is_automatic,
308
319
  is_lock_override=self.is_lock_override,
320
+ is_metadata_only=self.is_metadata_only,
309
321
  lifecycle_details=self.lifecycle_details,
310
322
  locks=self.locks,
311
323
  namespace=self.namespace,
@@ -357,6 +369,7 @@ def get_deployment_backup(deployment_backup_id: Optional[str] = None,
357
369
  id=pulumi.get(__ret__, 'id'),
358
370
  is_automatic=pulumi.get(__ret__, 'is_automatic'),
359
371
  is_lock_override=pulumi.get(__ret__, 'is_lock_override'),
372
+ is_metadata_only=pulumi.get(__ret__, 'is_metadata_only'),
360
373
  lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
361
374
  locks=pulumi.get(__ret__, 'locks'),
362
375
  namespace=pulumi.get(__ret__, 'namespace'),
@@ -405,6 +418,7 @@ def get_deployment_backup_output(deployment_backup_id: Optional[pulumi.Input[str
405
418
  id=pulumi.get(__response__, 'id'),
406
419
  is_automatic=pulumi.get(__response__, 'is_automatic'),
407
420
  is_lock_override=pulumi.get(__response__, 'is_lock_override'),
421
+ is_metadata_only=pulumi.get(__response__, 'is_metadata_only'),
408
422
  lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
409
423
  locks=pulumi.get(__response__, 'locks'),
410
424
  namespace=pulumi.get(__response__, 'namespace'),