pulumi-oci 1.38.0a1717136770__py3-none-any.whl → 1.38.0a1717181239__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 +8 -0
- pulumi_oci/bigdataservice/__init__.py +1 -0
- pulumi_oci/bigdataservice/_inputs.py +103 -2
- pulumi_oci/bigdataservice/bds_instance_os_patch_action.py +239 -0
- pulumi_oci/bigdataservice/outputs.py +174 -6
- pulumi_oci/jms/get_java_downloads_java_download_report.py +28 -2
- pulumi_oci/jms/get_java_downloads_java_download_token.py +4 -4
- pulumi_oci/jms/get_java_downloads_java_license_acceptance_record.py +2 -2
- pulumi_oci/jms/java_downloads_java_download_report.py +96 -6
- pulumi_oci/jms/java_downloads_java_download_token.py +14 -12
- pulumi_oci/jms/java_downloads_java_license_acceptance_record.py +41 -16
- pulumi_oci/jms/outputs.py +38 -16
- pulumi_oci/loadbalancer/_inputs.py +4 -0
- pulumi_oci/loadbalancer/outputs.py +4 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.38.0a1717181239.dist-info}/METADATA +1 -1
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.38.0a1717181239.dist-info}/RECORD +19 -18
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.38.0a1717181239.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.38.0a1717181239.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:
|
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
|
-
|
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:
|
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
|
-
|
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:
|
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
|
-
|
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:
|
@@ -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, 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, sort_by=None, sort_order=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,6 +56,12 @@ 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)
|
59
65
|
if state and not isinstance(state, str):
|
60
66
|
raise TypeError("Expected argument 'state' to be a str")
|
61
67
|
pulumi.set(__self__, "state", state)
|
@@ -157,6 +163,16 @@ class GetJavaDownloadsJavaDownloadReportResult:
|
|
157
163
|
def java_download_report_id(self) -> str:
|
158
164
|
return pulumi.get(self, "java_download_report_id")
|
159
165
|
|
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
|
+
|
160
176
|
@property
|
161
177
|
@pulumi.getter
|
162
178
|
def state(self) -> str:
|
@@ -177,18 +193,24 @@ class GetJavaDownloadsJavaDownloadReportResult:
|
|
177
193
|
@pulumi.getter(name="timeCreated")
|
178
194
|
def time_created(self) -> str:
|
179
195
|
"""
|
180
|
-
The time the Java download report was created
|
196
|
+
The time the Java download report was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
181
197
|
"""
|
182
198
|
return pulumi.get(self, "time_created")
|
183
199
|
|
184
200
|
@property
|
185
201
|
@pulumi.getter(name="timeEnd")
|
186
202
|
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
|
+
"""
|
187
206
|
return pulumi.get(self, "time_end")
|
188
207
|
|
189
208
|
@property
|
190
209
|
@pulumi.getter(name="timeStart")
|
191
210
|
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
|
+
"""
|
192
214
|
return pulumi.get(self, "time_start")
|
193
215
|
|
194
216
|
|
@@ -209,6 +231,8 @@ class AwaitableGetJavaDownloadsJavaDownloadReportResult(GetJavaDownloadsJavaDown
|
|
209
231
|
freeform_tags=self.freeform_tags,
|
210
232
|
id=self.id,
|
211
233
|
java_download_report_id=self.java_download_report_id,
|
234
|
+
sort_by=self.sort_by,
|
235
|
+
sort_order=self.sort_order,
|
212
236
|
state=self.state,
|
213
237
|
system_tags=self.system_tags,
|
214
238
|
time_created=self.time_created,
|
@@ -252,6 +276,8 @@ def get_java_downloads_java_download_report(java_download_report_id: Optional[st
|
|
252
276
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
253
277
|
id=pulumi.get(__ret__, 'id'),
|
254
278
|
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'),
|
255
281
|
state=pulumi.get(__ret__, 'state'),
|
256
282
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
257
283
|
time_created=pulumi.get(__ret__, 'time_created'),
|
@@ -205,7 +205,7 @@ class GetJavaDownloadsJavaDownloadTokenResult:
|
|
205
205
|
@pulumi.getter(name="timeCreated")
|
206
206
|
def time_created(self) -> str:
|
207
207
|
"""
|
208
|
-
The time the JavaDownloadToken was created
|
208
|
+
The time the JavaDownloadToken was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
209
209
|
"""
|
210
210
|
return pulumi.get(self, "time_created")
|
211
211
|
|
@@ -213,7 +213,7 @@ class GetJavaDownloadsJavaDownloadTokenResult:
|
|
213
213
|
@pulumi.getter(name="timeExpires")
|
214
214
|
def time_expires(self) -> str:
|
215
215
|
"""
|
216
|
-
The expiry time of the JavaDownloadToken
|
216
|
+
The expiry time of the JavaDownloadToken, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
217
217
|
"""
|
218
218
|
return pulumi.get(self, "time_expires")
|
219
219
|
|
@@ -221,7 +221,7 @@ class GetJavaDownloadsJavaDownloadTokenResult:
|
|
221
221
|
@pulumi.getter(name="timeLastUsed")
|
222
222
|
def time_last_used(self) -> str:
|
223
223
|
"""
|
224
|
-
The time the JavaDownloadToken was last used for download
|
224
|
+
The time the JavaDownloadToken was last used for download, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
225
225
|
"""
|
226
226
|
return pulumi.get(self, "time_last_used")
|
227
227
|
|
@@ -229,7 +229,7 @@ class GetJavaDownloadsJavaDownloadTokenResult:
|
|
229
229
|
@pulumi.getter(name="timeUpdated")
|
230
230
|
def time_updated(self) -> str:
|
231
231
|
"""
|
232
|
-
The time the JavaDownloadToken was updated
|
232
|
+
The time the JavaDownloadToken was updated, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
233
233
|
"""
|
234
234
|
return pulumi.get(self, "time_updated")
|
235
235
|
|
@@ -152,7 +152,7 @@ class GetJavaDownloadsJavaLicenseAcceptanceRecordResult:
|
|
152
152
|
@pulumi.getter(name="timeAccepted")
|
153
153
|
def time_accepted(self) -> str:
|
154
154
|
"""
|
155
|
-
The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
155
|
+
The date and time of license acceptance (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
156
156
|
"""
|
157
157
|
return pulumi.get(self, "time_accepted")
|
158
158
|
|
@@ -160,7 +160,7 @@ class GetJavaDownloadsJavaLicenseAcceptanceRecordResult:
|
|
160
160
|
@pulumi.getter(name="timeLastUpdated")
|
161
161
|
def time_last_updated(self) -> str:
|
162
162
|
"""
|
163
|
-
The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
163
|
+
The date and time of last update (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
164
164
|
"""
|
165
165
|
return pulumi.get(self, "time_last_updated")
|
166
166
|
|