pulumi-oci 1.38.0__py3-none-any.whl → 1.38.0a1717136770__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.
pulumi_oci/__init__.py CHANGED
@@ -764,14 +764,6 @@ _utilities.register(
764
764
  "oci:BigDataService/bdsInstanceOperationCertificateManagementsManagement:BdsInstanceOperationCertificateManagementsManagement": "BdsInstanceOperationCertificateManagementsManagement"
765
765
  }
766
766
  },
767
- {
768
- "pkg": "oci",
769
- "mod": "BigDataService/bdsInstanceOsPatchAction",
770
- "fqn": "pulumi_oci.bigdataservice",
771
- "classes": {
772
- "oci:BigDataService/bdsInstanceOsPatchAction:BdsInstanceOsPatchAction": "BdsInstanceOsPatchAction"
773
- }
774
- },
775
767
  {
776
768
  "pkg": "oci",
777
769
  "mod": "BigDataService/bdsInstancePatchAction",
@@ -10,7 +10,6 @@ from .bds_instance import *
10
10
  from .bds_instance_api_key import *
11
11
  from .bds_instance_metastore_config import *
12
12
  from .bds_instance_operation_certificate_managements_management import *
13
- from .bds_instance_os_patch_action import *
14
13
  from .bds_instance_patch_action import *
15
14
  from .get_auto_scaling_configuration import *
16
15
  from .get_auto_scaling_configurations import *
@@ -45,7 +45,6 @@ __all__ = [
45
45
  'BdsInstanceNodeArgs',
46
46
  'BdsInstanceNodeAttachedBlockVolumeArgs',
47
47
  'BdsInstanceOperationCertificateManagementsManagementHostCertDetailArgs',
48
- 'BdsInstanceOsPatchActionPatchingConfigArgs',
49
48
  'BdsInstanceUtilNodeArgs',
50
49
  'BdsInstanceUtilNodeShapeConfigArgs',
51
50
  'BdsInstanceWorkerNodeArgs',
@@ -1410,7 +1409,7 @@ class BdsInstanceClusterDetailArgs:
1410
1409
  :param pulumi.Input[str] hue_server_url: The URL of the Hue server.
1411
1410
  :param pulumi.Input[str] jupyter_hub_url: The URL of the Jupyterhub.
1412
1411
  :param pulumi.Input[str] odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) installed on the cluster.
1413
- :param pulumi.Input[str] os_version: BDS-assigned Operating System version for the node.
1412
+ :param pulumi.Input[str] os_version: Oracle Linux version installed in the cluster.
1414
1413
  :param pulumi.Input[str] time_created: The time the BDS instance was created. An RFC3339 formatted datetime string
1415
1414
  :param pulumi.Input[str] time_refreshed: The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.
1416
1415
  """
@@ -1593,7 +1592,7 @@ class BdsInstanceClusterDetailArgs:
1593
1592
  @pulumi.getter(name="osVersion")
1594
1593
  def os_version(self) -> Optional[pulumi.Input[str]]:
1595
1594
  """
1596
- BDS-assigned Operating System version for the node.
1595
+ Oracle Linux version installed in the cluster.
1597
1596
  """
1598
1597
  return pulumi.get(self, "os_version")
1599
1598
 
@@ -2220,13 +2219,10 @@ class BdsInstanceNodeArgs:
2220
2219
  image_id: Optional[pulumi.Input[str]] = None,
2221
2220
  instance_id: Optional[pulumi.Input[str]] = None,
2222
2221
  ip_address: Optional[pulumi.Input[str]] = None,
2223
- is_reboot_required: Optional[pulumi.Input[bool]] = None,
2224
- local_disks_total_size_in_gbs: Optional[pulumi.Input[float]] = None,
2225
2222
  memory_in_gbs: Optional[pulumi.Input[int]] = None,
2226
2223
  node_type: Optional[pulumi.Input[str]] = None,
2227
2224
  nvmes: Optional[pulumi.Input[int]] = None,
2228
2225
  ocpus: Optional[pulumi.Input[int]] = None,
2229
- os_version: Optional[pulumi.Input[str]] = None,
2230
2226
  shape: Optional[pulumi.Input[str]] = None,
2231
2227
  ssh_fingerprint: Optional[pulumi.Input[str]] = None,
2232
2228
  state: Optional[pulumi.Input[str]] = None,
@@ -2242,13 +2238,10 @@ class BdsInstanceNodeArgs:
2242
2238
  :param pulumi.Input[str] image_id: The OCID of the image from which the node was created
2243
2239
  :param pulumi.Input[str] instance_id: The OCID of the underlying compute instance
2244
2240
  :param pulumi.Input[str] ip_address: IP address of the node
2245
- :param pulumi.Input[bool] is_reboot_required: Indicates if the node requires a reboot to either reflect the latest os kernel or take actions for maintenance reboot.
2246
- :param pulumi.Input[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.
2247
2241
  :param pulumi.Input[int] memory_in_gbs: The total amount of memory available to the node, in gigabytes.
2248
2242
  :param pulumi.Input[str] node_type: The Big Data Service cluster node type.
2249
2243
  :param pulumi.Input[int] nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
2250
2244
  :param pulumi.Input[int] ocpus: The total number of OCPUs available to the node.
2251
- :param pulumi.Input[str] os_version: BDS-assigned Operating System version for the node.
2252
2245
  :param pulumi.Input[str] shape: (Updatable) Shape of the node.
2253
2246
  :param pulumi.Input[str] ssh_fingerprint: The fingerprint of the SSH key used for node access
2254
2247
  :param pulumi.Input[str] state: (Updatable) The target state for the Bds Instance. Could be set to `ACTIVE` or `INACTIVE` to start/stop the bds instance.
@@ -2272,10 +2265,6 @@ class BdsInstanceNodeArgs:
2272
2265
  pulumi.set(__self__, "instance_id", instance_id)
2273
2266
  if ip_address is not None:
2274
2267
  pulumi.set(__self__, "ip_address", ip_address)
2275
- if is_reboot_required is not None:
2276
- pulumi.set(__self__, "is_reboot_required", is_reboot_required)
2277
- if local_disks_total_size_in_gbs is not None:
2278
- pulumi.set(__self__, "local_disks_total_size_in_gbs", local_disks_total_size_in_gbs)
2279
2268
  if memory_in_gbs is not None:
2280
2269
  pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
2281
2270
  if node_type is not None:
@@ -2284,8 +2273,6 @@ class BdsInstanceNodeArgs:
2284
2273
  pulumi.set(__self__, "nvmes", nvmes)
2285
2274
  if ocpus is not None:
2286
2275
  pulumi.set(__self__, "ocpus", ocpus)
2287
- if os_version is not None:
2288
- pulumi.set(__self__, "os_version", os_version)
2289
2276
  if shape is not None:
2290
2277
  pulumi.set(__self__, "shape", shape)
2291
2278
  if ssh_fingerprint is not None:
@@ -2395,30 +2382,6 @@ class BdsInstanceNodeArgs:
2395
2382
  def ip_address(self, value: Optional[pulumi.Input[str]]):
2396
2383
  pulumi.set(self, "ip_address", value)
2397
2384
 
2398
- @property
2399
- @pulumi.getter(name="isRebootRequired")
2400
- def is_reboot_required(self) -> Optional[pulumi.Input[bool]]:
2401
- """
2402
- Indicates if the node requires a reboot to either reflect the latest os kernel or take actions for maintenance reboot.
2403
- """
2404
- return pulumi.get(self, "is_reboot_required")
2405
-
2406
- @is_reboot_required.setter
2407
- def is_reboot_required(self, value: Optional[pulumi.Input[bool]]):
2408
- pulumi.set(self, "is_reboot_required", value)
2409
-
2410
- @property
2411
- @pulumi.getter(name="localDisksTotalSizeInGbs")
2412
- def local_disks_total_size_in_gbs(self) -> Optional[pulumi.Input[float]]:
2413
- """
2414
- The aggregate size of all local disks, in gigabytes. If the instance does not have any local disks, this field is null.
2415
- """
2416
- return pulumi.get(self, "local_disks_total_size_in_gbs")
2417
-
2418
- @local_disks_total_size_in_gbs.setter
2419
- def local_disks_total_size_in_gbs(self, value: Optional[pulumi.Input[float]]):
2420
- pulumi.set(self, "local_disks_total_size_in_gbs", value)
2421
-
2422
2385
  @property
2423
2386
  @pulumi.getter(name="memoryInGbs")
2424
2387
  def memory_in_gbs(self) -> Optional[pulumi.Input[int]]:
@@ -2467,18 +2430,6 @@ class BdsInstanceNodeArgs:
2467
2430
  def ocpus(self, value: Optional[pulumi.Input[int]]):
2468
2431
  pulumi.set(self, "ocpus", value)
2469
2432
 
2470
- @property
2471
- @pulumi.getter(name="osVersion")
2472
- def os_version(self) -> Optional[pulumi.Input[str]]:
2473
- """
2474
- BDS-assigned Operating System version for the node.
2475
- """
2476
- return pulumi.get(self, "os_version")
2477
-
2478
- @os_version.setter
2479
- def os_version(self, value: Optional[pulumi.Input[str]]):
2480
- pulumi.set(self, "os_version", value)
2481
-
2482
2433
  @property
2483
2434
  @pulumi.getter
2484
2435
  def shape(self) -> Optional[pulumi.Input[str]]:
@@ -2646,58 +2597,6 @@ class BdsInstanceOperationCertificateManagementsManagementHostCertDetailArgs:
2646
2597
  pulumi.set(self, "private_key", value)
2647
2598
 
2648
2599
 
2649
- @pulumi.input_type
2650
- class BdsInstanceOsPatchActionPatchingConfigArgs:
2651
- def __init__(__self__, *,
2652
- patching_config_strategy: pulumi.Input[str],
2653
- batch_size: Optional[pulumi.Input[int]] = None,
2654
- tolerance_threshold_per_batch: Optional[pulumi.Input[int]] = None,
2655
- wait_time_between_batch_in_seconds: Optional[pulumi.Input[int]] = None):
2656
- pulumi.set(__self__, "patching_config_strategy", patching_config_strategy)
2657
- if batch_size is not None:
2658
- pulumi.set(__self__, "batch_size", batch_size)
2659
- if tolerance_threshold_per_batch is not None:
2660
- pulumi.set(__self__, "tolerance_threshold_per_batch", tolerance_threshold_per_batch)
2661
- if wait_time_between_batch_in_seconds is not None:
2662
- pulumi.set(__self__, "wait_time_between_batch_in_seconds", wait_time_between_batch_in_seconds)
2663
-
2664
- @property
2665
- @pulumi.getter(name="patchingConfigStrategy")
2666
- def patching_config_strategy(self) -> pulumi.Input[str]:
2667
- return pulumi.get(self, "patching_config_strategy")
2668
-
2669
- @patching_config_strategy.setter
2670
- def patching_config_strategy(self, value: pulumi.Input[str]):
2671
- pulumi.set(self, "patching_config_strategy", value)
2672
-
2673
- @property
2674
- @pulumi.getter(name="batchSize")
2675
- def batch_size(self) -> Optional[pulumi.Input[int]]:
2676
- return pulumi.get(self, "batch_size")
2677
-
2678
- @batch_size.setter
2679
- def batch_size(self, value: Optional[pulumi.Input[int]]):
2680
- pulumi.set(self, "batch_size", value)
2681
-
2682
- @property
2683
- @pulumi.getter(name="toleranceThresholdPerBatch")
2684
- def tolerance_threshold_per_batch(self) -> Optional[pulumi.Input[int]]:
2685
- return pulumi.get(self, "tolerance_threshold_per_batch")
2686
-
2687
- @tolerance_threshold_per_batch.setter
2688
- def tolerance_threshold_per_batch(self, value: Optional[pulumi.Input[int]]):
2689
- pulumi.set(self, "tolerance_threshold_per_batch", value)
2690
-
2691
- @property
2692
- @pulumi.getter(name="waitTimeBetweenBatchInSeconds")
2693
- def wait_time_between_batch_in_seconds(self) -> Optional[pulumi.Input[int]]:
2694
- return pulumi.get(self, "wait_time_between_batch_in_seconds")
2695
-
2696
- @wait_time_between_batch_in_seconds.setter
2697
- def wait_time_between_batch_in_seconds(self, value: Optional[pulumi.Input[int]]):
2698
- pulumi.set(self, "wait_time_between_batch_in_seconds", value)
2699
-
2700
-
2701
2600
  @pulumi.input_type
2702
2601
  class BdsInstanceUtilNodeArgs:
2703
2602
  def __init__(__self__, *,
@@ -46,7 +46,6 @@ __all__ = [
46
46
  'BdsInstanceNode',
47
47
  'BdsInstanceNodeAttachedBlockVolume',
48
48
  'BdsInstanceOperationCertificateManagementsManagementHostCertDetail',
49
- 'BdsInstanceOsPatchActionPatchingConfig',
50
49
  'BdsInstanceUtilNode',
51
50
  'BdsInstanceUtilNodeShapeConfig',
52
51
  'BdsInstanceWorkerNode',
@@ -1657,7 +1656,7 @@ class BdsInstanceClusterDetail(dict):
1657
1656
  :param str hue_server_url: The URL of the Hue server.
1658
1657
  :param str jupyter_hub_url: The URL of the Jupyterhub.
1659
1658
  :param str odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) installed on the cluster.
1660
- :param str os_version: BDS-assigned Operating System version for the node.
1659
+ :param str os_version: Oracle Linux version installed in the cluster.
1661
1660
  :param str time_created: The time the BDS instance was created. An RFC3339 formatted datetime string
1662
1661
  :param str time_refreshed: The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.
1663
1662
  """
@@ -1792,7 +1791,7 @@ class BdsInstanceClusterDetail(dict):
1792
1791
  @pulumi.getter(name="osVersion")
1793
1792
  def os_version(self) -> Optional[str]:
1794
1793
  """
1795
- BDS-assigned Operating System version for the node.
1794
+ Oracle Linux version installed in the cluster.
1796
1795
  """
1797
1796
  return pulumi.get(self, "os_version")
1798
1797
 
@@ -2458,16 +2457,10 @@ class BdsInstanceNode(dict):
2458
2457
  suggest = "instance_id"
2459
2458
  elif key == "ipAddress":
2460
2459
  suggest = "ip_address"
2461
- elif key == "isRebootRequired":
2462
- suggest = "is_reboot_required"
2463
- elif key == "localDisksTotalSizeInGbs":
2464
- suggest = "local_disks_total_size_in_gbs"
2465
2460
  elif key == "memoryInGbs":
2466
2461
  suggest = "memory_in_gbs"
2467
2462
  elif key == "nodeType":
2468
2463
  suggest = "node_type"
2469
- elif key == "osVersion":
2470
- suggest = "os_version"
2471
2464
  elif key == "sshFingerprint":
2472
2465
  suggest = "ssh_fingerprint"
2473
2466
  elif key == "subnetId":
@@ -2497,13 +2490,10 @@ class BdsInstanceNode(dict):
2497
2490
  image_id: Optional[str] = None,
2498
2491
  instance_id: Optional[str] = None,
2499
2492
  ip_address: Optional[str] = None,
2500
- is_reboot_required: Optional[bool] = None,
2501
- local_disks_total_size_in_gbs: Optional[float] = None,
2502
2493
  memory_in_gbs: Optional[int] = None,
2503
2494
  node_type: Optional[str] = None,
2504
2495
  nvmes: Optional[int] = None,
2505
2496
  ocpus: Optional[int] = None,
2506
- os_version: Optional[str] = None,
2507
2497
  shape: Optional[str] = None,
2508
2498
  ssh_fingerprint: Optional[str] = None,
2509
2499
  state: Optional[str] = None,
@@ -2519,13 +2509,10 @@ class BdsInstanceNode(dict):
2519
2509
  :param str image_id: The OCID of the image from which the node was created
2520
2510
  :param str instance_id: The OCID of the underlying compute instance
2521
2511
  :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.
2524
2512
  :param int memory_in_gbs: The total amount of memory available to the node, in gigabytes.
2525
2513
  :param str node_type: The Big Data Service cluster node type.
2526
2514
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
2527
2515
  :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.
2529
2516
  :param str shape: (Updatable) Shape of the node.
2530
2517
  :param str ssh_fingerprint: The fingerprint of the SSH key used for node access
2531
2518
  :param str state: (Updatable) The target state for the Bds Instance. Could be set to `ACTIVE` or `INACTIVE` to start/stop the bds instance.
@@ -2549,10 +2536,6 @@ class BdsInstanceNode(dict):
2549
2536
  pulumi.set(__self__, "instance_id", instance_id)
2550
2537
  if ip_address is not None:
2551
2538
  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)
2556
2539
  if memory_in_gbs is not None:
2557
2540
  pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
2558
2541
  if node_type is not None:
@@ -2561,8 +2544,6 @@ class BdsInstanceNode(dict):
2561
2544
  pulumi.set(__self__, "nvmes", nvmes)
2562
2545
  if ocpus is not None:
2563
2546
  pulumi.set(__self__, "ocpus", ocpus)
2564
- if os_version is not None:
2565
- pulumi.set(__self__, "os_version", os_version)
2566
2547
  if shape is not None:
2567
2548
  pulumi.set(__self__, "shape", shape)
2568
2549
  if ssh_fingerprint is not None:
@@ -2640,22 +2621,6 @@ class BdsInstanceNode(dict):
2640
2621
  """
2641
2622
  return pulumi.get(self, "ip_address")
2642
2623
 
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
-
2659
2624
  @property
2660
2625
  @pulumi.getter(name="memoryInGbs")
2661
2626
  def memory_in_gbs(self) -> Optional[int]:
@@ -2688,14 +2653,6 @@ class BdsInstanceNode(dict):
2688
2653
  """
2689
2654
  return pulumi.get(self, "ocpus")
2690
2655
 
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
-
2699
2656
  @property
2700
2657
  @pulumi.getter
2701
2658
  def shape(self) -> Optional[str]:
@@ -2857,65 +2814,6 @@ class BdsInstanceOperationCertificateManagementsManagementHostCertDetail(dict):
2857
2814
  return pulumi.get(self, "private_key")
2858
2815
 
2859
2816
 
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
-
2919
2817
  @pulumi.output_type
2920
2818
  class BdsInstanceUtilNode(dict):
2921
2819
  @staticmethod
@@ -4995,7 +4893,7 @@ class GetBdsInstanceClusterDetailResult(dict):
4995
4893
  :param str hue_server_url: The URL of the Hue server.
4996
4894
  :param str jupyter_hub_url: The URL of the Jupyterhub.
4997
4895
  :param str odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) installed on the cluster.
4998
- :param str os_version: BDS-assigned Operating System version for the node.
4896
+ :param str os_version: Oracle Linux version installed in the cluster.
4999
4897
  :param str time_created: The time the cluster was created, shown as an RFC 3339 formatted datetime string.
5000
4898
  :param str time_refreshed: The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.
5001
4899
  """
@@ -5115,7 +5013,7 @@ class GetBdsInstanceClusterDetailResult(dict):
5115
5013
  @pulumi.getter(name="osVersion")
5116
5014
  def os_version(self) -> str:
5117
5015
  """
5118
- BDS-assigned Operating System version for the node.
5016
+ Oracle Linux version installed in the cluster.
5119
5017
  """
5120
5018
  return pulumi.get(self, "os_version")
5121
5019
 
@@ -5863,13 +5761,10 @@ class GetBdsInstanceNodeResult(dict):
5863
5761
  image_id: str,
5864
5762
  instance_id: str,
5865
5763
  ip_address: str,
5866
- is_reboot_required: bool,
5867
- local_disks_total_size_in_gbs: float,
5868
5764
  memory_in_gbs: int,
5869
5765
  node_type: str,
5870
5766
  nvmes: int,
5871
5767
  ocpus: int,
5872
- os_version: str,
5873
5768
  shape: str,
5874
5769
  ssh_fingerprint: str,
5875
5770
  state: str,
@@ -5885,13 +5780,10 @@ class GetBdsInstanceNodeResult(dict):
5885
5780
  :param str image_id: The OCID of the image from which the node was created.
5886
5781
  :param str instance_id: The OCID of the underlying Oracle Cloud Infrastructure Compute instance.
5887
5782
  :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.
5890
5783
  :param int memory_in_gbs: The total amount of memory available to the node, in gigabytes.
5891
5784
  :param str node_type: Cluster node type.
5892
5785
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
5893
5786
  :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.
5895
5787
  :param str shape: Shape of the node.
5896
5788
  :param str ssh_fingerprint: The fingerprint of the SSH key used for node access.
5897
5789
  :param str state: The state of the cluster.
@@ -5907,13 +5799,10 @@ class GetBdsInstanceNodeResult(dict):
5907
5799
  pulumi.set(__self__, "image_id", image_id)
5908
5800
  pulumi.set(__self__, "instance_id", instance_id)
5909
5801
  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)
5912
5802
  pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
5913
5803
  pulumi.set(__self__, "node_type", node_type)
5914
5804
  pulumi.set(__self__, "nvmes", nvmes)
5915
5805
  pulumi.set(__self__, "ocpus", ocpus)
5916
- pulumi.set(__self__, "os_version", os_version)
5917
5806
  pulumi.set(__self__, "shape", shape)
5918
5807
  pulumi.set(__self__, "ssh_fingerprint", ssh_fingerprint)
5919
5808
  pulumi.set(__self__, "state", state)
@@ -5985,22 +5874,6 @@ class GetBdsInstanceNodeResult(dict):
5985
5874
  """
5986
5875
  return pulumi.get(self, "ip_address")
5987
5876
 
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
-
6004
5877
  @property
6005
5878
  @pulumi.getter(name="memoryInGbs")
6006
5879
  def memory_in_gbs(self) -> int:
@@ -6033,14 +5906,6 @@ class GetBdsInstanceNodeResult(dict):
6033
5906
  """
6034
5907
  return pulumi.get(self, "ocpus")
6035
5908
 
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
-
6044
5909
  @property
6045
5910
  @pulumi.getter
6046
5911
  def shape(self) -> str:
@@ -6941,7 +6806,7 @@ class GetBdsInstancesBdsInstanceClusterDetailResult(dict):
6941
6806
  :param str hue_server_url: The URL of the Hue server.
6942
6807
  :param str jupyter_hub_url: The URL of the Jupyterhub.
6943
6808
  :param str odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) installed on the cluster.
6944
- :param str os_version: BDS-assigned Operating System version for the node.
6809
+ :param str os_version: Oracle Linux version installed in the cluster.
6945
6810
  :param str time_created: The time the cluster was created, shown as an RFC 3339 formatted datetime string.
6946
6811
  :param str time_refreshed: The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.
6947
6812
  """
@@ -7061,7 +6926,7 @@ class GetBdsInstancesBdsInstanceClusterDetailResult(dict):
7061
6926
  @pulumi.getter(name="osVersion")
7062
6927
  def os_version(self) -> str:
7063
6928
  """
7064
- BDS-assigned Operating System version for the node.
6929
+ Oracle Linux version installed in the cluster.
7065
6930
  """
7066
6931
  return pulumi.get(self, "os_version")
7067
6932
 
@@ -7510,13 +7375,10 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7510
7375
  image_id: str,
7511
7376
  instance_id: str,
7512
7377
  ip_address: str,
7513
- is_reboot_required: bool,
7514
- local_disks_total_size_in_gbs: float,
7515
7378
  memory_in_gbs: int,
7516
7379
  node_type: str,
7517
7380
  nvmes: int,
7518
7381
  ocpus: int,
7519
- os_version: str,
7520
7382
  shape: str,
7521
7383
  ssh_fingerprint: str,
7522
7384
  state: str,
@@ -7532,13 +7394,10 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7532
7394
  :param str image_id: The OCID of the image from which the node was created.
7533
7395
  :param str instance_id: The OCID of the underlying Oracle Cloud Infrastructure Compute instance.
7534
7396
  :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.
7537
7397
  :param int memory_in_gbs: The total amount of memory available to the node, in gigabytes.
7538
7398
  :param str node_type: Cluster node type.
7539
7399
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
7540
7400
  :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.
7542
7401
  :param str shape: Shape of the node.
7543
7402
  :param str ssh_fingerprint: The fingerprint of the SSH key used for node access.
7544
7403
  :param str state: The state of the cluster.
@@ -7554,13 +7413,10 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7554
7413
  pulumi.set(__self__, "image_id", image_id)
7555
7414
  pulumi.set(__self__, "instance_id", instance_id)
7556
7415
  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)
7559
7416
  pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
7560
7417
  pulumi.set(__self__, "node_type", node_type)
7561
7418
  pulumi.set(__self__, "nvmes", nvmes)
7562
7419
  pulumi.set(__self__, "ocpus", ocpus)
7563
- pulumi.set(__self__, "os_version", os_version)
7564
7420
  pulumi.set(__self__, "shape", shape)
7565
7421
  pulumi.set(__self__, "ssh_fingerprint", ssh_fingerprint)
7566
7422
  pulumi.set(__self__, "state", state)
@@ -7632,22 +7488,6 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7632
7488
  """
7633
7489
  return pulumi.get(self, "ip_address")
7634
7490
 
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
-
7651
7491
  @property
7652
7492
  @pulumi.getter(name="memoryInGbs")
7653
7493
  def memory_in_gbs(self) -> int:
@@ -7680,14 +7520,6 @@ class GetBdsInstancesBdsInstanceNodeResult(dict):
7680
7520
  """
7681
7521
  return pulumi.get(self, "ocpus")
7682
7522
 
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
-
7691
7523
  @property
7692
7524
  @pulumi.getter
7693
7525
  def shape(self) -> str:
@@ -22,7 +22,7 @@ class GetJavaDownloadsJavaDownloadReportResult:
22
22
  """
23
23
  A collection of values returned by getJavaDownloadsJavaDownloadReport.
24
24
  """
25
- def __init__(__self__, checksum_type=None, checksum_value=None, compartment_id=None, created_bies=None, defined_tags=None, display_name=None, file_size_in_bytes=None, format=None, freeform_tags=None, id=None, java_download_report_id=None, sort_by=None, sort_order=None, state=None, system_tags=None, time_created=None, time_end=None, time_start=None):
25
+ def __init__(__self__, checksum_type=None, checksum_value=None, compartment_id=None, created_bies=None, defined_tags=None, display_name=None, file_size_in_bytes=None, format=None, freeform_tags=None, id=None, java_download_report_id=None, state=None, system_tags=None, time_created=None, time_end=None, time_start=None):
26
26
  if checksum_type and not isinstance(checksum_type, str):
27
27
  raise TypeError("Expected argument 'checksum_type' to be a str")
28
28
  pulumi.set(__self__, "checksum_type", checksum_type)
@@ -56,12 +56,6 @@ class GetJavaDownloadsJavaDownloadReportResult:
56
56
  if java_download_report_id and not isinstance(java_download_report_id, str):
57
57
  raise TypeError("Expected argument 'java_download_report_id' to be a str")
58
58
  pulumi.set(__self__, "java_download_report_id", java_download_report_id)
59
- if sort_by and not isinstance(sort_by, str):
60
- raise TypeError("Expected argument 'sort_by' to be a str")
61
- pulumi.set(__self__, "sort_by", sort_by)
62
- if sort_order and not isinstance(sort_order, str):
63
- raise TypeError("Expected argument 'sort_order' to be a str")
64
- pulumi.set(__self__, "sort_order", sort_order)
65
59
  if state and not isinstance(state, str):
66
60
  raise TypeError("Expected argument 'state' to be a str")
67
61
  pulumi.set(__self__, "state", state)
@@ -163,16 +157,6 @@ class GetJavaDownloadsJavaDownloadReportResult:
163
157
  def java_download_report_id(self) -> str:
164
158
  return pulumi.get(self, "java_download_report_id")
165
159
 
166
- @property
167
- @pulumi.getter(name="sortBy")
168
- def sort_by(self) -> str:
169
- return pulumi.get(self, "sort_by")
170
-
171
- @property
172
- @pulumi.getter(name="sortOrder")
173
- def sort_order(self) -> str:
174
- return pulumi.get(self, "sort_order")
175
-
176
160
  @property
177
161
  @pulumi.getter
178
162
  def state(self) -> str:
@@ -193,24 +177,18 @@ class GetJavaDownloadsJavaDownloadReportResult:
193
177
  @pulumi.getter(name="timeCreated")
194
178
  def time_created(self) -> str:
195
179
  """
196
- The time the Java download report was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
180
+ The time the Java download report was created. An RFC3339 formatted datetime string.
197
181
  """
198
182
  return pulumi.get(self, "time_created")
199
183
 
200
184
  @property
201
185
  @pulumi.getter(name="timeEnd")
202
186
  def time_end(self) -> str:
203
- """
204
- The end time until when the download records are included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
205
- """
206
187
  return pulumi.get(self, "time_end")
207
188
 
208
189
  @property
209
190
  @pulumi.getter(name="timeStart")
210
191
  def time_start(self) -> str:
211
- """
212
- The start time from when the download records are included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
213
- """
214
192
  return pulumi.get(self, "time_start")
215
193
 
216
194
 
@@ -231,8 +209,6 @@ class AwaitableGetJavaDownloadsJavaDownloadReportResult(GetJavaDownloadsJavaDown
231
209
  freeform_tags=self.freeform_tags,
232
210
  id=self.id,
233
211
  java_download_report_id=self.java_download_report_id,
234
- sort_by=self.sort_by,
235
- sort_order=self.sort_order,
236
212
  state=self.state,
237
213
  system_tags=self.system_tags,
238
214
  time_created=self.time_created,
@@ -276,8 +252,6 @@ def get_java_downloads_java_download_report(java_download_report_id: Optional[st
276
252
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
277
253
  id=pulumi.get(__ret__, 'id'),
278
254
  java_download_report_id=pulumi.get(__ret__, 'java_download_report_id'),
279
- sort_by=pulumi.get(__ret__, 'sort_by'),
280
- sort_order=pulumi.get(__ret__, 'sort_order'),
281
255
  state=pulumi.get(__ret__, 'state'),
282
256
  system_tags=pulumi.get(__ret__, 'system_tags'),
283
257
  time_created=pulumi.get(__ret__, 'time_created'),