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.
- pulumi_oci/__init__.py +19 -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/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +44 -4
- pulumi_oci/database/autonomous_database.py +61 -14
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
- pulumi_oci/database/get_autonomous_character_sets.py +4 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_database_peers.py +133 -0
- pulumi_oci/database/outputs.py +102 -6
- pulumi_oci/demandsignal/__init__.py +12 -0
- pulumi_oci/demandsignal/_inputs.py +267 -0
- pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
- pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
- pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
- pulumi_oci/demandsignal/outputs.py +700 -0
- pulumi_oci/goldengate/_inputs.py +219 -6
- pulumi_oci/goldengate/connection.py +334 -0
- pulumi_oci/goldengate/connection_assignment.py +68 -19
- pulumi_oci/goldengate/deployment.py +88 -7
- pulumi_oci/goldengate/deployment_backup.py +122 -3
- pulumi_oci/goldengate/deployment_certificate.py +59 -10
- pulumi_oci/goldengate/get_connection.py +80 -1
- pulumi_oci/goldengate/get_connection_assignment.py +11 -1
- pulumi_oci/goldengate/get_deployment.py +25 -2
- pulumi_oci/goldengate/get_deployment_backup.py +38 -1
- pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
- pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
- pulumi_oci/goldengate/get_trail_files.py +2 -2
- pulumi_oci/goldengate/get_trail_sequences.py +2 -2
- pulumi_oci/goldengate/outputs.py +720 -12
- 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.39.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/RECORD +48 -40
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -93,6 +93,8 @@ if typing.TYPE_CHECKING:
|
|
93
93
|
datasafe = __datasafe
|
94
94
|
import pulumi_oci.datascience as __datascience
|
95
95
|
datascience = __datascience
|
96
|
+
import pulumi_oci.demandsignal as __demandsignal
|
97
|
+
demandsignal = __demandsignal
|
96
98
|
import pulumi_oci.devops as __devops
|
97
99
|
devops = __devops
|
98
100
|
import pulumi_oci.disasterrecovery as __disasterrecovery
|
@@ -280,6 +282,7 @@ else:
|
|
280
282
|
datalabellingservice = _utilities.lazy_import('pulumi_oci.datalabellingservice')
|
281
283
|
datasafe = _utilities.lazy_import('pulumi_oci.datasafe')
|
282
284
|
datascience = _utilities.lazy_import('pulumi_oci.datascience')
|
285
|
+
demandsignal = _utilities.lazy_import('pulumi_oci.demandsignal')
|
283
286
|
devops = _utilities.lazy_import('pulumi_oci.devops')
|
284
287
|
disasterrecovery = _utilities.lazy_import('pulumi_oci.disasterrecovery')
|
285
288
|
dns = _utilities.lazy_import('pulumi_oci.dns')
|
@@ -764,6 +767,14 @@ _utilities.register(
|
|
764
767
|
"oci:BigDataService/bdsInstanceOperationCertificateManagementsManagement:BdsInstanceOperationCertificateManagementsManagement": "BdsInstanceOperationCertificateManagementsManagement"
|
765
768
|
}
|
766
769
|
},
|
770
|
+
{
|
771
|
+
"pkg": "oci",
|
772
|
+
"mod": "BigDataService/bdsInstanceOsPatchAction",
|
773
|
+
"fqn": "pulumi_oci.bigdataservice",
|
774
|
+
"classes": {
|
775
|
+
"oci:BigDataService/bdsInstanceOsPatchAction:BdsInstanceOsPatchAction": "BdsInstanceOsPatchAction"
|
776
|
+
}
|
777
|
+
},
|
767
778
|
{
|
768
779
|
"pkg": "oci",
|
769
780
|
"mod": "BigDataService/bdsInstancePatchAction",
|
@@ -3100,6 +3111,14 @@ _utilities.register(
|
|
3100
3111
|
"oci:DatabaseTools/databaseToolsPrivateEndpoint:DatabaseToolsPrivateEndpoint": "DatabaseToolsPrivateEndpoint"
|
3101
3112
|
}
|
3102
3113
|
},
|
3114
|
+
{
|
3115
|
+
"pkg": "oci",
|
3116
|
+
"mod": "DemandSignal/occDemandSignal",
|
3117
|
+
"fqn": "pulumi_oci.demandsignal",
|
3118
|
+
"classes": {
|
3119
|
+
"oci:DemandSignal/occDemandSignal:OccDemandSignal": "OccDemandSignal"
|
3120
|
+
}
|
3121
|
+
},
|
3103
3122
|
{
|
3104
3123
|
"pkg": "oci",
|
3105
3124
|
"mod": "DevOps/buildPipeline",
|
@@ -10,6 +10,7 @@ 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 *
|
13
14
|
from .bds_instance_patch_action import *
|
14
15
|
from .get_auto_scaling_configuration import *
|
15
16
|
from .get_auto_scaling_configurations import *
|
@@ -45,6 +45,7 @@ __all__ = [
|
|
45
45
|
'BdsInstanceNodeArgs',
|
46
46
|
'BdsInstanceNodeAttachedBlockVolumeArgs',
|
47
47
|
'BdsInstanceOperationCertificateManagementsManagementHostCertDetailArgs',
|
48
|
+
'BdsInstanceOsPatchActionPatchingConfigArgs',
|
48
49
|
'BdsInstanceUtilNodeArgs',
|
49
50
|
'BdsInstanceUtilNodeShapeConfigArgs',
|
50
51
|
'BdsInstanceWorkerNodeArgs',
|
@@ -1409,7 +1410,7 @@ class BdsInstanceClusterDetailArgs:
|
|
1409
1410
|
:param pulumi.Input[str] hue_server_url: The URL of the Hue server.
|
1410
1411
|
:param pulumi.Input[str] jupyter_hub_url: The URL of the Jupyterhub.
|
1411
1412
|
:param pulumi.Input[str] odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) installed on the cluster.
|
1412
|
-
:param pulumi.Input[str] os_version:
|
1413
|
+
:param pulumi.Input[str] os_version: BDS-assigned Operating System version for the node.
|
1413
1414
|
:param pulumi.Input[str] time_created: The time the BDS instance was created. An RFC3339 formatted datetime string
|
1414
1415
|
:param pulumi.Input[str] time_refreshed: The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.
|
1415
1416
|
"""
|
@@ -1592,7 +1593,7 @@ class BdsInstanceClusterDetailArgs:
|
|
1592
1593
|
@pulumi.getter(name="osVersion")
|
1593
1594
|
def os_version(self) -> Optional[pulumi.Input[str]]:
|
1594
1595
|
"""
|
1595
|
-
|
1596
|
+
BDS-assigned Operating System version for the node.
|
1596
1597
|
"""
|
1597
1598
|
return pulumi.get(self, "os_version")
|
1598
1599
|
|
@@ -2219,10 +2220,13 @@ class BdsInstanceNodeArgs:
|
|
2219
2220
|
image_id: Optional[pulumi.Input[str]] = None,
|
2220
2221
|
instance_id: Optional[pulumi.Input[str]] = None,
|
2221
2222
|
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,
|
2222
2225
|
memory_in_gbs: Optional[pulumi.Input[int]] = None,
|
2223
2226
|
node_type: Optional[pulumi.Input[str]] = None,
|
2224
2227
|
nvmes: Optional[pulumi.Input[int]] = None,
|
2225
2228
|
ocpus: Optional[pulumi.Input[int]] = None,
|
2229
|
+
os_version: Optional[pulumi.Input[str]] = None,
|
2226
2230
|
shape: Optional[pulumi.Input[str]] = None,
|
2227
2231
|
ssh_fingerprint: Optional[pulumi.Input[str]] = None,
|
2228
2232
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -2238,10 +2242,13 @@ class BdsInstanceNodeArgs:
|
|
2238
2242
|
:param pulumi.Input[str] image_id: The OCID of the image from which the node was created
|
2239
2243
|
:param pulumi.Input[str] instance_id: The OCID of the underlying compute instance
|
2240
2244
|
: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.
|
2241
2247
|
:param pulumi.Input[int] memory_in_gbs: The total amount of memory available to the node, in gigabytes.
|
2242
2248
|
:param pulumi.Input[str] node_type: The Big Data Service cluster node type.
|
2243
2249
|
:param pulumi.Input[int] nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
|
2244
2250
|
: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.
|
2245
2252
|
:param pulumi.Input[str] shape: (Updatable) Shape of the node.
|
2246
2253
|
:param pulumi.Input[str] ssh_fingerprint: The fingerprint of the SSH key used for node access
|
2247
2254
|
: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.
|
@@ -2265,6 +2272,10 @@ class BdsInstanceNodeArgs:
|
|
2265
2272
|
pulumi.set(__self__, "instance_id", instance_id)
|
2266
2273
|
if ip_address is not None:
|
2267
2274
|
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)
|
2268
2279
|
if memory_in_gbs is not None:
|
2269
2280
|
pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
|
2270
2281
|
if node_type is not None:
|
@@ -2273,6 +2284,8 @@ class BdsInstanceNodeArgs:
|
|
2273
2284
|
pulumi.set(__self__, "nvmes", nvmes)
|
2274
2285
|
if ocpus is not None:
|
2275
2286
|
pulumi.set(__self__, "ocpus", ocpus)
|
2287
|
+
if os_version is not None:
|
2288
|
+
pulumi.set(__self__, "os_version", os_version)
|
2276
2289
|
if shape is not None:
|
2277
2290
|
pulumi.set(__self__, "shape", shape)
|
2278
2291
|
if ssh_fingerprint is not None:
|
@@ -2382,6 +2395,30 @@ class BdsInstanceNodeArgs:
|
|
2382
2395
|
def ip_address(self, value: Optional[pulumi.Input[str]]):
|
2383
2396
|
pulumi.set(self, "ip_address", value)
|
2384
2397
|
|
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
|
+
|
2385
2422
|
@property
|
2386
2423
|
@pulumi.getter(name="memoryInGbs")
|
2387
2424
|
def memory_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
@@ -2430,6 +2467,18 @@ class BdsInstanceNodeArgs:
|
|
2430
2467
|
def ocpus(self, value: Optional[pulumi.Input[int]]):
|
2431
2468
|
pulumi.set(self, "ocpus", value)
|
2432
2469
|
|
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
|
+
|
2433
2482
|
@property
|
2434
2483
|
@pulumi.getter
|
2435
2484
|
def shape(self) -> Optional[pulumi.Input[str]]:
|
@@ -2597,6 +2646,58 @@ class BdsInstanceOperationCertificateManagementsManagementHostCertDetailArgs:
|
|
2597
2646
|
pulumi.set(self, "private_key", value)
|
2598
2647
|
|
2599
2648
|
|
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
|
+
|
2600
2701
|
@pulumi.input_type
|
2601
2702
|
class BdsInstanceUtilNodeArgs:
|
2602
2703
|
def __init__(__self__, *,
|
@@ -0,0 +1,239 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = ['BdsInstanceOsPatchActionArgs', 'BdsInstanceOsPatchAction']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class BdsInstanceOsPatchActionArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
bds_instance_id: pulumi.Input[str],
|
20
|
+
cluster_admin_password: pulumi.Input[str],
|
21
|
+
os_patch_version: pulumi.Input[str],
|
22
|
+
patching_configs: Optional[pulumi.Input[Sequence[pulumi.Input['BdsInstanceOsPatchActionPatchingConfigArgs']]]] = None):
|
23
|
+
"""
|
24
|
+
The set of arguments for constructing a BdsInstanceOsPatchAction resource.
|
25
|
+
"""
|
26
|
+
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
27
|
+
pulumi.set(__self__, "cluster_admin_password", cluster_admin_password)
|
28
|
+
pulumi.set(__self__, "os_patch_version", os_patch_version)
|
29
|
+
if patching_configs is not None:
|
30
|
+
pulumi.set(__self__, "patching_configs", patching_configs)
|
31
|
+
|
32
|
+
@property
|
33
|
+
@pulumi.getter(name="bdsInstanceId")
|
34
|
+
def bds_instance_id(self) -> pulumi.Input[str]:
|
35
|
+
return pulumi.get(self, "bds_instance_id")
|
36
|
+
|
37
|
+
@bds_instance_id.setter
|
38
|
+
def bds_instance_id(self, value: pulumi.Input[str]):
|
39
|
+
pulumi.set(self, "bds_instance_id", value)
|
40
|
+
|
41
|
+
@property
|
42
|
+
@pulumi.getter(name="clusterAdminPassword")
|
43
|
+
def cluster_admin_password(self) -> pulumi.Input[str]:
|
44
|
+
return pulumi.get(self, "cluster_admin_password")
|
45
|
+
|
46
|
+
@cluster_admin_password.setter
|
47
|
+
def cluster_admin_password(self, value: pulumi.Input[str]):
|
48
|
+
pulumi.set(self, "cluster_admin_password", value)
|
49
|
+
|
50
|
+
@property
|
51
|
+
@pulumi.getter(name="osPatchVersion")
|
52
|
+
def os_patch_version(self) -> pulumi.Input[str]:
|
53
|
+
return pulumi.get(self, "os_patch_version")
|
54
|
+
|
55
|
+
@os_patch_version.setter
|
56
|
+
def os_patch_version(self, value: pulumi.Input[str]):
|
57
|
+
pulumi.set(self, "os_patch_version", value)
|
58
|
+
|
59
|
+
@property
|
60
|
+
@pulumi.getter(name="patchingConfigs")
|
61
|
+
def patching_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BdsInstanceOsPatchActionPatchingConfigArgs']]]]:
|
62
|
+
return pulumi.get(self, "patching_configs")
|
63
|
+
|
64
|
+
@patching_configs.setter
|
65
|
+
def patching_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BdsInstanceOsPatchActionPatchingConfigArgs']]]]):
|
66
|
+
pulumi.set(self, "patching_configs", value)
|
67
|
+
|
68
|
+
|
69
|
+
@pulumi.input_type
|
70
|
+
class _BdsInstanceOsPatchActionState:
|
71
|
+
def __init__(__self__, *,
|
72
|
+
bds_instance_id: Optional[pulumi.Input[str]] = None,
|
73
|
+
cluster_admin_password: Optional[pulumi.Input[str]] = None,
|
74
|
+
os_patch_version: Optional[pulumi.Input[str]] = None,
|
75
|
+
patching_configs: Optional[pulumi.Input[Sequence[pulumi.Input['BdsInstanceOsPatchActionPatchingConfigArgs']]]] = None):
|
76
|
+
"""
|
77
|
+
Input properties used for looking up and filtering BdsInstanceOsPatchAction resources.
|
78
|
+
"""
|
79
|
+
if bds_instance_id is not None:
|
80
|
+
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
81
|
+
if cluster_admin_password is not None:
|
82
|
+
pulumi.set(__self__, "cluster_admin_password", cluster_admin_password)
|
83
|
+
if os_patch_version is not None:
|
84
|
+
pulumi.set(__self__, "os_patch_version", os_patch_version)
|
85
|
+
if patching_configs is not None:
|
86
|
+
pulumi.set(__self__, "patching_configs", patching_configs)
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="bdsInstanceId")
|
90
|
+
def bds_instance_id(self) -> Optional[pulumi.Input[str]]:
|
91
|
+
return pulumi.get(self, "bds_instance_id")
|
92
|
+
|
93
|
+
@bds_instance_id.setter
|
94
|
+
def bds_instance_id(self, value: Optional[pulumi.Input[str]]):
|
95
|
+
pulumi.set(self, "bds_instance_id", value)
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="clusterAdminPassword")
|
99
|
+
def cluster_admin_password(self) -> Optional[pulumi.Input[str]]:
|
100
|
+
return pulumi.get(self, "cluster_admin_password")
|
101
|
+
|
102
|
+
@cluster_admin_password.setter
|
103
|
+
def cluster_admin_password(self, value: Optional[pulumi.Input[str]]):
|
104
|
+
pulumi.set(self, "cluster_admin_password", value)
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="osPatchVersion")
|
108
|
+
def os_patch_version(self) -> Optional[pulumi.Input[str]]:
|
109
|
+
return pulumi.get(self, "os_patch_version")
|
110
|
+
|
111
|
+
@os_patch_version.setter
|
112
|
+
def os_patch_version(self, value: Optional[pulumi.Input[str]]):
|
113
|
+
pulumi.set(self, "os_patch_version", value)
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="patchingConfigs")
|
117
|
+
def patching_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BdsInstanceOsPatchActionPatchingConfigArgs']]]]:
|
118
|
+
return pulumi.get(self, "patching_configs")
|
119
|
+
|
120
|
+
@patching_configs.setter
|
121
|
+
def patching_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BdsInstanceOsPatchActionPatchingConfigArgs']]]]):
|
122
|
+
pulumi.set(self, "patching_configs", value)
|
123
|
+
|
124
|
+
|
125
|
+
class BdsInstanceOsPatchAction(pulumi.CustomResource):
|
126
|
+
@overload
|
127
|
+
def __init__(__self__,
|
128
|
+
resource_name: str,
|
129
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
130
|
+
bds_instance_id: Optional[pulumi.Input[str]] = None,
|
131
|
+
cluster_admin_password: Optional[pulumi.Input[str]] = None,
|
132
|
+
os_patch_version: Optional[pulumi.Input[str]] = None,
|
133
|
+
patching_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BdsInstanceOsPatchActionPatchingConfigArgs']]]]] = None,
|
134
|
+
__props__=None):
|
135
|
+
"""
|
136
|
+
Create a BdsInstanceOsPatchAction resource with the given unique name, props, and options.
|
137
|
+
:param str resource_name: The name of the resource.
|
138
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
139
|
+
"""
|
140
|
+
...
|
141
|
+
@overload
|
142
|
+
def __init__(__self__,
|
143
|
+
resource_name: str,
|
144
|
+
args: BdsInstanceOsPatchActionArgs,
|
145
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
146
|
+
"""
|
147
|
+
Create a BdsInstanceOsPatchAction resource with the given unique name, props, and options.
|
148
|
+
:param str resource_name: The name of the resource.
|
149
|
+
:param BdsInstanceOsPatchActionArgs args: The arguments to use to populate this resource's properties.
|
150
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
151
|
+
"""
|
152
|
+
...
|
153
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
154
|
+
resource_args, opts = _utilities.get_resource_args_opts(BdsInstanceOsPatchActionArgs, pulumi.ResourceOptions, *args, **kwargs)
|
155
|
+
if resource_args is not None:
|
156
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
157
|
+
else:
|
158
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
159
|
+
|
160
|
+
def _internal_init(__self__,
|
161
|
+
resource_name: str,
|
162
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
163
|
+
bds_instance_id: Optional[pulumi.Input[str]] = None,
|
164
|
+
cluster_admin_password: Optional[pulumi.Input[str]] = None,
|
165
|
+
os_patch_version: Optional[pulumi.Input[str]] = None,
|
166
|
+
patching_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BdsInstanceOsPatchActionPatchingConfigArgs']]]]] = None,
|
167
|
+
__props__=None):
|
168
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
169
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
170
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
171
|
+
if opts.id is None:
|
172
|
+
if __props__ is not None:
|
173
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
174
|
+
__props__ = BdsInstanceOsPatchActionArgs.__new__(BdsInstanceOsPatchActionArgs)
|
175
|
+
|
176
|
+
if bds_instance_id is None and not opts.urn:
|
177
|
+
raise TypeError("Missing required property 'bds_instance_id'")
|
178
|
+
__props__.__dict__["bds_instance_id"] = bds_instance_id
|
179
|
+
if cluster_admin_password is None and not opts.urn:
|
180
|
+
raise TypeError("Missing required property 'cluster_admin_password'")
|
181
|
+
__props__.__dict__["cluster_admin_password"] = None if cluster_admin_password is None else pulumi.Output.secret(cluster_admin_password)
|
182
|
+
if os_patch_version is None and not opts.urn:
|
183
|
+
raise TypeError("Missing required property 'os_patch_version'")
|
184
|
+
__props__.__dict__["os_patch_version"] = os_patch_version
|
185
|
+
__props__.__dict__["patching_configs"] = patching_configs
|
186
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["clusterAdminPassword"])
|
187
|
+
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
188
|
+
super(BdsInstanceOsPatchAction, __self__).__init__(
|
189
|
+
'oci:BigDataService/bdsInstanceOsPatchAction:BdsInstanceOsPatchAction',
|
190
|
+
resource_name,
|
191
|
+
__props__,
|
192
|
+
opts)
|
193
|
+
|
194
|
+
@staticmethod
|
195
|
+
def get(resource_name: str,
|
196
|
+
id: pulumi.Input[str],
|
197
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
198
|
+
bds_instance_id: Optional[pulumi.Input[str]] = None,
|
199
|
+
cluster_admin_password: Optional[pulumi.Input[str]] = None,
|
200
|
+
os_patch_version: Optional[pulumi.Input[str]] = None,
|
201
|
+
patching_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BdsInstanceOsPatchActionPatchingConfigArgs']]]]] = None) -> 'BdsInstanceOsPatchAction':
|
202
|
+
"""
|
203
|
+
Get an existing BdsInstanceOsPatchAction resource's state with the given name, id, and optional extra
|
204
|
+
properties used to qualify the lookup.
|
205
|
+
|
206
|
+
:param str resource_name: The unique name of the resulting resource.
|
207
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
208
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
209
|
+
"""
|
210
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
211
|
+
|
212
|
+
__props__ = _BdsInstanceOsPatchActionState.__new__(_BdsInstanceOsPatchActionState)
|
213
|
+
|
214
|
+
__props__.__dict__["bds_instance_id"] = bds_instance_id
|
215
|
+
__props__.__dict__["cluster_admin_password"] = cluster_admin_password
|
216
|
+
__props__.__dict__["os_patch_version"] = os_patch_version
|
217
|
+
__props__.__dict__["patching_configs"] = patching_configs
|
218
|
+
return BdsInstanceOsPatchAction(resource_name, opts=opts, __props__=__props__)
|
219
|
+
|
220
|
+
@property
|
221
|
+
@pulumi.getter(name="bdsInstanceId")
|
222
|
+
def bds_instance_id(self) -> pulumi.Output[str]:
|
223
|
+
return pulumi.get(self, "bds_instance_id")
|
224
|
+
|
225
|
+
@property
|
226
|
+
@pulumi.getter(name="clusterAdminPassword")
|
227
|
+
def cluster_admin_password(self) -> pulumi.Output[str]:
|
228
|
+
return pulumi.get(self, "cluster_admin_password")
|
229
|
+
|
230
|
+
@property
|
231
|
+
@pulumi.getter(name="osPatchVersion")
|
232
|
+
def os_patch_version(self) -> pulumi.Output[str]:
|
233
|
+
return pulumi.get(self, "os_patch_version")
|
234
|
+
|
235
|
+
@property
|
236
|
+
@pulumi.getter(name="patchingConfigs")
|
237
|
+
def patching_configs(self) -> pulumi.Output[Sequence['outputs.BdsInstanceOsPatchActionPatchingConfig']]:
|
238
|
+
return pulumi.get(self, "patching_configs")
|
239
|
+
|