pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.8.0a1724316519__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/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- pulumi_oci/database/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +33 -0
- pulumi_oci/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- pulumi_oci/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- pulumi_oci/mysql/_inputs.py +202 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +55 -0
- pulumi_oci/mysql/outputs.py +503 -10
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/RECORD +33 -32
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/top_level.txt +0 -0
@@ -22,7 +22,10 @@ class GetAnalyticsInstanceResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getAnalyticsInstance.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, analytics_instance_id=None, capacities=None, compartment_id=None, defined_tags=None, description=None, email_notification=None, feature_set=None, freeform_tags=None, id=None, idcs_access_token=None, kms_key_id=None, license_type=None, name=None, network_endpoint_details=None, service_url=None, state=None, time_created=None, time_updated=None):
|
25
|
+
def __init__(__self__, admin_user=None, analytics_instance_id=None, capacities=None, compartment_id=None, defined_tags=None, description=None, domain_id=None, email_notification=None, feature_bundle=None, feature_set=None, freeform_tags=None, id=None, idcs_access_token=None, kms_key_id=None, license_type=None, name=None, network_endpoint_details=None, service_url=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
26
|
+
if admin_user and not isinstance(admin_user, str):
|
27
|
+
raise TypeError("Expected argument 'admin_user' to be a str")
|
28
|
+
pulumi.set(__self__, "admin_user", admin_user)
|
26
29
|
if analytics_instance_id and not isinstance(analytics_instance_id, str):
|
27
30
|
raise TypeError("Expected argument 'analytics_instance_id' to be a str")
|
28
31
|
pulumi.set(__self__, "analytics_instance_id", analytics_instance_id)
|
@@ -38,9 +41,15 @@ class GetAnalyticsInstanceResult:
|
|
38
41
|
if description and not isinstance(description, str):
|
39
42
|
raise TypeError("Expected argument 'description' to be a str")
|
40
43
|
pulumi.set(__self__, "description", description)
|
44
|
+
if domain_id and not isinstance(domain_id, str):
|
45
|
+
raise TypeError("Expected argument 'domain_id' to be a str")
|
46
|
+
pulumi.set(__self__, "domain_id", domain_id)
|
41
47
|
if email_notification and not isinstance(email_notification, str):
|
42
48
|
raise TypeError("Expected argument 'email_notification' to be a str")
|
43
49
|
pulumi.set(__self__, "email_notification", email_notification)
|
50
|
+
if feature_bundle and not isinstance(feature_bundle, str):
|
51
|
+
raise TypeError("Expected argument 'feature_bundle' to be a str")
|
52
|
+
pulumi.set(__self__, "feature_bundle", feature_bundle)
|
44
53
|
if feature_set and not isinstance(feature_set, str):
|
45
54
|
raise TypeError("Expected argument 'feature_set' to be a str")
|
46
55
|
pulumi.set(__self__, "feature_set", feature_set)
|
@@ -71,6 +80,9 @@ class GetAnalyticsInstanceResult:
|
|
71
80
|
if state and not isinstance(state, str):
|
72
81
|
raise TypeError("Expected argument 'state' to be a str")
|
73
82
|
pulumi.set(__self__, "state", state)
|
83
|
+
if system_tags and not isinstance(system_tags, dict):
|
84
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
85
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
74
86
|
if time_created and not isinstance(time_created, str):
|
75
87
|
raise TypeError("Expected argument 'time_created' to be a str")
|
76
88
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -78,6 +90,11 @@ class GetAnalyticsInstanceResult:
|
|
78
90
|
raise TypeError("Expected argument 'time_updated' to be a str")
|
79
91
|
pulumi.set(__self__, "time_updated", time_updated)
|
80
92
|
|
93
|
+
@property
|
94
|
+
@pulumi.getter(name="adminUser")
|
95
|
+
def admin_user(self) -> str:
|
96
|
+
return pulumi.get(self, "admin_user")
|
97
|
+
|
81
98
|
@property
|
82
99
|
@pulumi.getter(name="analyticsInstanceId")
|
83
100
|
def analytics_instance_id(self) -> str:
|
@@ -115,6 +132,14 @@ class GetAnalyticsInstanceResult:
|
|
115
132
|
"""
|
116
133
|
return pulumi.get(self, "description")
|
117
134
|
|
135
|
+
@property
|
136
|
+
@pulumi.getter(name="domainId")
|
137
|
+
def domain_id(self) -> str:
|
138
|
+
"""
|
139
|
+
Identity domain OCID.
|
140
|
+
"""
|
141
|
+
return pulumi.get(self, "domain_id")
|
142
|
+
|
118
143
|
@property
|
119
144
|
@pulumi.getter(name="emailNotification")
|
120
145
|
def email_notification(self) -> str:
|
@@ -123,6 +148,14 @@ class GetAnalyticsInstanceResult:
|
|
123
148
|
"""
|
124
149
|
return pulumi.get(self, "email_notification")
|
125
150
|
|
151
|
+
@property
|
152
|
+
@pulumi.getter(name="featureBundle")
|
153
|
+
def feature_bundle(self) -> str:
|
154
|
+
"""
|
155
|
+
The feature set of an Analytics instance.
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "feature_bundle")
|
158
|
+
|
126
159
|
@property
|
127
160
|
@pulumi.getter(name="featureSet")
|
128
161
|
def feature_set(self) -> str:
|
@@ -156,7 +189,7 @@ class GetAnalyticsInstanceResult:
|
|
156
189
|
@pulumi.getter(name="kmsKeyId")
|
157
190
|
def kms_key_id(self) -> str:
|
158
191
|
"""
|
159
|
-
|
192
|
+
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
|
160
193
|
"""
|
161
194
|
return pulumi.get(self, "kms_key_id")
|
162
195
|
|
@@ -200,6 +233,14 @@ class GetAnalyticsInstanceResult:
|
|
200
233
|
"""
|
201
234
|
return pulumi.get(self, "state")
|
202
235
|
|
236
|
+
@property
|
237
|
+
@pulumi.getter(name="systemTags")
|
238
|
+
def system_tags(self) -> Mapping[str, str]:
|
239
|
+
"""
|
240
|
+
System tags for this resource. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.key": "value"}`
|
241
|
+
"""
|
242
|
+
return pulumi.get(self, "system_tags")
|
243
|
+
|
203
244
|
@property
|
204
245
|
@pulumi.getter(name="timeCreated")
|
205
246
|
def time_created(self) -> str:
|
@@ -223,12 +264,15 @@ class AwaitableGetAnalyticsInstanceResult(GetAnalyticsInstanceResult):
|
|
223
264
|
if False:
|
224
265
|
yield self
|
225
266
|
return GetAnalyticsInstanceResult(
|
267
|
+
admin_user=self.admin_user,
|
226
268
|
analytics_instance_id=self.analytics_instance_id,
|
227
269
|
capacities=self.capacities,
|
228
270
|
compartment_id=self.compartment_id,
|
229
271
|
defined_tags=self.defined_tags,
|
230
272
|
description=self.description,
|
273
|
+
domain_id=self.domain_id,
|
231
274
|
email_notification=self.email_notification,
|
275
|
+
feature_bundle=self.feature_bundle,
|
232
276
|
feature_set=self.feature_set,
|
233
277
|
freeform_tags=self.freeform_tags,
|
234
278
|
id=self.id,
|
@@ -239,6 +283,7 @@ class AwaitableGetAnalyticsInstanceResult(GetAnalyticsInstanceResult):
|
|
239
283
|
network_endpoint_details=self.network_endpoint_details,
|
240
284
|
service_url=self.service_url,
|
241
285
|
state=self.state,
|
286
|
+
system_tags=self.system_tags,
|
242
287
|
time_created=self.time_created,
|
243
288
|
time_updated=self.time_updated)
|
244
289
|
|
@@ -268,12 +313,15 @@ def get_analytics_instance(analytics_instance_id: Optional[str] = None,
|
|
268
313
|
__ret__ = pulumi.runtime.invoke('oci:Analytics/getAnalyticsInstance:getAnalyticsInstance', __args__, opts=opts, typ=GetAnalyticsInstanceResult).value
|
269
314
|
|
270
315
|
return AwaitableGetAnalyticsInstanceResult(
|
316
|
+
admin_user=pulumi.get(__ret__, 'admin_user'),
|
271
317
|
analytics_instance_id=pulumi.get(__ret__, 'analytics_instance_id'),
|
272
318
|
capacities=pulumi.get(__ret__, 'capacities'),
|
273
319
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
274
320
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
275
321
|
description=pulumi.get(__ret__, 'description'),
|
322
|
+
domain_id=pulumi.get(__ret__, 'domain_id'),
|
276
323
|
email_notification=pulumi.get(__ret__, 'email_notification'),
|
324
|
+
feature_bundle=pulumi.get(__ret__, 'feature_bundle'),
|
277
325
|
feature_set=pulumi.get(__ret__, 'feature_set'),
|
278
326
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
279
327
|
id=pulumi.get(__ret__, 'id'),
|
@@ -284,6 +332,7 @@ def get_analytics_instance(analytics_instance_id: Optional[str] = None,
|
|
284
332
|
network_endpoint_details=pulumi.get(__ret__, 'network_endpoint_details'),
|
285
333
|
service_url=pulumi.get(__ret__, 'service_url'),
|
286
334
|
state=pulumi.get(__ret__, 'state'),
|
335
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
287
336
|
time_created=pulumi.get(__ret__, 'time_created'),
|
288
337
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
289
338
|
|
@@ -61,7 +61,7 @@ class GetAnalyticsInstancesResult:
|
|
61
61
|
@pulumi.getter(name="capacityType")
|
62
62
|
def capacity_type(self) -> Optional[str]:
|
63
63
|
"""
|
64
|
-
The capacity model to use.
|
64
|
+
The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
|
65
65
|
"""
|
66
66
|
return pulumi.get(self, "capacity_type")
|
67
67
|
|
pulumi_oci/analytics/outputs.py
CHANGED
@@ -53,8 +53,8 @@ class AnalyticsInstanceCapacity(dict):
|
|
53
53
|
capacity_type: str,
|
54
54
|
capacity_value: int):
|
55
55
|
"""
|
56
|
-
:param str capacity_type: The capacity model to use.
|
57
|
-
:param int capacity_value: (Updatable) The capacity value selected (
|
56
|
+
:param str capacity_type: The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
|
57
|
+
:param int capacity_value: (Updatable) The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
|
58
58
|
"""
|
59
59
|
pulumi.set(__self__, "capacity_type", capacity_type)
|
60
60
|
pulumi.set(__self__, "capacity_value", capacity_value)
|
@@ -63,7 +63,7 @@ class AnalyticsInstanceCapacity(dict):
|
|
63
63
|
@pulumi.getter(name="capacityType")
|
64
64
|
def capacity_type(self) -> str:
|
65
65
|
"""
|
66
|
-
The capacity model to use.
|
66
|
+
The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
|
67
67
|
"""
|
68
68
|
return pulumi.get(self, "capacity_type")
|
69
69
|
|
@@ -71,7 +71,7 @@ class AnalyticsInstanceCapacity(dict):
|
|
71
71
|
@pulumi.getter(name="capacityValue")
|
72
72
|
def capacity_value(self) -> int:
|
73
73
|
"""
|
74
|
-
(Updatable) The capacity value selected (
|
74
|
+
(Updatable) The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
|
75
75
|
"""
|
76
76
|
return pulumi.get(self, "capacity_value")
|
77
77
|
|
@@ -356,8 +356,8 @@ class GetAnalyticsInstanceCapacityResult(dict):
|
|
356
356
|
capacity_type: str,
|
357
357
|
capacity_value: int):
|
358
358
|
"""
|
359
|
-
:param str capacity_type: The capacity model to use.
|
360
|
-
:param int capacity_value: The capacity value selected (
|
359
|
+
:param str capacity_type: The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
|
360
|
+
:param int capacity_value: The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
|
361
361
|
"""
|
362
362
|
pulumi.set(__self__, "capacity_type", capacity_type)
|
363
363
|
pulumi.set(__self__, "capacity_value", capacity_value)
|
@@ -366,7 +366,7 @@ class GetAnalyticsInstanceCapacityResult(dict):
|
|
366
366
|
@pulumi.getter(name="capacityType")
|
367
367
|
def capacity_type(self) -> str:
|
368
368
|
"""
|
369
|
-
The capacity model to use.
|
369
|
+
The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
|
370
370
|
"""
|
371
371
|
return pulumi.get(self, "capacity_type")
|
372
372
|
|
@@ -374,7 +374,7 @@ class GetAnalyticsInstanceCapacityResult(dict):
|
|
374
374
|
@pulumi.getter(name="capacityValue")
|
375
375
|
def capacity_value(self) -> int:
|
376
376
|
"""
|
377
|
-
The capacity value selected (
|
377
|
+
The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
|
378
378
|
"""
|
379
379
|
return pulumi.get(self, "capacity_value")
|
380
380
|
|
@@ -564,11 +564,14 @@ class GetAnalyticsInstancePrivateAccessChannelPrivateSourceScanHostResult(dict):
|
|
564
564
|
@pulumi.output_type
|
565
565
|
class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
|
566
566
|
def __init__(__self__, *,
|
567
|
+
admin_user: str,
|
567
568
|
capacities: Sequence['outputs.GetAnalyticsInstancesAnalyticsInstanceCapacityResult'],
|
568
569
|
compartment_id: str,
|
569
570
|
defined_tags: Mapping[str, str],
|
570
571
|
description: str,
|
572
|
+
domain_id: str,
|
571
573
|
email_notification: str,
|
574
|
+
feature_bundle: str,
|
572
575
|
feature_set: str,
|
573
576
|
freeform_tags: Mapping[str, str],
|
574
577
|
id: str,
|
@@ -579,6 +582,7 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
|
|
579
582
|
network_endpoint_details: Sequence['outputs.GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetailResult'],
|
580
583
|
service_url: str,
|
581
584
|
state: str,
|
585
|
+
system_tags: Mapping[str, str],
|
582
586
|
time_created: str,
|
583
587
|
time_updated: str):
|
584
588
|
"""
|
@@ -586,24 +590,30 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
|
|
586
590
|
:param str compartment_id: The OCID of the compartment.
|
587
591
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
588
592
|
:param str description: Description of the vanity url.
|
593
|
+
:param str domain_id: Identity domain OCID.
|
589
594
|
:param str email_notification: Email address receiving notifications.
|
595
|
+
:param str feature_bundle: The feature set of an Analytics instance.
|
590
596
|
:param str feature_set: A filter to only return resources matching the feature set. Values are case-insensitive.
|
591
597
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
592
598
|
:param str id: The Virtual Cloud Network OCID.
|
593
|
-
:param str kms_key_id:
|
599
|
+
:param str kms_key_id: OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
|
594
600
|
:param str license_type: The license used for the service.
|
595
601
|
:param str name: A filter to return only resources that match the given name exactly.
|
596
602
|
:param Sequence['GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetailArgs'] network_endpoint_details: Base representation of a network endpoint.
|
597
603
|
:param str service_url: URL of the Analytics service.
|
598
604
|
:param str state: A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
|
605
|
+
:param Mapping[str, str] system_tags: System tags for this resource. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.key": "value"}`
|
599
606
|
:param str time_created: The date and time the instance was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
|
600
607
|
:param str time_updated: The date and time the instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events do not influence it.
|
601
608
|
"""
|
609
|
+
pulumi.set(__self__, "admin_user", admin_user)
|
602
610
|
pulumi.set(__self__, "capacities", capacities)
|
603
611
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
604
612
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
605
613
|
pulumi.set(__self__, "description", description)
|
614
|
+
pulumi.set(__self__, "domain_id", domain_id)
|
606
615
|
pulumi.set(__self__, "email_notification", email_notification)
|
616
|
+
pulumi.set(__self__, "feature_bundle", feature_bundle)
|
607
617
|
pulumi.set(__self__, "feature_set", feature_set)
|
608
618
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
609
619
|
pulumi.set(__self__, "id", id)
|
@@ -614,9 +624,15 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
|
|
614
624
|
pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
|
615
625
|
pulumi.set(__self__, "service_url", service_url)
|
616
626
|
pulumi.set(__self__, "state", state)
|
627
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
617
628
|
pulumi.set(__self__, "time_created", time_created)
|
618
629
|
pulumi.set(__self__, "time_updated", time_updated)
|
619
630
|
|
631
|
+
@property
|
632
|
+
@pulumi.getter(name="adminUser")
|
633
|
+
def admin_user(self) -> str:
|
634
|
+
return pulumi.get(self, "admin_user")
|
635
|
+
|
620
636
|
@property
|
621
637
|
@pulumi.getter
|
622
638
|
def capacities(self) -> Sequence['outputs.GetAnalyticsInstancesAnalyticsInstanceCapacityResult']:
|
@@ -649,6 +665,14 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
|
|
649
665
|
"""
|
650
666
|
return pulumi.get(self, "description")
|
651
667
|
|
668
|
+
@property
|
669
|
+
@pulumi.getter(name="domainId")
|
670
|
+
def domain_id(self) -> str:
|
671
|
+
"""
|
672
|
+
Identity domain OCID.
|
673
|
+
"""
|
674
|
+
return pulumi.get(self, "domain_id")
|
675
|
+
|
652
676
|
@property
|
653
677
|
@pulumi.getter(name="emailNotification")
|
654
678
|
def email_notification(self) -> str:
|
@@ -657,6 +681,14 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
|
|
657
681
|
"""
|
658
682
|
return pulumi.get(self, "email_notification")
|
659
683
|
|
684
|
+
@property
|
685
|
+
@pulumi.getter(name="featureBundle")
|
686
|
+
def feature_bundle(self) -> str:
|
687
|
+
"""
|
688
|
+
The feature set of an Analytics instance.
|
689
|
+
"""
|
690
|
+
return pulumi.get(self, "feature_bundle")
|
691
|
+
|
660
692
|
@property
|
661
693
|
@pulumi.getter(name="featureSet")
|
662
694
|
def feature_set(self) -> str:
|
@@ -690,7 +722,7 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
|
|
690
722
|
@pulumi.getter(name="kmsKeyId")
|
691
723
|
def kms_key_id(self) -> str:
|
692
724
|
"""
|
693
|
-
|
725
|
+
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
|
694
726
|
"""
|
695
727
|
return pulumi.get(self, "kms_key_id")
|
696
728
|
|
@@ -734,6 +766,14 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
|
|
734
766
|
"""
|
735
767
|
return pulumi.get(self, "state")
|
736
768
|
|
769
|
+
@property
|
770
|
+
@pulumi.getter(name="systemTags")
|
771
|
+
def system_tags(self) -> Mapping[str, str]:
|
772
|
+
"""
|
773
|
+
System tags for this resource. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.key": "value"}`
|
774
|
+
"""
|
775
|
+
return pulumi.get(self, "system_tags")
|
776
|
+
|
737
777
|
@property
|
738
778
|
@pulumi.getter(name="timeCreated")
|
739
779
|
def time_created(self) -> str:
|
@@ -758,7 +798,7 @@ class GetAnalyticsInstancesAnalyticsInstanceCapacityResult(dict):
|
|
758
798
|
capacity_value: int):
|
759
799
|
"""
|
760
800
|
:param str capacity_type: A filter to only return resources matching the capacity type enum. Values are case-insensitive.
|
761
|
-
:param int capacity_value: The capacity value selected (
|
801
|
+
:param int capacity_value: The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
|
762
802
|
"""
|
763
803
|
pulumi.set(__self__, "capacity_type", capacity_type)
|
764
804
|
pulumi.set(__self__, "capacity_value", capacity_value)
|
@@ -775,7 +815,7 @@ class GetAnalyticsInstancesAnalyticsInstanceCapacityResult(dict):
|
|
775
815
|
@pulumi.getter(name="capacityValue")
|
776
816
|
def capacity_value(self) -> int:
|
777
817
|
"""
|
778
|
-
The capacity value selected (
|
818
|
+
The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
|
779
819
|
"""
|
780
820
|
return pulumi.get(self, "capacity_value")
|
781
821
|
|
@@ -22,7 +22,7 @@ class GetMaintenanceRunResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getMaintenanceRun.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, current_custom_action_timeout_in_mins=None, current_patching_component=None, custom_action_timeout_in_mins=None, description=None, display_name=None, estimated_component_patching_start_time=None, estimated_patching_times=None, id=None, is_custom_action_timeout_enabled=None, is_dst_file_update_enabled=None, lifecycle_details=None, maintenance_run_id=None, maintenance_subtype=None, maintenance_type=None, patch_failure_count=None, patch_id=None, patch_type=None, patching_end_time=None, patching_mode=None, patching_start_time=None, patching_status=None, peer_maintenance_run_id=None, state=None, target_db_server_version=None, target_resource_id=None, target_resource_type=None, target_storage_server_version=None, time_ended=None, time_scheduled=None, time_started=None):
|
25
|
+
def __init__(__self__, compartment_id=None, current_custom_action_timeout_in_mins=None, current_patching_component=None, custom_action_timeout_in_mins=None, database_software_image_id=None, description=None, display_name=None, estimated_component_patching_start_time=None, estimated_patching_times=None, id=None, is_custom_action_timeout_enabled=None, is_dst_file_update_enabled=None, lifecycle_details=None, maintenance_run_id=None, maintenance_subtype=None, maintenance_type=None, patch_failure_count=None, patch_id=None, patch_type=None, patching_end_time=None, patching_mode=None, patching_start_time=None, patching_status=None, peer_maintenance_run_id=None, state=None, target_db_server_version=None, target_resource_id=None, target_resource_type=None, target_storage_server_version=None, time_ended=None, time_scheduled=None, time_started=None):
|
26
26
|
if compartment_id and not isinstance(compartment_id, str):
|
27
27
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
28
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -35,6 +35,9 @@ class GetMaintenanceRunResult:
|
|
35
35
|
if custom_action_timeout_in_mins and not isinstance(custom_action_timeout_in_mins, int):
|
36
36
|
raise TypeError("Expected argument 'custom_action_timeout_in_mins' to be a int")
|
37
37
|
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
38
|
+
if database_software_image_id and not isinstance(database_software_image_id, str):
|
39
|
+
raise TypeError("Expected argument 'database_software_image_id' to be a str")
|
40
|
+
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
38
41
|
if description and not isinstance(description, str):
|
39
42
|
raise TypeError("Expected argument 'description' to be a str")
|
40
43
|
pulumi.set(__self__, "description", description)
|
@@ -149,6 +152,14 @@ class GetMaintenanceRunResult:
|
|
149
152
|
"""
|
150
153
|
return pulumi.get(self, "custom_action_timeout_in_mins")
|
151
154
|
|
155
|
+
@property
|
156
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
157
|
+
def database_software_image_id(self) -> str:
|
158
|
+
"""
|
159
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "database_software_image_id")
|
162
|
+
|
152
163
|
@property
|
153
164
|
@pulumi.getter
|
154
165
|
def description(self) -> str:
|
@@ -370,6 +381,7 @@ class AwaitableGetMaintenanceRunResult(GetMaintenanceRunResult):
|
|
370
381
|
current_custom_action_timeout_in_mins=self.current_custom_action_timeout_in_mins,
|
371
382
|
current_patching_component=self.current_patching_component,
|
372
383
|
custom_action_timeout_in_mins=self.custom_action_timeout_in_mins,
|
384
|
+
database_software_image_id=self.database_software_image_id,
|
373
385
|
description=self.description,
|
374
386
|
display_name=self.display_name,
|
375
387
|
estimated_component_patching_start_time=self.estimated_component_patching_start_time,
|
@@ -428,6 +440,7 @@ def get_maintenance_run(maintenance_run_id: Optional[str] = None,
|
|
428
440
|
current_custom_action_timeout_in_mins=pulumi.get(__ret__, 'current_custom_action_timeout_in_mins'),
|
429
441
|
current_patching_component=pulumi.get(__ret__, 'current_patching_component'),
|
430
442
|
custom_action_timeout_in_mins=pulumi.get(__ret__, 'custom_action_timeout_in_mins'),
|
443
|
+
database_software_image_id=pulumi.get(__ret__, 'database_software_image_id'),
|
431
444
|
description=pulumi.get(__ret__, 'description'),
|
432
445
|
display_name=pulumi.get(__ret__, 'display_name'),
|
433
446
|
estimated_component_patching_start_time=pulumi.get(__ret__, 'estimated_component_patching_start_time'),
|
@@ -20,11 +20,12 @@ class MaintenanceRunArgs:
|
|
20
20
|
target_resource_id: pulumi.Input[str],
|
21
21
|
time_scheduled: pulumi.Input[str],
|
22
22
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
23
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
23
24
|
is_dst_file_update_enabled: Optional[pulumi.Input[bool]] = None,
|
24
25
|
patching_mode: Optional[pulumi.Input[str]] = None):
|
25
26
|
"""
|
26
27
|
The set of arguments for constructing a MaintenanceRun resource.
|
27
|
-
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "
|
28
|
+
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
28
29
|
:param pulumi.Input[str] target_resource_id: The ID of the target resource for which the maintenance run should be created.
|
29
30
|
:param pulumi.Input[str] time_scheduled: (Updatable) The date and time that update should be scheduled.
|
30
31
|
|
@@ -32,6 +33,7 @@ class MaintenanceRunArgs:
|
|
32
33
|
** IMPORTANT **
|
33
34
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
34
35
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Maintenance Run.
|
36
|
+
:param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
35
37
|
:param pulumi.Input[bool] is_dst_file_update_enabled: Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
|
36
38
|
:param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
37
39
|
|
@@ -42,6 +44,8 @@ class MaintenanceRunArgs:
|
|
42
44
|
pulumi.set(__self__, "time_scheduled", time_scheduled)
|
43
45
|
if compartment_id is not None:
|
44
46
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
47
|
+
if database_software_image_id is not None:
|
48
|
+
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
45
49
|
if is_dst_file_update_enabled is not None:
|
46
50
|
pulumi.set(__self__, "is_dst_file_update_enabled", is_dst_file_update_enabled)
|
47
51
|
if patching_mode is not None:
|
@@ -51,7 +55,7 @@ class MaintenanceRunArgs:
|
|
51
55
|
@pulumi.getter(name="patchType")
|
52
56
|
def patch_type(self) -> pulumi.Input[str]:
|
53
57
|
"""
|
54
|
-
Patch type, either "QUARTERLY" or "
|
58
|
+
Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
55
59
|
"""
|
56
60
|
return pulumi.get(self, "patch_type")
|
57
61
|
|
@@ -99,6 +103,18 @@ class MaintenanceRunArgs:
|
|
99
103
|
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
100
104
|
pulumi.set(self, "compartment_id", value)
|
101
105
|
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
108
|
+
def database_software_image_id(self) -> Optional[pulumi.Input[str]]:
|
109
|
+
"""
|
110
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "database_software_image_id")
|
113
|
+
|
114
|
+
@database_software_image_id.setter
|
115
|
+
def database_software_image_id(self, value: Optional[pulumi.Input[str]]):
|
116
|
+
pulumi.set(self, "database_software_image_id", value)
|
117
|
+
|
102
118
|
@property
|
103
119
|
@pulumi.getter(name="isDstFileUpdateEnabled")
|
104
120
|
def is_dst_file_update_enabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -133,6 +149,7 @@ class _MaintenanceRunState:
|
|
133
149
|
current_custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
|
134
150
|
current_patching_component: Optional[pulumi.Input[str]] = None,
|
135
151
|
custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
|
152
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
136
153
|
description: Optional[pulumi.Input[str]] = None,
|
137
154
|
display_name: Optional[pulumi.Input[str]] = None,
|
138
155
|
estimated_component_patching_start_time: Optional[pulumi.Input[str]] = None,
|
@@ -164,6 +181,7 @@ class _MaintenanceRunState:
|
|
164
181
|
:param pulumi.Input[int] current_custom_action_timeout_in_mins: Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
|
165
182
|
:param pulumi.Input[str] current_patching_component: The name of the current infrastruture component that is getting patched.
|
166
183
|
:param pulumi.Input[int] custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
|
184
|
+
:param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
167
185
|
:param pulumi.Input[str] description: Description of the maintenance run.
|
168
186
|
:param pulumi.Input[str] display_name: The user-friendly name for the maintenance run.
|
169
187
|
:param pulumi.Input[str] estimated_component_patching_start_time: The estimated start time of the next infrastruture component patching operation.
|
@@ -175,7 +193,7 @@ class _MaintenanceRunState:
|
|
175
193
|
:param pulumi.Input[str] maintenance_type: Maintenance type.
|
176
194
|
:param pulumi.Input[int] patch_failure_count: Contain the patch failure count.
|
177
195
|
:param pulumi.Input[str] patch_id: The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier `ru_patch_19.9.0.0_201030` is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
|
178
|
-
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "
|
196
|
+
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
179
197
|
:param pulumi.Input[str] patching_end_time: The time when the patching operation ended.
|
180
198
|
:param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
181
199
|
|
@@ -204,6 +222,8 @@ class _MaintenanceRunState:
|
|
204
222
|
pulumi.set(__self__, "current_patching_component", current_patching_component)
|
205
223
|
if custom_action_timeout_in_mins is not None:
|
206
224
|
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
225
|
+
if database_software_image_id is not None:
|
226
|
+
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
207
227
|
if description is not None:
|
208
228
|
pulumi.set(__self__, "description", description)
|
209
229
|
if display_name is not None:
|
@@ -303,6 +323,18 @@ class _MaintenanceRunState:
|
|
303
323
|
def custom_action_timeout_in_mins(self, value: Optional[pulumi.Input[int]]):
|
304
324
|
pulumi.set(self, "custom_action_timeout_in_mins", value)
|
305
325
|
|
326
|
+
@property
|
327
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
328
|
+
def database_software_image_id(self) -> Optional[pulumi.Input[str]]:
|
329
|
+
"""
|
330
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "database_software_image_id")
|
333
|
+
|
334
|
+
@database_software_image_id.setter
|
335
|
+
def database_software_image_id(self, value: Optional[pulumi.Input[str]]):
|
336
|
+
pulumi.set(self, "database_software_image_id", value)
|
337
|
+
|
306
338
|
@property
|
307
339
|
@pulumi.getter
|
308
340
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -439,7 +471,7 @@ class _MaintenanceRunState:
|
|
439
471
|
@pulumi.getter(name="patchType")
|
440
472
|
def patch_type(self) -> Optional[pulumi.Input[str]]:
|
441
473
|
"""
|
442
|
-
Patch type, either "QUARTERLY" or "
|
474
|
+
Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
443
475
|
"""
|
444
476
|
return pulumi.get(self, "patch_type")
|
445
477
|
|
@@ -616,6 +648,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
616
648
|
resource_name: str,
|
617
649
|
opts: Optional[pulumi.ResourceOptions] = None,
|
618
650
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
651
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
619
652
|
is_dst_file_update_enabled: Optional[pulumi.Input[bool]] = None,
|
620
653
|
patch_type: Optional[pulumi.Input[str]] = None,
|
621
654
|
patching_mode: Optional[pulumi.Input[str]] = None,
|
@@ -641,6 +674,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
641
674
|
target_resource_id=test_resource["id"],
|
642
675
|
time_scheduled=maintenance_run_time_scheduled,
|
643
676
|
compartment_id=compartment_id,
|
677
|
+
database_software_image_id=test_database_software_image["id"],
|
644
678
|
is_dst_file_update_enabled=maintenance_run_is_dst_file_update_enabled,
|
645
679
|
patching_mode=maintenance_run_patching_mode)
|
646
680
|
```
|
@@ -656,8 +690,9 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
656
690
|
:param str resource_name: The name of the resource.
|
657
691
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
658
692
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Maintenance Run.
|
693
|
+
:param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
659
694
|
:param pulumi.Input[bool] is_dst_file_update_enabled: Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
|
660
|
-
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "
|
695
|
+
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
661
696
|
:param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
662
697
|
|
663
698
|
*IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
|
@@ -693,6 +728,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
693
728
|
target_resource_id=test_resource["id"],
|
694
729
|
time_scheduled=maintenance_run_time_scheduled,
|
695
730
|
compartment_id=compartment_id,
|
731
|
+
database_software_image_id=test_database_software_image["id"],
|
696
732
|
is_dst_file_update_enabled=maintenance_run_is_dst_file_update_enabled,
|
697
733
|
patching_mode=maintenance_run_patching_mode)
|
698
734
|
```
|
@@ -721,6 +757,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
721
757
|
resource_name: str,
|
722
758
|
opts: Optional[pulumi.ResourceOptions] = None,
|
723
759
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
760
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
724
761
|
is_dst_file_update_enabled: Optional[pulumi.Input[bool]] = None,
|
725
762
|
patch_type: Optional[pulumi.Input[str]] = None,
|
726
763
|
patching_mode: Optional[pulumi.Input[str]] = None,
|
@@ -736,6 +773,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
736
773
|
__props__ = MaintenanceRunArgs.__new__(MaintenanceRunArgs)
|
737
774
|
|
738
775
|
__props__.__dict__["compartment_id"] = compartment_id
|
776
|
+
__props__.__dict__["database_software_image_id"] = database_software_image_id
|
739
777
|
__props__.__dict__["is_dst_file_update_enabled"] = is_dst_file_update_enabled
|
740
778
|
if patch_type is None and not opts.urn:
|
741
779
|
raise TypeError("Missing required property 'patch_type'")
|
@@ -784,6 +822,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
784
822
|
current_custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
|
785
823
|
current_patching_component: Optional[pulumi.Input[str]] = None,
|
786
824
|
custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
|
825
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
787
826
|
description: Optional[pulumi.Input[str]] = None,
|
788
827
|
display_name: Optional[pulumi.Input[str]] = None,
|
789
828
|
estimated_component_patching_start_time: Optional[pulumi.Input[str]] = None,
|
@@ -820,6 +859,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
820
859
|
:param pulumi.Input[int] current_custom_action_timeout_in_mins: Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
|
821
860
|
:param pulumi.Input[str] current_patching_component: The name of the current infrastruture component that is getting patched.
|
822
861
|
:param pulumi.Input[int] custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
|
862
|
+
:param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
823
863
|
:param pulumi.Input[str] description: Description of the maintenance run.
|
824
864
|
:param pulumi.Input[str] display_name: The user-friendly name for the maintenance run.
|
825
865
|
:param pulumi.Input[str] estimated_component_patching_start_time: The estimated start time of the next infrastruture component patching operation.
|
@@ -831,7 +871,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
831
871
|
:param pulumi.Input[str] maintenance_type: Maintenance type.
|
832
872
|
:param pulumi.Input[int] patch_failure_count: Contain the patch failure count.
|
833
873
|
:param pulumi.Input[str] patch_id: The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier `ru_patch_19.9.0.0_201030` is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
|
834
|
-
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "
|
874
|
+
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
835
875
|
:param pulumi.Input[str] patching_end_time: The time when the patching operation ended.
|
836
876
|
:param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
837
877
|
|
@@ -860,6 +900,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
860
900
|
__props__.__dict__["current_custom_action_timeout_in_mins"] = current_custom_action_timeout_in_mins
|
861
901
|
__props__.__dict__["current_patching_component"] = current_patching_component
|
862
902
|
__props__.__dict__["custom_action_timeout_in_mins"] = custom_action_timeout_in_mins
|
903
|
+
__props__.__dict__["database_software_image_id"] = database_software_image_id
|
863
904
|
__props__.__dict__["description"] = description
|
864
905
|
__props__.__dict__["display_name"] = display_name
|
865
906
|
__props__.__dict__["estimated_component_patching_start_time"] = estimated_component_patching_start_time
|
@@ -919,6 +960,14 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
919
960
|
"""
|
920
961
|
return pulumi.get(self, "custom_action_timeout_in_mins")
|
921
962
|
|
963
|
+
@property
|
964
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
965
|
+
def database_software_image_id(self) -> pulumi.Output[str]:
|
966
|
+
"""
|
967
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
968
|
+
"""
|
969
|
+
return pulumi.get(self, "database_software_image_id")
|
970
|
+
|
922
971
|
@property
|
923
972
|
@pulumi.getter
|
924
973
|
def description(self) -> pulumi.Output[str]:
|
@@ -1011,7 +1060,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
1011
1060
|
@pulumi.getter(name="patchType")
|
1012
1061
|
def patch_type(self) -> pulumi.Output[str]:
|
1013
1062
|
"""
|
1014
|
-
Patch type, either "QUARTERLY" or "
|
1063
|
+
Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
1015
1064
|
"""
|
1016
1065
|
return pulumi.get(self, "patch_type")
|
1017
1066
|
|