pulumi-oci 2.8.0__py3-none-any.whl → 2.8.0a1724220787__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. pulumi_oci/analytics/_inputs.py +4 -4
  2. pulumi_oci/analytics/analytics_instance.py +25 -199
  3. pulumi_oci/analytics/get_analytics_instance.py +2 -51
  4. pulumi_oci/analytics/get_analytics_instances.py +1 -1
  5. pulumi_oci/analytics/outputs.py +12 -52
  6. pulumi_oci/database/get_maintenance_run.py +1 -14
  7. pulumi_oci/database/maintenance_run.py +7 -56
  8. pulumi_oci/database/outputs.py +0 -33
  9. pulumi_oci/disasterrecovery/_inputs.py +2 -66
  10. pulumi_oci/disasterrecovery/dr_protection_group.py +0 -8
  11. pulumi_oci/disasterrecovery/get_dr_plan_executions.py +0 -24
  12. pulumi_oci/disasterrecovery/outputs.py +10 -150
  13. pulumi_oci/integration/get_integration_instance.py +2 -25
  14. pulumi_oci/integration/integration_instance.py +0 -88
  15. pulumi_oci/integration/outputs.py +6 -24
  16. pulumi_oci/mysql/_inputs.py +2 -202
  17. pulumi_oci/mysql/get_mysql_backup.py +1 -1
  18. pulumi_oci/mysql/get_mysql_db_system.py +2 -15
  19. pulumi_oci/mysql/mysql_backup.py +4 -4
  20. pulumi_oci/mysql/mysql_db_system.py +0 -55
  21. pulumi_oci/mysql/outputs.py +10 -503
  22. pulumi_oci/pulumi-plugin.json +1 -1
  23. pulumi_oci/redis/__init__.py +0 -1
  24. pulumi_oci/redis/_inputs.py +0 -40
  25. pulumi_oci/redis/get_redis_cluster.py +21 -47
  26. pulumi_oci/redis/get_redis_clusters.py +8 -8
  27. pulumi_oci/redis/outputs.py +28 -160
  28. pulumi_oci/redis/redis_cluster.py +79 -177
  29. {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/METADATA +1 -1
  30. {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/RECORD +32 -33
  31. pulumi_oci/redis/get_redis_cluster_nodes.py +0 -156
  32. {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/WHEEL +0 -0
  33. {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/top_level.txt +0 -0
@@ -22,10 +22,7 @@ class GetAnalyticsInstanceResult:
22
22
  """
23
23
  A collection of values returned by getAnalyticsInstance.
24
24
  """
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)
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):
29
26
  if analytics_instance_id and not isinstance(analytics_instance_id, str):
30
27
  raise TypeError("Expected argument 'analytics_instance_id' to be a str")
31
28
  pulumi.set(__self__, "analytics_instance_id", analytics_instance_id)
@@ -41,15 +38,9 @@ class GetAnalyticsInstanceResult:
41
38
  if description and not isinstance(description, str):
42
39
  raise TypeError("Expected argument 'description' to be a str")
43
40
  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)
47
41
  if email_notification and not isinstance(email_notification, str):
48
42
  raise TypeError("Expected argument 'email_notification' to be a str")
49
43
  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)
53
44
  if feature_set and not isinstance(feature_set, str):
54
45
  raise TypeError("Expected argument 'feature_set' to be a str")
55
46
  pulumi.set(__self__, "feature_set", feature_set)
@@ -80,9 +71,6 @@ class GetAnalyticsInstanceResult:
80
71
  if state and not isinstance(state, str):
81
72
  raise TypeError("Expected argument 'state' to be a str")
82
73
  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)
86
74
  if time_created and not isinstance(time_created, str):
87
75
  raise TypeError("Expected argument 'time_created' to be a str")
88
76
  pulumi.set(__self__, "time_created", time_created)
@@ -90,11 +78,6 @@ class GetAnalyticsInstanceResult:
90
78
  raise TypeError("Expected argument 'time_updated' to be a str")
91
79
  pulumi.set(__self__, "time_updated", time_updated)
92
80
 
93
- @property
94
- @pulumi.getter(name="adminUser")
95
- def admin_user(self) -> str:
96
- return pulumi.get(self, "admin_user")
97
-
98
81
  @property
99
82
  @pulumi.getter(name="analyticsInstanceId")
100
83
  def analytics_instance_id(self) -> str:
@@ -132,14 +115,6 @@ class GetAnalyticsInstanceResult:
132
115
  """
133
116
  return pulumi.get(self, "description")
134
117
 
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
-
143
118
  @property
144
119
  @pulumi.getter(name="emailNotification")
145
120
  def email_notification(self) -> str:
@@ -148,14 +123,6 @@ class GetAnalyticsInstanceResult:
148
123
  """
149
124
  return pulumi.get(self, "email_notification")
150
125
 
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
-
159
126
  @property
160
127
  @pulumi.getter(name="featureSet")
161
128
  def feature_set(self) -> str:
@@ -189,7 +156,7 @@ class GetAnalyticsInstanceResult:
189
156
  @pulumi.getter(name="kmsKeyId")
190
157
  def kms_key_id(self) -> str:
191
158
  """
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.
159
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
193
160
  """
194
161
  return pulumi.get(self, "kms_key_id")
195
162
 
@@ -233,14 +200,6 @@ class GetAnalyticsInstanceResult:
233
200
  """
234
201
  return pulumi.get(self, "state")
235
202
 
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
-
244
203
  @property
245
204
  @pulumi.getter(name="timeCreated")
246
205
  def time_created(self) -> str:
@@ -264,15 +223,12 @@ class AwaitableGetAnalyticsInstanceResult(GetAnalyticsInstanceResult):
264
223
  if False:
265
224
  yield self
266
225
  return GetAnalyticsInstanceResult(
267
- admin_user=self.admin_user,
268
226
  analytics_instance_id=self.analytics_instance_id,
269
227
  capacities=self.capacities,
270
228
  compartment_id=self.compartment_id,
271
229
  defined_tags=self.defined_tags,
272
230
  description=self.description,
273
- domain_id=self.domain_id,
274
231
  email_notification=self.email_notification,
275
- feature_bundle=self.feature_bundle,
276
232
  feature_set=self.feature_set,
277
233
  freeform_tags=self.freeform_tags,
278
234
  id=self.id,
@@ -283,7 +239,6 @@ class AwaitableGetAnalyticsInstanceResult(GetAnalyticsInstanceResult):
283
239
  network_endpoint_details=self.network_endpoint_details,
284
240
  service_url=self.service_url,
285
241
  state=self.state,
286
- system_tags=self.system_tags,
287
242
  time_created=self.time_created,
288
243
  time_updated=self.time_updated)
289
244
 
@@ -313,15 +268,12 @@ def get_analytics_instance(analytics_instance_id: Optional[str] = None,
313
268
  __ret__ = pulumi.runtime.invoke('oci:Analytics/getAnalyticsInstance:getAnalyticsInstance', __args__, opts=opts, typ=GetAnalyticsInstanceResult).value
314
269
 
315
270
  return AwaitableGetAnalyticsInstanceResult(
316
- admin_user=pulumi.get(__ret__, 'admin_user'),
317
271
  analytics_instance_id=pulumi.get(__ret__, 'analytics_instance_id'),
318
272
  capacities=pulumi.get(__ret__, 'capacities'),
319
273
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
320
274
  defined_tags=pulumi.get(__ret__, 'defined_tags'),
321
275
  description=pulumi.get(__ret__, 'description'),
322
- domain_id=pulumi.get(__ret__, 'domain_id'),
323
276
  email_notification=pulumi.get(__ret__, 'email_notification'),
324
- feature_bundle=pulumi.get(__ret__, 'feature_bundle'),
325
277
  feature_set=pulumi.get(__ret__, 'feature_set'),
326
278
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
327
279
  id=pulumi.get(__ret__, 'id'),
@@ -332,7 +284,6 @@ def get_analytics_instance(analytics_instance_id: Optional[str] = None,
332
284
  network_endpoint_details=pulumi.get(__ret__, 'network_endpoint_details'),
333
285
  service_url=pulumi.get(__ret__, 'service_url'),
334
286
  state=pulumi.get(__ret__, 'state'),
335
- system_tags=pulumi.get(__ret__, 'system_tags'),
336
287
  time_created=pulumi.get(__ret__, 'time_created'),
337
288
  time_updated=pulumi.get(__ret__, 'time_updated'))
338
289
 
@@ -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. Accepted values are: OLPU_COUNT, USER_COUNT
64
+ The capacity model to use.
65
65
  """
66
66
  return pulumi.get(self, "capacity_type")
67
67
 
@@ -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. 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.
56
+ :param str capacity_type: The capacity model to use.
57
+ :param int capacity_value: (Updatable) The capacity value selected (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or 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. Accepted values are: OLPU_COUNT, USER_COUNT
66
+ The capacity model to use.
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, 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.
74
+ (Updatable) The capacity value selected (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or 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. 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.
359
+ :param str capacity_type: The capacity model to use.
360
+ :param int capacity_value: The capacity value selected (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or 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. Accepted values are: OLPU_COUNT, USER_COUNT
369
+ The capacity model to use.
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, 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.
377
+ The capacity value selected (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
378
378
  """
379
379
  return pulumi.get(self, "capacity_value")
380
380
 
@@ -564,14 +564,11 @@ class GetAnalyticsInstancePrivateAccessChannelPrivateSourceScanHostResult(dict):
564
564
  @pulumi.output_type
565
565
  class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
566
566
  def __init__(__self__, *,
567
- admin_user: str,
568
567
  capacities: Sequence['outputs.GetAnalyticsInstancesAnalyticsInstanceCapacityResult'],
569
568
  compartment_id: str,
570
569
  defined_tags: Mapping[str, str],
571
570
  description: str,
572
- domain_id: str,
573
571
  email_notification: str,
574
- feature_bundle: str,
575
572
  feature_set: str,
576
573
  freeform_tags: Mapping[str, str],
577
574
  id: str,
@@ -582,7 +579,6 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
582
579
  network_endpoint_details: Sequence['outputs.GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetailResult'],
583
580
  service_url: str,
584
581
  state: str,
585
- system_tags: Mapping[str, str],
586
582
  time_created: str,
587
583
  time_updated: str):
588
584
  """
@@ -590,30 +586,24 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
590
586
  :param str compartment_id: The OCID of the compartment.
591
587
  :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"}`
592
588
  :param str description: Description of the vanity url.
593
- :param str domain_id: Identity domain OCID.
594
589
  :param str email_notification: Email address receiving notifications.
595
- :param str feature_bundle: The feature set of an Analytics instance.
596
590
  :param str feature_set: A filter to only return resources matching the feature set. Values are case-insensitive.
597
591
  :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"}`
598
592
  :param str id: The Virtual Cloud Network OCID.
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.
593
+ :param str kms_key_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
600
594
  :param str license_type: The license used for the service.
601
595
  :param str name: A filter to return only resources that match the given name exactly.
602
596
  :param Sequence['GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetailArgs'] network_endpoint_details: Base representation of a network endpoint.
603
597
  :param str service_url: URL of the Analytics service.
604
598
  :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"}`
606
599
  :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`
607
600
  :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.
608
601
  """
609
- pulumi.set(__self__, "admin_user", admin_user)
610
602
  pulumi.set(__self__, "capacities", capacities)
611
603
  pulumi.set(__self__, "compartment_id", compartment_id)
612
604
  pulumi.set(__self__, "defined_tags", defined_tags)
613
605
  pulumi.set(__self__, "description", description)
614
- pulumi.set(__self__, "domain_id", domain_id)
615
606
  pulumi.set(__self__, "email_notification", email_notification)
616
- pulumi.set(__self__, "feature_bundle", feature_bundle)
617
607
  pulumi.set(__self__, "feature_set", feature_set)
618
608
  pulumi.set(__self__, "freeform_tags", freeform_tags)
619
609
  pulumi.set(__self__, "id", id)
@@ -624,15 +614,9 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
624
614
  pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
625
615
  pulumi.set(__self__, "service_url", service_url)
626
616
  pulumi.set(__self__, "state", state)
627
- pulumi.set(__self__, "system_tags", system_tags)
628
617
  pulumi.set(__self__, "time_created", time_created)
629
618
  pulumi.set(__self__, "time_updated", time_updated)
630
619
 
631
- @property
632
- @pulumi.getter(name="adminUser")
633
- def admin_user(self) -> str:
634
- return pulumi.get(self, "admin_user")
635
-
636
620
  @property
637
621
  @pulumi.getter
638
622
  def capacities(self) -> Sequence['outputs.GetAnalyticsInstancesAnalyticsInstanceCapacityResult']:
@@ -665,14 +649,6 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
665
649
  """
666
650
  return pulumi.get(self, "description")
667
651
 
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
-
676
652
  @property
677
653
  @pulumi.getter(name="emailNotification")
678
654
  def email_notification(self) -> str:
@@ -681,14 +657,6 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
681
657
  """
682
658
  return pulumi.get(self, "email_notification")
683
659
 
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
-
692
660
  @property
693
661
  @pulumi.getter(name="featureSet")
694
662
  def feature_set(self) -> str:
@@ -722,7 +690,7 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
722
690
  @pulumi.getter(name="kmsKeyId")
723
691
  def kms_key_id(self) -> str:
724
692
  """
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.
693
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
726
694
  """
727
695
  return pulumi.get(self, "kms_key_id")
728
696
 
@@ -766,14 +734,6 @@ class GetAnalyticsInstancesAnalyticsInstanceResult(dict):
766
734
  """
767
735
  return pulumi.get(self, "state")
768
736
 
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
-
777
737
  @property
778
738
  @pulumi.getter(name="timeCreated")
779
739
  def time_created(self) -> str:
@@ -798,7 +758,7 @@ class GetAnalyticsInstancesAnalyticsInstanceCapacityResult(dict):
798
758
  capacity_value: int):
799
759
  """
800
760
  :param str capacity_type: A filter to only return resources matching the capacity type enum. Values are case-insensitive.
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.
761
+ :param int capacity_value: The capacity value selected (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
802
762
  """
803
763
  pulumi.set(__self__, "capacity_type", capacity_type)
804
764
  pulumi.set(__self__, "capacity_value", capacity_value)
@@ -815,7 +775,7 @@ class GetAnalyticsInstancesAnalyticsInstanceCapacityResult(dict):
815
775
  @pulumi.getter(name="capacityValue")
816
776
  def capacity_value(self) -> int:
817
777
  """
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.
778
+ The capacity value selected (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
819
779
  """
820
780
  return pulumi.get(self, "capacity_value")
821
781
 
@@ -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, 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):
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):
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,9 +35,6 @@ 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)
41
38
  if description and not isinstance(description, str):
42
39
  raise TypeError("Expected argument 'description' to be a str")
43
40
  pulumi.set(__self__, "description", description)
@@ -152,14 +149,6 @@ class GetMaintenanceRunResult:
152
149
  """
153
150
  return pulumi.get(self, "custom_action_timeout_in_mins")
154
151
 
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
-
163
152
  @property
164
153
  @pulumi.getter
165
154
  def description(self) -> str:
@@ -381,7 +370,6 @@ class AwaitableGetMaintenanceRunResult(GetMaintenanceRunResult):
381
370
  current_custom_action_timeout_in_mins=self.current_custom_action_timeout_in_mins,
382
371
  current_patching_component=self.current_patching_component,
383
372
  custom_action_timeout_in_mins=self.custom_action_timeout_in_mins,
384
- database_software_image_id=self.database_software_image_id,
385
373
  description=self.description,
386
374
  display_name=self.display_name,
387
375
  estimated_component_patching_start_time=self.estimated_component_patching_start_time,
@@ -440,7 +428,6 @@ def get_maintenance_run(maintenance_run_id: Optional[str] = None,
440
428
  current_custom_action_timeout_in_mins=pulumi.get(__ret__, 'current_custom_action_timeout_in_mins'),
441
429
  current_patching_component=pulumi.get(__ret__, 'current_patching_component'),
442
430
  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'),
444
431
  description=pulumi.get(__ret__, 'description'),
445
432
  display_name=pulumi.get(__ret__, 'display_name'),
446
433
  estimated_component_patching_start_time=pulumi.get(__ret__, 'estimated_component_patching_start_time'),
@@ -20,12 +20,11 @@ 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,
24
23
  is_dst_file_update_enabled: Optional[pulumi.Input[bool]] = None,
25
24
  patching_mode: Optional[pulumi.Input[str]] = None):
26
25
  """
27
26
  The set of arguments for constructing a MaintenanceRun resource.
28
- :param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
27
+ :param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "TIMEZONE".
29
28
  :param pulumi.Input[str] target_resource_id: The ID of the target resource for which the maintenance run should be created.
30
29
  :param pulumi.Input[str] time_scheduled: (Updatable) The date and time that update should be scheduled.
31
30
 
@@ -33,7 +32,6 @@ class MaintenanceRunArgs:
33
32
  ** IMPORTANT **
34
33
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
35
34
  :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)
37
35
  :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.
38
36
  :param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
39
37
 
@@ -44,8 +42,6 @@ class MaintenanceRunArgs:
44
42
  pulumi.set(__self__, "time_scheduled", time_scheduled)
45
43
  if compartment_id is not None:
46
44
  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)
49
45
  if is_dst_file_update_enabled is not None:
50
46
  pulumi.set(__self__, "is_dst_file_update_enabled", is_dst_file_update_enabled)
51
47
  if patching_mode is not None:
@@ -55,7 +51,7 @@ class MaintenanceRunArgs:
55
51
  @pulumi.getter(name="patchType")
56
52
  def patch_type(self) -> pulumi.Input[str]:
57
53
  """
58
- Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
54
+ Patch type, either "QUARTERLY" or "TIMEZONE".
59
55
  """
60
56
  return pulumi.get(self, "patch_type")
61
57
 
@@ -103,18 +99,6 @@ class MaintenanceRunArgs:
103
99
  def compartment_id(self, value: Optional[pulumi.Input[str]]):
104
100
  pulumi.set(self, "compartment_id", value)
105
101
 
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
-
118
102
  @property
119
103
  @pulumi.getter(name="isDstFileUpdateEnabled")
120
104
  def is_dst_file_update_enabled(self) -> Optional[pulumi.Input[bool]]:
@@ -149,7 +133,6 @@ class _MaintenanceRunState:
149
133
  current_custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
150
134
  current_patching_component: Optional[pulumi.Input[str]] = None,
151
135
  custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
152
- database_software_image_id: Optional[pulumi.Input[str]] = None,
153
136
  description: Optional[pulumi.Input[str]] = None,
154
137
  display_name: Optional[pulumi.Input[str]] = None,
155
138
  estimated_component_patching_start_time: Optional[pulumi.Input[str]] = None,
@@ -181,7 +164,6 @@ class _MaintenanceRunState:
181
164
  :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.
182
165
  :param pulumi.Input[str] current_patching_component: The name of the current infrastruture component that is getting patched.
183
166
  :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)
185
167
  :param pulumi.Input[str] description: Description of the maintenance run.
186
168
  :param pulumi.Input[str] display_name: The user-friendly name for the maintenance run.
187
169
  :param pulumi.Input[str] estimated_component_patching_start_time: The estimated start time of the next infrastruture component patching operation.
@@ -193,7 +175,7 @@ class _MaintenanceRunState:
193
175
  :param pulumi.Input[str] maintenance_type: Maintenance type.
194
176
  :param pulumi.Input[int] patch_failure_count: Contain the patch failure count.
195
177
  :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.
196
- :param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
178
+ :param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "TIMEZONE".
197
179
  :param pulumi.Input[str] patching_end_time: The time when the patching operation ended.
198
180
  :param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
199
181
 
@@ -222,8 +204,6 @@ class _MaintenanceRunState:
222
204
  pulumi.set(__self__, "current_patching_component", current_patching_component)
223
205
  if custom_action_timeout_in_mins is not None:
224
206
  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)
227
207
  if description is not None:
228
208
  pulumi.set(__self__, "description", description)
229
209
  if display_name is not None:
@@ -323,18 +303,6 @@ class _MaintenanceRunState:
323
303
  def custom_action_timeout_in_mins(self, value: Optional[pulumi.Input[int]]):
324
304
  pulumi.set(self, "custom_action_timeout_in_mins", value)
325
305
 
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
-
338
306
  @property
339
307
  @pulumi.getter
340
308
  def description(self) -> Optional[pulumi.Input[str]]:
@@ -471,7 +439,7 @@ class _MaintenanceRunState:
471
439
  @pulumi.getter(name="patchType")
472
440
  def patch_type(self) -> Optional[pulumi.Input[str]]:
473
441
  """
474
- Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
442
+ Patch type, either "QUARTERLY" or "TIMEZONE".
475
443
  """
476
444
  return pulumi.get(self, "patch_type")
477
445
 
@@ -648,7 +616,6 @@ class MaintenanceRun(pulumi.CustomResource):
648
616
  resource_name: str,
649
617
  opts: Optional[pulumi.ResourceOptions] = None,
650
618
  compartment_id: Optional[pulumi.Input[str]] = None,
651
- database_software_image_id: Optional[pulumi.Input[str]] = None,
652
619
  is_dst_file_update_enabled: Optional[pulumi.Input[bool]] = None,
653
620
  patch_type: Optional[pulumi.Input[str]] = None,
654
621
  patching_mode: Optional[pulumi.Input[str]] = None,
@@ -674,7 +641,6 @@ class MaintenanceRun(pulumi.CustomResource):
674
641
  target_resource_id=test_resource["id"],
675
642
  time_scheduled=maintenance_run_time_scheduled,
676
643
  compartment_id=compartment_id,
677
- database_software_image_id=test_database_software_image["id"],
678
644
  is_dst_file_update_enabled=maintenance_run_is_dst_file_update_enabled,
679
645
  patching_mode=maintenance_run_patching_mode)
680
646
  ```
@@ -690,9 +656,8 @@ class MaintenanceRun(pulumi.CustomResource):
690
656
  :param str resource_name: The name of the resource.
691
657
  :param pulumi.ResourceOptions opts: Options for the resource.
692
658
  :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)
694
659
  :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.
695
- :param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
660
+ :param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "TIMEZONE".
696
661
  :param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
697
662
 
698
663
  *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.
@@ -728,7 +693,6 @@ class MaintenanceRun(pulumi.CustomResource):
728
693
  target_resource_id=test_resource["id"],
729
694
  time_scheduled=maintenance_run_time_scheduled,
730
695
  compartment_id=compartment_id,
731
- database_software_image_id=test_database_software_image["id"],
732
696
  is_dst_file_update_enabled=maintenance_run_is_dst_file_update_enabled,
733
697
  patching_mode=maintenance_run_patching_mode)
734
698
  ```
@@ -757,7 +721,6 @@ class MaintenanceRun(pulumi.CustomResource):
757
721
  resource_name: str,
758
722
  opts: Optional[pulumi.ResourceOptions] = None,
759
723
  compartment_id: Optional[pulumi.Input[str]] = None,
760
- database_software_image_id: Optional[pulumi.Input[str]] = None,
761
724
  is_dst_file_update_enabled: Optional[pulumi.Input[bool]] = None,
762
725
  patch_type: Optional[pulumi.Input[str]] = None,
763
726
  patching_mode: Optional[pulumi.Input[str]] = None,
@@ -773,7 +736,6 @@ class MaintenanceRun(pulumi.CustomResource):
773
736
  __props__ = MaintenanceRunArgs.__new__(MaintenanceRunArgs)
774
737
 
775
738
  __props__.__dict__["compartment_id"] = compartment_id
776
- __props__.__dict__["database_software_image_id"] = database_software_image_id
777
739
  __props__.__dict__["is_dst_file_update_enabled"] = is_dst_file_update_enabled
778
740
  if patch_type is None and not opts.urn:
779
741
  raise TypeError("Missing required property 'patch_type'")
@@ -822,7 +784,6 @@ class MaintenanceRun(pulumi.CustomResource):
822
784
  current_custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
823
785
  current_patching_component: Optional[pulumi.Input[str]] = None,
824
786
  custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
825
- database_software_image_id: Optional[pulumi.Input[str]] = None,
826
787
  description: Optional[pulumi.Input[str]] = None,
827
788
  display_name: Optional[pulumi.Input[str]] = None,
828
789
  estimated_component_patching_start_time: Optional[pulumi.Input[str]] = None,
@@ -859,7 +820,6 @@ class MaintenanceRun(pulumi.CustomResource):
859
820
  :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.
860
821
  :param pulumi.Input[str] current_patching_component: The name of the current infrastruture component that is getting patched.
861
822
  :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)
863
823
  :param pulumi.Input[str] description: Description of the maintenance run.
864
824
  :param pulumi.Input[str] display_name: The user-friendly name for the maintenance run.
865
825
  :param pulumi.Input[str] estimated_component_patching_start_time: The estimated start time of the next infrastruture component patching operation.
@@ -871,7 +831,7 @@ class MaintenanceRun(pulumi.CustomResource):
871
831
  :param pulumi.Input[str] maintenance_type: Maintenance type.
872
832
  :param pulumi.Input[int] patch_failure_count: Contain the patch failure count.
873
833
  :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.
874
- :param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
834
+ :param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "TIMEZONE".
875
835
  :param pulumi.Input[str] patching_end_time: The time when the patching operation ended.
876
836
  :param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
877
837
 
@@ -900,7 +860,6 @@ class MaintenanceRun(pulumi.CustomResource):
900
860
  __props__.__dict__["current_custom_action_timeout_in_mins"] = current_custom_action_timeout_in_mins
901
861
  __props__.__dict__["current_patching_component"] = current_patching_component
902
862
  __props__.__dict__["custom_action_timeout_in_mins"] = custom_action_timeout_in_mins
903
- __props__.__dict__["database_software_image_id"] = database_software_image_id
904
863
  __props__.__dict__["description"] = description
905
864
  __props__.__dict__["display_name"] = display_name
906
865
  __props__.__dict__["estimated_component_patching_start_time"] = estimated_component_patching_start_time
@@ -960,14 +919,6 @@ class MaintenanceRun(pulumi.CustomResource):
960
919
  """
961
920
  return pulumi.get(self, "custom_action_timeout_in_mins")
962
921
 
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
-
971
922
  @property
972
923
  @pulumi.getter
973
924
  def description(self) -> pulumi.Output[str]:
@@ -1060,7 +1011,7 @@ class MaintenanceRun(pulumi.CustomResource):
1060
1011
  @pulumi.getter(name="patchType")
1061
1012
  def patch_type(self) -> pulumi.Output[str]:
1062
1013
  """
1063
- Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
1014
+ Patch type, either "QUARTERLY" or "TIMEZONE".
1064
1015
  """
1065
1016
  return pulumi.get(self, "patch_type")
1066
1017