pulumi-oci 1.38.0a1717136770__py3-none-any.whl → 1.39.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 (48) hide show
  1. pulumi_oci/__init__.py +19 -0
  2. pulumi_oci/bigdataservice/__init__.py +1 -0
  3. pulumi_oci/bigdataservice/_inputs.py +103 -2
  4. pulumi_oci/bigdataservice/bds_instance_os_patch_action.py +239 -0
  5. pulumi_oci/bigdataservice/outputs.py +174 -6
  6. pulumi_oci/database/__init__.py +1 -0
  7. pulumi_oci/database/_inputs.py +44 -4
  8. pulumi_oci/database/autonomous_database.py +61 -14
  9. pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
  10. pulumi_oci/database/get_autonomous_character_sets.py +4 -0
  11. pulumi_oci/database/get_autonomous_database.py +14 -1
  12. pulumi_oci/database/get_autonomous_database_peers.py +133 -0
  13. pulumi_oci/database/outputs.py +102 -6
  14. pulumi_oci/demandsignal/__init__.py +12 -0
  15. pulumi_oci/demandsignal/_inputs.py +267 -0
  16. pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
  17. pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
  18. pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
  19. pulumi_oci/demandsignal/outputs.py +700 -0
  20. pulumi_oci/goldengate/_inputs.py +219 -6
  21. pulumi_oci/goldengate/connection.py +334 -0
  22. pulumi_oci/goldengate/connection_assignment.py +68 -19
  23. pulumi_oci/goldengate/deployment.py +88 -7
  24. pulumi_oci/goldengate/deployment_backup.py +122 -3
  25. pulumi_oci/goldengate/deployment_certificate.py +59 -10
  26. pulumi_oci/goldengate/get_connection.py +80 -1
  27. pulumi_oci/goldengate/get_connection_assignment.py +11 -1
  28. pulumi_oci/goldengate/get_deployment.py +25 -2
  29. pulumi_oci/goldengate/get_deployment_backup.py +38 -1
  30. pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
  31. pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
  32. pulumi_oci/goldengate/get_trail_files.py +2 -2
  33. pulumi_oci/goldengate/get_trail_sequences.py +2 -2
  34. pulumi_oci/goldengate/outputs.py +720 -12
  35. pulumi_oci/jms/get_java_downloads_java_download_report.py +28 -2
  36. pulumi_oci/jms/get_java_downloads_java_download_token.py +4 -4
  37. pulumi_oci/jms/get_java_downloads_java_license_acceptance_record.py +2 -2
  38. pulumi_oci/jms/java_downloads_java_download_report.py +96 -6
  39. pulumi_oci/jms/java_downloads_java_download_token.py +14 -12
  40. pulumi_oci/jms/java_downloads_java_license_acceptance_record.py +41 -16
  41. pulumi_oci/jms/outputs.py +38 -16
  42. pulumi_oci/loadbalancer/_inputs.py +4 -0
  43. pulumi_oci/loadbalancer/outputs.py +4 -0
  44. pulumi_oci/pulumi-plugin.json +1 -1
  45. {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/METADATA +1 -1
  46. {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/RECORD +48 -40
  47. {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/WHEEL +0 -0
  48. {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/top_level.txt +0 -0
@@ -46,6 +46,7 @@ __all__ = [
46
46
  'BdsInstanceNode',
47
47
  'BdsInstanceNodeAttachedBlockVolume',
48
48
  'BdsInstanceOperationCertificateManagementsManagementHostCertDetail',
49
+ 'BdsInstanceOsPatchActionPatchingConfig',
49
50
  'BdsInstanceUtilNode',
50
51
  'BdsInstanceUtilNodeShapeConfig',
51
52
  'BdsInstanceWorkerNode',
@@ -1656,7 +1657,7 @@ class BdsInstanceClusterDetail(dict):
1656
1657
  :param str hue_server_url: The URL of the Hue server.
1657
1658
  :param str jupyter_hub_url: The URL of the Jupyterhub.
1658
1659
  :param str odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) installed on the cluster.
1659
- :param str os_version: Oracle Linux version installed in the cluster.
1660
+ :param str os_version: BDS-assigned Operating System version for the node.
1660
1661
  :param str time_created: The time the BDS instance was created. An RFC3339 formatted datetime string
1661
1662
  :param str time_refreshed: The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.
1662
1663
  """
@@ -1791,7 +1792,7 @@ class BdsInstanceClusterDetail(dict):
1791
1792
  @pulumi.getter(name="osVersion")
1792
1793
  def os_version(self) -> Optional[str]:
1793
1794
  """
1794
- Oracle Linux version installed in the cluster.
1795
+ BDS-assigned Operating System version for the node.
1795
1796
  """
1796
1797
  return pulumi.get(self, "os_version")
1797
1798
 
@@ -2457,10 +2458,16 @@ class BdsInstanceNode(dict):
2457
2458
  suggest = "instance_id"
2458
2459
  elif key == "ipAddress":
2459
2460
  suggest = "ip_address"
2461
+ elif key == "isRebootRequired":
2462
+ suggest = "is_reboot_required"
2463
+ elif key == "localDisksTotalSizeInGbs":
2464
+ suggest = "local_disks_total_size_in_gbs"
2460
2465
  elif key == "memoryInGbs":
2461
2466
  suggest = "memory_in_gbs"
2462
2467
  elif key == "nodeType":
2463
2468
  suggest = "node_type"
2469
+ elif key == "osVersion":
2470
+ suggest = "os_version"
2464
2471
  elif key == "sshFingerprint":
2465
2472
  suggest = "ssh_fingerprint"
2466
2473
  elif key == "subnetId":
@@ -2490,10 +2497,13 @@ class BdsInstanceNode(dict):
2490
2497
  image_id: Optional[str] = None,
2491
2498
  instance_id: Optional[str] = None,
2492
2499
  ip_address: Optional[str] = None,
2500
+ is_reboot_required: Optional[bool] = None,
2501
+ local_disks_total_size_in_gbs: Optional[float] = None,
2493
2502
  memory_in_gbs: Optional[int] = None,
2494
2503
  node_type: Optional[str] = None,
2495
2504
  nvmes: Optional[int] = None,
2496
2505
  ocpus: Optional[int] = None,
2506
+ os_version: Optional[str] = None,
2497
2507
  shape: Optional[str] = None,
2498
2508
  ssh_fingerprint: Optional[str] = None,
2499
2509
  state: Optional[str] = None,
@@ -2509,10 +2519,13 @@ class BdsInstanceNode(dict):
2509
2519
  :param str image_id: The OCID of the image from which the node was created
2510
2520
  :param str instance_id: The OCID of the underlying compute instance
2511
2521
  :param str ip_address: IP address of the node
2522
+ :param bool is_reboot_required: Indicates if the node requires a reboot to either reflect the latest os kernel or take actions for maintenance reboot.
2523
+ :param float local_disks_total_size_in_gbs: The aggregate size of all local disks, in gigabytes. If the instance does not have any local disks, this field is null.
2512
2524
  :param int memory_in_gbs: The total amount of memory available to the node, in gigabytes.
2513
2525
  :param str node_type: The Big Data Service cluster node type.
2514
2526
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
2515
2527
  :param int ocpus: The total number of OCPUs available to the node.
2528
+ :param str os_version: BDS-assigned Operating System version for the node.
2516
2529
  :param str shape: (Updatable) Shape of the node.
2517
2530
  :param str ssh_fingerprint: The fingerprint of the SSH key used for node access
2518
2531
  :param str state: (Updatable) The target state for the Bds Instance. Could be set to `ACTIVE` or `INACTIVE` to start/stop the bds instance.
@@ -2536,6 +2549,10 @@ class BdsInstanceNode(dict):
2536
2549
  pulumi.set(__self__, "instance_id", instance_id)
2537
2550
  if ip_address is not None:
2538
2551
  pulumi.set(__self__, "ip_address", ip_address)
2552
+ if is_reboot_required is not None:
2553
+ pulumi.set(__self__, "is_reboot_required", is_reboot_required)
2554
+ if local_disks_total_size_in_gbs is not None:
2555
+ pulumi.set(__self__, "local_disks_total_size_in_gbs", local_disks_total_size_in_gbs)
2539
2556
  if memory_in_gbs is not None:
2540
2557
  pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
2541
2558
  if node_type is not None:
@@ -2544,6 +2561,8 @@ class BdsInstanceNode(dict):
2544
2561
  pulumi.set(__self__, "nvmes", nvmes)
2545
2562
  if ocpus is not None:
2546
2563
  pulumi.set(__self__, "ocpus", ocpus)
2564
+ if os_version is not None:
2565
+ pulumi.set(__self__, "os_version", os_version)
2547
2566
  if shape is not None:
2548
2567
  pulumi.set(__self__, "shape", shape)
2549
2568
  if ssh_fingerprint is not None:
@@ -2621,6 +2640,22 @@ class BdsInstanceNode(dict):
2621
2640
  """
2622
2641
  return pulumi.get(self, "ip_address")
2623
2642
 
2643
+ @property
2644
+ @pulumi.getter(name="isRebootRequired")
2645
+ def is_reboot_required(self) -> Optional[bool]:
2646
+ """
2647
+ Indicates if the node requires a reboot to either reflect the latest os kernel or take actions for maintenance reboot.
2648
+ """
2649
+ return pulumi.get(self, "is_reboot_required")
2650
+
2651
+ @property
2652
+ @pulumi.getter(name="localDisksTotalSizeInGbs")
2653
+ def local_disks_total_size_in_gbs(self) -> Optional[float]:
2654
+ """
2655
+ The aggregate size of all local disks, in gigabytes. If the instance does not have any local disks, this field is null.
2656
+ """
2657
+ return pulumi.get(self, "local_disks_total_size_in_gbs")
2658
+
2624
2659
  @property
2625
2660
  @pulumi.getter(name="memoryInGbs")
2626
2661
  def memory_in_gbs(self) -> Optional[int]:
@@ -2653,6 +2688,14 @@ class BdsInstanceNode(dict):
2653
2688
  """
2654
2689
  return pulumi.get(self, "ocpus")
2655
2690
 
2691
+ @property
2692
+ @pulumi.getter(name="osVersion")
2693
+ def os_version(self) -> Optional[str]:
2694
+ """
2695
+ BDS-assigned Operating System version for the node.
2696
+ """
2697
+ return pulumi.get(self, "os_version")
2698
+
2656
2699
  @property
2657
2700
  @pulumi.getter
2658
2701
  def shape(self) -> Optional[str]:
@@ -2814,6 +2857,65 @@ class BdsInstanceOperationCertificateManagementsManagementHostCertDetail(dict):
2814
2857
  return pulumi.get(self, "private_key")
2815
2858
 
2816
2859
 
2860
+ @pulumi.output_type
2861
+ class BdsInstanceOsPatchActionPatchingConfig(dict):
2862
+ @staticmethod
2863
+ def __key_warning(key: str):
2864
+ suggest = None
2865
+ if key == "patchingConfigStrategy":
2866
+ suggest = "patching_config_strategy"
2867
+ elif key == "batchSize":
2868
+ suggest = "batch_size"
2869
+ elif key == "toleranceThresholdPerBatch":
2870
+ suggest = "tolerance_threshold_per_batch"
2871
+ elif key == "waitTimeBetweenBatchInSeconds":
2872
+ suggest = "wait_time_between_batch_in_seconds"
2873
+
2874
+ if suggest:
2875
+ pulumi.log.warn(f"Key '{key}' not found in BdsInstanceOsPatchActionPatchingConfig. Access the value via the '{suggest}' property getter instead.")
2876
+
2877
+ def __getitem__(self, key: str) -> Any:
2878
+ BdsInstanceOsPatchActionPatchingConfig.__key_warning(key)
2879
+ return super().__getitem__(key)
2880
+
2881
+ def get(self, key: str, default = None) -> Any:
2882
+ BdsInstanceOsPatchActionPatchingConfig.__key_warning(key)
2883
+ return super().get(key, default)
2884
+
2885
+ def __init__(__self__, *,
2886
+ patching_config_strategy: str,
2887
+ batch_size: Optional[int] = None,
2888
+ tolerance_threshold_per_batch: Optional[int] = None,
2889
+ wait_time_between_batch_in_seconds: Optional[int] = None):
2890
+ pulumi.set(__self__, "patching_config_strategy", patching_config_strategy)
2891
+ if batch_size is not None:
2892
+ pulumi.set(__self__, "batch_size", batch_size)
2893
+ if tolerance_threshold_per_batch is not None:
2894
+ pulumi.set(__self__, "tolerance_threshold_per_batch", tolerance_threshold_per_batch)
2895
+ if wait_time_between_batch_in_seconds is not None:
2896
+ pulumi.set(__self__, "wait_time_between_batch_in_seconds", wait_time_between_batch_in_seconds)
2897
+
2898
+ @property
2899
+ @pulumi.getter(name="patchingConfigStrategy")
2900
+ def patching_config_strategy(self) -> str:
2901
+ return pulumi.get(self, "patching_config_strategy")
2902
+
2903
+ @property
2904
+ @pulumi.getter(name="batchSize")
2905
+ def batch_size(self) -> Optional[int]:
2906
+ return pulumi.get(self, "batch_size")
2907
+
2908
+ @property
2909
+ @pulumi.getter(name="toleranceThresholdPerBatch")
2910
+ def tolerance_threshold_per_batch(self) -> Optional[int]:
2911
+ return pulumi.get(self, "tolerance_threshold_per_batch")
2912
+
2913
+ @property
2914
+ @pulumi.getter(name="waitTimeBetweenBatchInSeconds")
2915
+ def wait_time_between_batch_in_seconds(self) -> Optional[int]:
2916
+ return pulumi.get(self, "wait_time_between_batch_in_seconds")
2917
+
2918
+
2817
2919
  @pulumi.output_type
2818
2920
  class BdsInstanceUtilNode(dict):
2819
2921
  @staticmethod
@@ -4893,7 +4995,7 @@ class GetBdsInstanceClusterDetailResult(dict):
4893
4995
  :param str hue_server_url: The URL of the Hue server.
4894
4996
  :param str jupyter_hub_url: The URL of the Jupyterhub.
4895
4997
  :param str odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) installed on the cluster.
4896
- :param str os_version: Oracle Linux version installed in the cluster.
4998
+ :param str os_version: BDS-assigned Operating System version for the node.
4897
4999
  :param str time_created: The time the cluster was created, shown as an RFC 3339 formatted datetime string.
4898
5000
  :param str time_refreshed: The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.
4899
5001
  """
@@ -5013,7 +5115,7 @@ class GetBdsInstanceClusterDetailResult(dict):
5013
5115
  @pulumi.getter(name="osVersion")
5014
5116
  def os_version(self) -> str:
5015
5117
  """
5016
- Oracle Linux version installed in the cluster.
5118
+ BDS-assigned Operating System version for the node.
5017
5119
  """
5018
5120
  return pulumi.get(self, "os_version")
5019
5121
 
@@ -5761,10 +5863,13 @@ class GetBdsInstanceNodeResult(dict):
5761
5863
  image_id: str,
5762
5864
  instance_id: str,
5763
5865
  ip_address: str,
5866
+ is_reboot_required: bool,
5867
+ local_disks_total_size_in_gbs: float,
5764
5868
  memory_in_gbs: int,
5765
5869
  node_type: str,
5766
5870
  nvmes: int,
5767
5871
  ocpus: int,
5872
+ os_version: str,
5768
5873
  shape: str,
5769
5874
  ssh_fingerprint: str,
5770
5875
  state: str,
@@ -5780,10 +5885,13 @@ class GetBdsInstanceNodeResult(dict):
5780
5885
  :param str image_id: The OCID of the image from which the node was created.
5781
5886
  :param str instance_id: The OCID of the underlying Oracle Cloud Infrastructure Compute instance.
5782
5887
  :param str ip_address: IP address of the node.
5888
+ :param bool is_reboot_required: Indicates if the node requires a reboot to either reflect the latest os kernel or take actions for maintenance reboot.
5889
+ :param float local_disks_total_size_in_gbs: The aggregate size of all local disks, in gigabytes. If the instance does not have any local disks, this field is null.
5783
5890
  :param int memory_in_gbs: The total amount of memory available to the node, in gigabytes.
5784
5891
  :param str node_type: Cluster node type.
5785
5892
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
5786
5893
  :param int ocpus: The total number of OCPUs available to the node.
5894
+ :param str os_version: BDS-assigned Operating System version for the node.
5787
5895
  :param str shape: Shape of the node.
5788
5896
  :param str ssh_fingerprint: The fingerprint of the SSH key used for node access.
5789
5897
  :param str state: The state of the cluster.
@@ -5799,10 +5907,13 @@ class GetBdsInstanceNodeResult(dict):
5799
5907
  pulumi.set(__self__, "image_id", image_id)
5800
5908
  pulumi.set(__self__, "instance_id", instance_id)
5801
5909
  pulumi.set(__self__, "ip_address", ip_address)
5910
+ pulumi.set(__self__, "is_reboot_required", is_reboot_required)
5911
+ pulumi.set(__self__, "local_disks_total_size_in_gbs", local_disks_total_size_in_gbs)
5802
5912
  pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
5803
5913
  pulumi.set(__self__, "node_type", node_type)
5804
5914
  pulumi.set(__self__, "nvmes", nvmes)
5805
5915
  pulumi.set(__self__, "ocpus", ocpus)
5916
+ pulumi.set(__self__, "os_version", os_version)
5806
5917
  pulumi.set(__self__, "shape", shape)
5807
5918
  pulumi.set(__self__, "ssh_fingerprint", ssh_fingerprint)
5808
5919
  pulumi.set(__self__, "state", state)
@@ -5874,6 +5985,22 @@ class GetBdsInstanceNodeResult(dict):
5874
5985
  """
5875
5986
  return pulumi.get(self, "ip_address")
5876
5987
 
5988
+ @property
5989
+ @pulumi.getter(name="isRebootRequired")
5990
+ def is_reboot_required(self) -> bool:
5991
+ """
5992
+ Indicates if the node requires a reboot to either reflect the latest os kernel or take actions for maintenance reboot.
5993
+ """
5994
+ return pulumi.get(self, "is_reboot_required")
5995
+
5996
+ @property
5997
+ @pulumi.getter(name="localDisksTotalSizeInGbs")
5998
+ def local_disks_total_size_in_gbs(self) -> float:
5999
+ """
6000
+ The aggregate size of all local disks, in gigabytes. If the instance does not have any local disks, this field is null.
6001
+ """
6002
+ return pulumi.get(self, "local_disks_total_size_in_gbs")
6003
+
5877
6004
  @property
5878
6005
  @pulumi.getter(name="memoryInGbs")
5879
6006
  def memory_in_gbs(self) -> int:
@@ -5906,6 +6033,14 @@ class GetBdsInstanceNodeResult(dict):
5906
6033
  """
5907
6034
  return pulumi.get(self, "ocpus")
5908
6035
 
6036
+ @property
6037
+ @pulumi.getter(name="osVersion")
6038
+ def os_version(self) -> str:
6039
+ """
6040
+ BDS-assigned Operating System version for the node.
6041
+ """
6042
+ return pulumi.get(self, "os_version")
6043
+
5909
6044
  @property
5910
6045
  @pulumi.getter
5911
6046
  def shape(self) -> str:
@@ -6806,7 +6941,7 @@ class GetBdsInstancesBdsInstanceClusterDetailResult(dict):
6806
6941
  :param str hue_server_url: The URL of the Hue server.
6807
6942
  :param str jupyter_hub_url: The URL of the Jupyterhub.
6808
6943
  :param str odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) installed on the cluster.
6809
- :param str os_version: Oracle Linux version installed in the cluster.
6944
+ :param str os_version: BDS-assigned Operating System version for the node.
6810
6945
  :param str time_created: The time the cluster was created, shown as an RFC 3339 formatted datetime string.
6811
6946
  :param str time_refreshed: The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.
6812
6947
  """
@@ -6926,7 +7061,7 @@ class GetBdsInstancesBdsInstanceClusterDetailResult(dict):
6926
7061
  @pulumi.getter(name="osVersion")
6927
7062
  def os_version(self) -> str:
6928
7063
  """
6929
- Oracle Linux version installed in the cluster.
7064
+ BDS-assigned Operating System version for the node.
6930
7065
  """
6931
7066
  return pulumi.get(self, "os_version")
6932
7067
 
@@ -7375,10 +7510,13 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7375
7510
  image_id: str,
7376
7511
  instance_id: str,
7377
7512
  ip_address: str,
7513
+ is_reboot_required: bool,
7514
+ local_disks_total_size_in_gbs: float,
7378
7515
  memory_in_gbs: int,
7379
7516
  node_type: str,
7380
7517
  nvmes: int,
7381
7518
  ocpus: int,
7519
+ os_version: str,
7382
7520
  shape: str,
7383
7521
  ssh_fingerprint: str,
7384
7522
  state: str,
@@ -7394,10 +7532,13 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7394
7532
  :param str image_id: The OCID of the image from which the node was created.
7395
7533
  :param str instance_id: The OCID of the underlying Oracle Cloud Infrastructure Compute instance.
7396
7534
  :param str ip_address: IP address of the node.
7535
+ :param bool is_reboot_required: Indicates if the node requires a reboot to either reflect the latest os kernel or take actions for maintenance reboot.
7536
+ :param float local_disks_total_size_in_gbs: The aggregate size of all local disks, in gigabytes. If the instance does not have any local disks, this field is null.
7397
7537
  :param int memory_in_gbs: The total amount of memory available to the node, in gigabytes.
7398
7538
  :param str node_type: Cluster node type.
7399
7539
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
7400
7540
  :param int ocpus: The total number of OCPUs available to the node.
7541
+ :param str os_version: BDS-assigned Operating System version for the node.
7401
7542
  :param str shape: Shape of the node.
7402
7543
  :param str ssh_fingerprint: The fingerprint of the SSH key used for node access.
7403
7544
  :param str state: The state of the cluster.
@@ -7413,10 +7554,13 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7413
7554
  pulumi.set(__self__, "image_id", image_id)
7414
7555
  pulumi.set(__self__, "instance_id", instance_id)
7415
7556
  pulumi.set(__self__, "ip_address", ip_address)
7557
+ pulumi.set(__self__, "is_reboot_required", is_reboot_required)
7558
+ pulumi.set(__self__, "local_disks_total_size_in_gbs", local_disks_total_size_in_gbs)
7416
7559
  pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
7417
7560
  pulumi.set(__self__, "node_type", node_type)
7418
7561
  pulumi.set(__self__, "nvmes", nvmes)
7419
7562
  pulumi.set(__self__, "ocpus", ocpus)
7563
+ pulumi.set(__self__, "os_version", os_version)
7420
7564
  pulumi.set(__self__, "shape", shape)
7421
7565
  pulumi.set(__self__, "ssh_fingerprint", ssh_fingerprint)
7422
7566
  pulumi.set(__self__, "state", state)
@@ -7488,6 +7632,22 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7488
7632
  """
7489
7633
  return pulumi.get(self, "ip_address")
7490
7634
 
7635
+ @property
7636
+ @pulumi.getter(name="isRebootRequired")
7637
+ def is_reboot_required(self) -> bool:
7638
+ """
7639
+ Indicates if the node requires a reboot to either reflect the latest os kernel or take actions for maintenance reboot.
7640
+ """
7641
+ return pulumi.get(self, "is_reboot_required")
7642
+
7643
+ @property
7644
+ @pulumi.getter(name="localDisksTotalSizeInGbs")
7645
+ def local_disks_total_size_in_gbs(self) -> float:
7646
+ """
7647
+ The aggregate size of all local disks, in gigabytes. If the instance does not have any local disks, this field is null.
7648
+ """
7649
+ return pulumi.get(self, "local_disks_total_size_in_gbs")
7650
+
7491
7651
  @property
7492
7652
  @pulumi.getter(name="memoryInGbs")
7493
7653
  def memory_in_gbs(self) -> int:
@@ -7520,6 +7680,14 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7520
7680
  """
7521
7681
  return pulumi.get(self, "ocpus")
7522
7682
 
7683
+ @property
7684
+ @pulumi.getter(name="osVersion")
7685
+ def os_version(self) -> str:
7686
+ """
7687
+ BDS-assigned Operating System version for the node.
7688
+ """
7689
+ return pulumi.get(self, "os_version")
7690
+
7523
7691
  @property
7524
7692
  @pulumi.getter
7525
7693
  def shape(self) -> str:
@@ -71,6 +71,7 @@ from .get_autonomous_database_backups import *
71
71
  from .get_autonomous_database_dataguard_association import *
72
72
  from .get_autonomous_database_dataguard_associations import *
73
73
  from .get_autonomous_database_instance_wallet_management import *
74
+ from .get_autonomous_database_peers import *
74
75
  from .get_autonomous_database_refreshable_clones import *
75
76
  from .get_autonomous_database_regional_wallet_management import *
76
77
  from .get_autonomous_database_software_image import *
@@ -172,6 +172,7 @@ __all__ = [
172
172
  'GetAutonomousContainerPatchesFilterArgs',
173
173
  'GetAutonomousDatabaseBackupsFilterArgs',
174
174
  'GetAutonomousDatabaseDataguardAssociationsFilterArgs',
175
+ 'GetAutonomousDatabasePeersFilterArgs',
175
176
  'GetAutonomousDatabaseRefreshableClonesFilterArgs',
176
177
  'GetAutonomousDatabaseSoftwareImagesFilterArgs',
177
178
  'GetAutonomousDatabasesClonesFilterArgs',
@@ -1811,7 +1812,7 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
1811
1812
  :param pulumi.Input[str] id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
1812
1813
  :param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
1813
1814
  :param pulumi.Input[str] time_activated: The date and time the kms key activated.
1814
- :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
1815
+ :param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
1815
1816
  """
1816
1817
  if id is not None:
1817
1818
  pulumi.set(__self__, "id", id)
@@ -1862,7 +1863,7 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
1862
1863
  @pulumi.getter(name="vaultId")
1863
1864
  def vault_id(self) -> Optional[pulumi.Input[str]]:
1864
1865
  """
1865
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
1866
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
1866
1867
  """
1867
1868
  return pulumi.get(self, "vault_id")
1868
1869
 
@@ -2037,7 +2038,7 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs:
2037
2038
  is_snapshot_standby: Optional[pulumi.Input[bool]] = None,
2038
2039
  time_snapshot_standby_enabled_till: Optional[pulumi.Input[str]] = None):
2039
2040
  """
2040
- :param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
2041
+ :param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
2041
2042
  :param pulumi.Input[bool] is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
2042
2043
  :param pulumi.Input[bool] is_snapshot_standby: Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
2043
2044
  :param pulumi.Input[str] time_snapshot_standby_enabled_till: Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
@@ -2055,7 +2056,7 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs:
2055
2056
  @pulumi.getter(name="disasterRecoveryType")
2056
2057
  def disaster_recovery_type(self) -> Optional[pulumi.Input[str]]:
2057
2058
  """
2058
- Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
2059
+ Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
2059
2060
  """
2060
2061
  return pulumi.get(self, "disaster_recovery_type")
2061
2062
 
@@ -11526,6 +11527,45 @@ class GetAutonomousDatabaseDataguardAssociationsFilterArgs:
11526
11527
  pulumi.set(self, "regex", value)
11527
11528
 
11528
11529
 
11530
+ @pulumi.input_type
11531
+ class GetAutonomousDatabasePeersFilterArgs:
11532
+ def __init__(__self__, *,
11533
+ name: str,
11534
+ values: Sequence[str],
11535
+ regex: Optional[bool] = None):
11536
+ pulumi.set(__self__, "name", name)
11537
+ pulumi.set(__self__, "values", values)
11538
+ if regex is not None:
11539
+ pulumi.set(__self__, "regex", regex)
11540
+
11541
+ @property
11542
+ @pulumi.getter
11543
+ def name(self) -> str:
11544
+ return pulumi.get(self, "name")
11545
+
11546
+ @name.setter
11547
+ def name(self, value: str):
11548
+ pulumi.set(self, "name", value)
11549
+
11550
+ @property
11551
+ @pulumi.getter
11552
+ def values(self) -> Sequence[str]:
11553
+ return pulumi.get(self, "values")
11554
+
11555
+ @values.setter
11556
+ def values(self, value: Sequence[str]):
11557
+ pulumi.set(self, "values", value)
11558
+
11559
+ @property
11560
+ @pulumi.getter
11561
+ def regex(self) -> Optional[bool]:
11562
+ return pulumi.get(self, "regex")
11563
+
11564
+ @regex.setter
11565
+ def regex(self, value: Optional[bool]):
11566
+ pulumi.set(self, "regex", value)
11567
+
11568
+
11529
11569
  @pulumi.input_type
11530
11570
  class GetAutonomousDatabaseRefreshableClonesFilterArgs:
11531
11571
  def __init__(__self__, *,