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.
Files changed (33) hide show
  1. pulumi_oci/analytics/_inputs.py +4 -4
  2. pulumi_oci/analytics/analytics_instance.py +199 -25
  3. pulumi_oci/analytics/get_analytics_instance.py +51 -2
  4. pulumi_oci/analytics/get_analytics_instances.py +1 -1
  5. pulumi_oci/analytics/outputs.py +52 -12
  6. pulumi_oci/database/get_maintenance_run.py +14 -1
  7. pulumi_oci/database/maintenance_run.py +56 -7
  8. pulumi_oci/database/outputs.py +33 -0
  9. pulumi_oci/disasterrecovery/_inputs.py +66 -2
  10. pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
  11. pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
  12. pulumi_oci/disasterrecovery/outputs.py +150 -10
  13. pulumi_oci/integration/get_integration_instance.py +25 -2
  14. pulumi_oci/integration/integration_instance.py +88 -0
  15. pulumi_oci/integration/outputs.py +24 -6
  16. pulumi_oci/mysql/_inputs.py +202 -2
  17. pulumi_oci/mysql/get_mysql_backup.py +1 -1
  18. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  19. pulumi_oci/mysql/mysql_backup.py +4 -4
  20. pulumi_oci/mysql/mysql_db_system.py +55 -0
  21. pulumi_oci/mysql/outputs.py +503 -10
  22. pulumi_oci/pulumi-plugin.json +1 -1
  23. pulumi_oci/redis/__init__.py +1 -0
  24. pulumi_oci/redis/_inputs.py +40 -0
  25. pulumi_oci/redis/get_redis_cluster.py +47 -21
  26. pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
  27. pulumi_oci/redis/get_redis_clusters.py +8 -8
  28. pulumi_oci/redis/outputs.py +160 -28
  29. pulumi_oci/redis/redis_cluster.py +177 -79
  30. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/METADATA +1 -1
  31. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/RECORD +33 -32
  32. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/WHEEL +0 -0
  33. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,7 @@ class IntegrationInstanceArgs:
27
27
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
28
28
  domain_id: Optional[pulumi.Input[str]] = None,
29
29
  enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
30
+ extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
30
31
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
31
32
  idcs_at: Optional[pulumi.Input[str]] = None,
32
33
  is_file_server_enabled: Optional[pulumi.Input[bool]] = None,
@@ -46,6 +47,8 @@ class IntegrationInstanceArgs:
46
47
  :param pulumi.Input['IntegrationInstanceCustomEndpointArgs'] custom_endpoint: (Updatable) Details for a custom endpoint for the integration instance (update).
47
48
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
48
49
  :param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
50
+ :param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
51
+ :param pulumi.Input[int] extend_data_retention_trigger: (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
49
52
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
50
53
  :param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
51
54
  :param pulumi.Input[bool] is_file_server_enabled: (Updatable) The file server is enabled or not.
@@ -75,6 +78,8 @@ class IntegrationInstanceArgs:
75
78
  pulumi.set(__self__, "domain_id", domain_id)
76
79
  if enable_process_automation_trigger is not None:
77
80
  pulumi.set(__self__, "enable_process_automation_trigger", enable_process_automation_trigger)
81
+ if extend_data_retention_trigger is not None:
82
+ pulumi.set(__self__, "extend_data_retention_trigger", extend_data_retention_trigger)
78
83
  if freeform_tags is not None:
79
84
  pulumi.set(__self__, "freeform_tags", freeform_tags)
80
85
  if idcs_at is not None:
@@ -213,12 +218,27 @@ class IntegrationInstanceArgs:
213
218
  @property
214
219
  @pulumi.getter(name="enableProcessAutomationTrigger")
215
220
  def enable_process_automation_trigger(self) -> Optional[pulumi.Input[int]]:
221
+ """
222
+ (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
223
+ """
216
224
  return pulumi.get(self, "enable_process_automation_trigger")
217
225
 
218
226
  @enable_process_automation_trigger.setter
219
227
  def enable_process_automation_trigger(self, value: Optional[pulumi.Input[int]]):
220
228
  pulumi.set(self, "enable_process_automation_trigger", value)
221
229
 
230
+ @property
231
+ @pulumi.getter(name="extendDataRetentionTrigger")
232
+ def extend_data_retention_trigger(self) -> Optional[pulumi.Input[int]]:
233
+ """
234
+ (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
235
+ """
236
+ return pulumi.get(self, "extend_data_retention_trigger")
237
+
238
+ @extend_data_retention_trigger.setter
239
+ def extend_data_retention_trigger(self, value: Optional[pulumi.Input[int]]):
240
+ pulumi.set(self, "extend_data_retention_trigger", value)
241
+
222
242
  @property
223
243
  @pulumi.getter(name="freeformTags")
224
244
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -316,10 +336,12 @@ class _IntegrationInstanceState:
316
336
  compartment_id: Optional[pulumi.Input[str]] = None,
317
337
  consumption_model: Optional[pulumi.Input[str]] = None,
318
338
  custom_endpoint: Optional[pulumi.Input['IntegrationInstanceCustomEndpointArgs']] = None,
339
+ data_retention_period: Optional[pulumi.Input[str]] = None,
319
340
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
320
341
  display_name: Optional[pulumi.Input[str]] = None,
321
342
  domain_id: Optional[pulumi.Input[str]] = None,
322
343
  enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
344
+ extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
323
345
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
324
346
  idcs_at: Optional[pulumi.Input[str]] = None,
325
347
  idcs_infos: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]]] = None,
@@ -344,9 +366,12 @@ class _IntegrationInstanceState:
344
366
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
345
367
  :param pulumi.Input[str] consumption_model: Optional parameter specifying which entitlement to use for billing purposes. Only required if the account possesses more than one entitlement.
346
368
  :param pulumi.Input['IntegrationInstanceCustomEndpointArgs'] custom_endpoint: (Updatable) Details for a custom endpoint for the integration instance (update).
369
+ :param pulumi.Input[str] data_retention_period: Data retention period set for given integration instance
347
370
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
348
371
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
349
372
  :param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
373
+ :param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
374
+ :param pulumi.Input[int] extend_data_retention_trigger: (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
350
375
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
351
376
  :param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
352
377
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]] idcs_infos: Information for IDCS access
@@ -379,6 +404,8 @@ class _IntegrationInstanceState:
379
404
  pulumi.set(__self__, "consumption_model", consumption_model)
380
405
  if custom_endpoint is not None:
381
406
  pulumi.set(__self__, "custom_endpoint", custom_endpoint)
407
+ if data_retention_period is not None:
408
+ pulumi.set(__self__, "data_retention_period", data_retention_period)
382
409
  if defined_tags is not None:
383
410
  pulumi.set(__self__, "defined_tags", defined_tags)
384
411
  if display_name is not None:
@@ -387,6 +414,8 @@ class _IntegrationInstanceState:
387
414
  pulumi.set(__self__, "domain_id", domain_id)
388
415
  if enable_process_automation_trigger is not None:
389
416
  pulumi.set(__self__, "enable_process_automation_trigger", enable_process_automation_trigger)
417
+ if extend_data_retention_trigger is not None:
418
+ pulumi.set(__self__, "extend_data_retention_trigger", extend_data_retention_trigger)
390
419
  if freeform_tags is not None:
391
420
  pulumi.set(__self__, "freeform_tags", freeform_tags)
392
421
  if idcs_at is not None:
@@ -482,6 +511,18 @@ class _IntegrationInstanceState:
482
511
  def custom_endpoint(self, value: Optional[pulumi.Input['IntegrationInstanceCustomEndpointArgs']]):
483
512
  pulumi.set(self, "custom_endpoint", value)
484
513
 
514
+ @property
515
+ @pulumi.getter(name="dataRetentionPeriod")
516
+ def data_retention_period(self) -> Optional[pulumi.Input[str]]:
517
+ """
518
+ Data retention period set for given integration instance
519
+ """
520
+ return pulumi.get(self, "data_retention_period")
521
+
522
+ @data_retention_period.setter
523
+ def data_retention_period(self, value: Optional[pulumi.Input[str]]):
524
+ pulumi.set(self, "data_retention_period", value)
525
+
485
526
  @property
486
527
  @pulumi.getter(name="definedTags")
487
528
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -521,12 +562,27 @@ class _IntegrationInstanceState:
521
562
  @property
522
563
  @pulumi.getter(name="enableProcessAutomationTrigger")
523
564
  def enable_process_automation_trigger(self) -> Optional[pulumi.Input[int]]:
565
+ """
566
+ (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
567
+ """
524
568
  return pulumi.get(self, "enable_process_automation_trigger")
525
569
 
526
570
  @enable_process_automation_trigger.setter
527
571
  def enable_process_automation_trigger(self, value: Optional[pulumi.Input[int]]):
528
572
  pulumi.set(self, "enable_process_automation_trigger", value)
529
573
 
574
+ @property
575
+ @pulumi.getter(name="extendDataRetentionTrigger")
576
+ def extend_data_retention_trigger(self) -> Optional[pulumi.Input[int]]:
577
+ """
578
+ (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
579
+ """
580
+ return pulumi.get(self, "extend_data_retention_trigger")
581
+
582
+ @extend_data_retention_trigger.setter
583
+ def extend_data_retention_trigger(self, value: Optional[pulumi.Input[int]]):
584
+ pulumi.set(self, "extend_data_retention_trigger", value)
585
+
530
586
  @property
531
587
  @pulumi.getter(name="freeformTags")
532
588
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -749,6 +805,7 @@ class IntegrationInstance(pulumi.CustomResource):
749
805
  display_name: Optional[pulumi.Input[str]] = None,
750
806
  domain_id: Optional[pulumi.Input[str]] = None,
751
807
  enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
808
+ extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
752
809
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
753
810
  idcs_at: Optional[pulumi.Input[str]] = None,
754
811
  integration_instance_type: Optional[pulumi.Input[str]] = None,
@@ -826,6 +883,8 @@ class IntegrationInstance(pulumi.CustomResource):
826
883
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
827
884
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
828
885
  :param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
886
+ :param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
887
+ :param pulumi.Input[int] extend_data_retention_trigger: (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
829
888
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
830
889
  :param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
831
890
  :param pulumi.Input[str] integration_instance_type: (Updatable) Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
@@ -927,6 +986,7 @@ class IntegrationInstance(pulumi.CustomResource):
927
986
  display_name: Optional[pulumi.Input[str]] = None,
928
987
  domain_id: Optional[pulumi.Input[str]] = None,
929
988
  enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
989
+ extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
930
990
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
931
991
  idcs_at: Optional[pulumi.Input[str]] = None,
932
992
  integration_instance_type: Optional[pulumi.Input[str]] = None,
@@ -958,6 +1018,7 @@ class IntegrationInstance(pulumi.CustomResource):
958
1018
  __props__.__dict__["display_name"] = display_name
959
1019
  __props__.__dict__["domain_id"] = domain_id
960
1020
  __props__.__dict__["enable_process_automation_trigger"] = enable_process_automation_trigger
1021
+ __props__.__dict__["extend_data_retention_trigger"] = extend_data_retention_trigger
961
1022
  __props__.__dict__["freeform_tags"] = freeform_tags
962
1023
  __props__.__dict__["idcs_at"] = None if idcs_at is None else pulumi.Output.secret(idcs_at)
963
1024
  if integration_instance_type is None and not opts.urn:
@@ -975,6 +1036,7 @@ class IntegrationInstance(pulumi.CustomResource):
975
1036
  __props__.__dict__["shape"] = shape
976
1037
  __props__.__dict__["state"] = state
977
1038
  __props__.__dict__["attachments"] = None
1039
+ __props__.__dict__["data_retention_period"] = None
978
1040
  __props__.__dict__["idcs_infos"] = None
979
1041
  __props__.__dict__["instance_url"] = None
980
1042
  __props__.__dict__["private_endpoint_outbound_connections"] = None
@@ -999,10 +1061,12 @@ class IntegrationInstance(pulumi.CustomResource):
999
1061
  compartment_id: Optional[pulumi.Input[str]] = None,
1000
1062
  consumption_model: Optional[pulumi.Input[str]] = None,
1001
1063
  custom_endpoint: Optional[pulumi.Input[Union['IntegrationInstanceCustomEndpointArgs', 'IntegrationInstanceCustomEndpointArgsDict']]] = None,
1064
+ data_retention_period: Optional[pulumi.Input[str]] = None,
1002
1065
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1003
1066
  display_name: Optional[pulumi.Input[str]] = None,
1004
1067
  domain_id: Optional[pulumi.Input[str]] = None,
1005
1068
  enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
1069
+ extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
1006
1070
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1007
1071
  idcs_at: Optional[pulumi.Input[str]] = None,
1008
1072
  idcs_infos: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstanceIdcsInfoArgs', 'IntegrationInstanceIdcsInfoArgsDict']]]]] = None,
@@ -1032,9 +1096,12 @@ class IntegrationInstance(pulumi.CustomResource):
1032
1096
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
1033
1097
  :param pulumi.Input[str] consumption_model: Optional parameter specifying which entitlement to use for billing purposes. Only required if the account possesses more than one entitlement.
1034
1098
  :param pulumi.Input[Union['IntegrationInstanceCustomEndpointArgs', 'IntegrationInstanceCustomEndpointArgsDict']] custom_endpoint: (Updatable) Details for a custom endpoint for the integration instance (update).
1099
+ :param pulumi.Input[str] data_retention_period: Data retention period set for given integration instance
1035
1100
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
1036
1101
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
1037
1102
  :param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
1103
+ :param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
1104
+ :param pulumi.Input[int] extend_data_retention_trigger: (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
1038
1105
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1039
1106
  :param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
1040
1107
  :param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstanceIdcsInfoArgs', 'IntegrationInstanceIdcsInfoArgsDict']]]] idcs_infos: Information for IDCS access
@@ -1066,10 +1133,12 @@ class IntegrationInstance(pulumi.CustomResource):
1066
1133
  __props__.__dict__["compartment_id"] = compartment_id
1067
1134
  __props__.__dict__["consumption_model"] = consumption_model
1068
1135
  __props__.__dict__["custom_endpoint"] = custom_endpoint
1136
+ __props__.__dict__["data_retention_period"] = data_retention_period
1069
1137
  __props__.__dict__["defined_tags"] = defined_tags
1070
1138
  __props__.__dict__["display_name"] = display_name
1071
1139
  __props__.__dict__["domain_id"] = domain_id
1072
1140
  __props__.__dict__["enable_process_automation_trigger"] = enable_process_automation_trigger
1141
+ __props__.__dict__["extend_data_retention_trigger"] = extend_data_retention_trigger
1073
1142
  __props__.__dict__["freeform_tags"] = freeform_tags
1074
1143
  __props__.__dict__["idcs_at"] = idcs_at
1075
1144
  __props__.__dict__["idcs_infos"] = idcs_infos
@@ -1129,6 +1198,14 @@ class IntegrationInstance(pulumi.CustomResource):
1129
1198
  """
1130
1199
  return pulumi.get(self, "custom_endpoint")
1131
1200
 
1201
+ @property
1202
+ @pulumi.getter(name="dataRetentionPeriod")
1203
+ def data_retention_period(self) -> pulumi.Output[str]:
1204
+ """
1205
+ Data retention period set for given integration instance
1206
+ """
1207
+ return pulumi.get(self, "data_retention_period")
1208
+
1132
1209
  @property
1133
1210
  @pulumi.getter(name="definedTags")
1134
1211
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
@@ -1156,8 +1233,19 @@ class IntegrationInstance(pulumi.CustomResource):
1156
1233
  @property
1157
1234
  @pulumi.getter(name="enableProcessAutomationTrigger")
1158
1235
  def enable_process_automation_trigger(self) -> pulumi.Output[Optional[int]]:
1236
+ """
1237
+ (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
1238
+ """
1159
1239
  return pulumi.get(self, "enable_process_automation_trigger")
1160
1240
 
1241
+ @property
1242
+ @pulumi.getter(name="extendDataRetentionTrigger")
1243
+ def extend_data_retention_trigger(self) -> pulumi.Output[Optional[int]]:
1244
+ """
1245
+ (Updatable) An optional property when incremented triggers Extend Data Retention. Could be set to any integer value.
1246
+ """
1247
+ return pulumi.get(self, "extend_data_retention_trigger")
1248
+
1161
1249
  @property
1162
1250
  @pulumi.getter(name="freeformTags")
1163
1251
  def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
@@ -624,7 +624,7 @@ class GetIntegrationInstanceAttachmentResult(dict):
624
624
  * If role == `CHILD`, this instance was created from attached instance on behalf of a user
625
625
  :param str target_id: The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
626
626
  :param str target_instance_url: The dataplane instance URL of the attached instance
627
- :param str target_role: The role of the target attachment.
627
+ :param str target_role: The role of the target attachment.
628
628
  * `PARENT` - The target instance is the parent of this attachment.
629
629
  * `CHILD` - The target instance is the child of this attachment.
630
630
  :param str target_service_type: The type of the target instance, such as "FUSION".
@@ -664,7 +664,7 @@ class GetIntegrationInstanceAttachmentResult(dict):
664
664
  @pulumi.getter(name="targetRole")
665
665
  def target_role(self) -> str:
666
666
  """
667
- The role of the target attachment.
667
+ The role of the target attachment.
668
668
  * `PARENT` - The target instance is the parent of this attachment.
669
669
  * `CHILD` - The target instance is the child of this attachment.
670
670
  """
@@ -947,10 +947,12 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
947
947
  compartment_id: str,
948
948
  consumption_model: str,
949
949
  custom_endpoints: Sequence['outputs.GetIntegrationInstancesIntegrationInstanceCustomEndpointResult'],
950
+ data_retention_period: str,
950
951
  defined_tags: Mapping[str, str],
951
952
  display_name: str,
952
953
  domain_id: str,
953
954
  enable_process_automation_trigger: int,
955
+ extend_data_retention_trigger: int,
954
956
  freeform_tags: Mapping[str, str],
955
957
  id: str,
956
958
  idcs_at: str,
@@ -975,13 +977,14 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
975
977
  :param str compartment_id: The ID of the compartment in which to list resources.
976
978
  :param str consumption_model: The entitlement used for billing purposes.
977
979
  :param Sequence['GetIntegrationInstancesIntegrationInstanceCustomEndpointArgs'] custom_endpoints: Details for a custom endpoint for the integration instance.
980
+ :param str data_retention_period: Data retention period set for given integration instance
978
981
  :param Mapping[str, str] defined_tags: Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
979
982
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource`
980
983
  :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
981
984
  :param str id: The Virtual Cloud Network OCID.
982
985
  :param Sequence['GetIntegrationInstancesIntegrationInstanceIdcsInfoArgs'] idcs_infos: Information for IDCS access
983
986
  :param str instance_url: The Integration Instance URL.
984
- :param str integration_instance_type: Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
987
+ :param str integration_instance_type: Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
985
988
  :param bool is_byol: Bring your own license.
986
989
  :param bool is_file_server_enabled: The file server is enabled or not.
987
990
  :param bool is_visual_builder_enabled: Visual Builder is enabled or not.
@@ -1000,10 +1003,12 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
1000
1003
  pulumi.set(__self__, "compartment_id", compartment_id)
1001
1004
  pulumi.set(__self__, "consumption_model", consumption_model)
1002
1005
  pulumi.set(__self__, "custom_endpoints", custom_endpoints)
1006
+ pulumi.set(__self__, "data_retention_period", data_retention_period)
1003
1007
  pulumi.set(__self__, "defined_tags", defined_tags)
1004
1008
  pulumi.set(__self__, "display_name", display_name)
1005
1009
  pulumi.set(__self__, "domain_id", domain_id)
1006
1010
  pulumi.set(__self__, "enable_process_automation_trigger", enable_process_automation_trigger)
1011
+ pulumi.set(__self__, "extend_data_retention_trigger", extend_data_retention_trigger)
1007
1012
  pulumi.set(__self__, "freeform_tags", freeform_tags)
1008
1013
  pulumi.set(__self__, "id", id)
1009
1014
  pulumi.set(__self__, "idcs_at", idcs_at)
@@ -1063,6 +1068,14 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
1063
1068
  """
1064
1069
  return pulumi.get(self, "custom_endpoints")
1065
1070
 
1071
+ @property
1072
+ @pulumi.getter(name="dataRetentionPeriod")
1073
+ def data_retention_period(self) -> str:
1074
+ """
1075
+ Data retention period set for given integration instance
1076
+ """
1077
+ return pulumi.get(self, "data_retention_period")
1078
+
1066
1079
  @property
1067
1080
  @pulumi.getter(name="definedTags")
1068
1081
  def defined_tags(self) -> Mapping[str, str]:
@@ -1089,6 +1102,11 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
1089
1102
  def enable_process_automation_trigger(self) -> int:
1090
1103
  return pulumi.get(self, "enable_process_automation_trigger")
1091
1104
 
1105
+ @property
1106
+ @pulumi.getter(name="extendDataRetentionTrigger")
1107
+ def extend_data_retention_trigger(self) -> int:
1108
+ return pulumi.get(self, "extend_data_retention_trigger")
1109
+
1092
1110
  @property
1093
1111
  @pulumi.getter(name="freeformTags")
1094
1112
  def freeform_tags(self) -> Mapping[str, str]:
@@ -1130,7 +1148,7 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
1130
1148
  @pulumi.getter(name="integrationInstanceType")
1131
1149
  def integration_instance_type(self) -> str:
1132
1150
  """
1133
- Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
1151
+ Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
1134
1152
  """
1135
1153
  return pulumi.get(self, "integration_instance_type")
1136
1154
 
@@ -1295,7 +1313,7 @@ class GetIntegrationInstancesIntegrationInstanceAttachmentResult(dict):
1295
1313
  * If role == `CHILD`, this instance was created from attached instance on behalf of a user
1296
1314
  :param str target_id: The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
1297
1315
  :param str target_instance_url: The dataplane instance URL of the attached instance
1298
- :param str target_role: The role of the target attachment.
1316
+ :param str target_role: The role of the target attachment.
1299
1317
  * `PARENT` - The target instance is the parent of this attachment.
1300
1318
  * `CHILD` - The target instance is the child of this attachment.
1301
1319
  :param str target_service_type: The type of the target instance, such as "FUSION".
@@ -1335,7 +1353,7 @@ class GetIntegrationInstancesIntegrationInstanceAttachmentResult(dict):
1335
1353
  @pulumi.getter(name="targetRole")
1336
1354
  def target_role(self) -> str:
1337
1355
  """
1338
- The role of the target attachment.
1356
+ The role of the target attachment.
1339
1357
  * `PARENT` - The target instance is the parent of this attachment.
1340
1358
  * `CHILD` - The target instance is the child of this attachment.
1341
1359
  """
@@ -19,6 +19,7 @@ __all__ = [
19
19
  'MysqlBackupDbSystemSnapshotArgs',
20
20
  'MysqlBackupDbSystemSnapshotBackupPolicyArgs',
21
21
  'MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs',
22
+ 'MysqlBackupDbSystemSnapshotDataStorageArgs',
22
23
  'MysqlBackupDbSystemSnapshotDeletionPolicyArgs',
23
24
  'MysqlBackupDbSystemSnapshotEndpointArgs',
24
25
  'MysqlBackupDbSystemSnapshotMaintenanceArgs',
@@ -36,6 +37,7 @@ __all__ = [
36
37
  'MysqlDbSystemChannelTargetArgs',
37
38
  'MysqlDbSystemChannelTargetFilterArgs',
38
39
  'MysqlDbSystemCurrentPlacementArgs',
40
+ 'MysqlDbSystemDataStorageArgs',
39
41
  'MysqlDbSystemDeletionPolicyArgs',
40
42
  'MysqlDbSystemEndpointArgs',
41
43
  'MysqlDbSystemHeatWaveClusterArgs',
@@ -544,6 +546,7 @@ class MysqlBackupDbSystemSnapshotArgs:
544
546
  configuration_id: Optional[pulumi.Input[str]] = None,
545
547
  crash_recovery: Optional[pulumi.Input[str]] = None,
546
548
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
549
+ data_storages: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]]] = None,
547
550
  database_management: Optional[pulumi.Input[str]] = None,
548
551
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
549
552
  deletion_policies: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDeletionPolicyArgs']]]] = None,
@@ -571,7 +574,8 @@ class MysqlBackupDbSystemSnapshotArgs:
571
574
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the backup exists in.
572
575
  :param pulumi.Input[str] configuration_id: The OCID of the Configuration to be used for Instances in this DB System.
573
576
  :param pulumi.Input[str] crash_recovery: Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
574
- :param pulumi.Input[int] data_storage_size_in_gb: Initial size of the data volume in GiBs that will be created and attached.
577
+ :param pulumi.Input[int] data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
578
+ :param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]] data_storages: Data Storage information.
575
579
  :param pulumi.Input[str] database_management: Whether to enable monitoring via the Database Management service.
576
580
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
577
581
  :param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDeletionPolicyArgs']]] deletion_policies: The Deletion policy for the DB System.
@@ -607,6 +611,8 @@ class MysqlBackupDbSystemSnapshotArgs:
607
611
  pulumi.set(__self__, "crash_recovery", crash_recovery)
608
612
  if data_storage_size_in_gb is not None:
609
613
  pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
614
+ if data_storages is not None:
615
+ pulumi.set(__self__, "data_storages", data_storages)
610
616
  if database_management is not None:
611
617
  pulumi.set(__self__, "database_management", database_management)
612
618
  if defined_tags is not None:
@@ -724,7 +730,7 @@ class MysqlBackupDbSystemSnapshotArgs:
724
730
  @pulumi.getter(name="dataStorageSizeInGb")
725
731
  def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
726
732
  """
727
- Initial size of the data volume in GiBs that will be created and attached.
733
+ DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
728
734
  """
729
735
  return pulumi.get(self, "data_storage_size_in_gb")
730
736
 
@@ -732,6 +738,18 @@ class MysqlBackupDbSystemSnapshotArgs:
732
738
  def data_storage_size_in_gb(self, value: Optional[pulumi.Input[int]]):
733
739
  pulumi.set(self, "data_storage_size_in_gb", value)
734
740
 
741
+ @property
742
+ @pulumi.getter(name="dataStorages")
743
+ def data_storages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]]]:
744
+ """
745
+ Data Storage information.
746
+ """
747
+ return pulumi.get(self, "data_storages")
748
+
749
+ @data_storages.setter
750
+ def data_storages(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]]]):
751
+ pulumi.set(self, "data_storages", value)
752
+
735
753
  @property
736
754
  @pulumi.getter(name="databaseManagement")
737
755
  def database_management(self) -> Optional[pulumi.Input[str]]:
@@ -1099,6 +1117,93 @@ class MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs:
1099
1117
  pulumi.set(self, "is_enabled", value)
1100
1118
 
1101
1119
 
1120
+ @pulumi.input_type
1121
+ class MysqlBackupDbSystemSnapshotDataStorageArgs:
1122
+ def __init__(__self__, *,
1123
+ allocated_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
1124
+ data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1125
+ data_storage_size_limit_in_gbs: Optional[pulumi.Input[int]] = None,
1126
+ is_auto_expand_storage_enabled: Optional[pulumi.Input[bool]] = None,
1127
+ max_storage_size_in_gbs: Optional[pulumi.Input[int]] = None):
1128
+ """
1129
+ :param pulumi.Input[int] allocated_storage_size_in_gbs: The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
1130
+ :param pulumi.Input[int] data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
1131
+ :param pulumi.Input[int] data_storage_size_limit_in_gbs: The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
1132
+ :param pulumi.Input[bool] is_auto_expand_storage_enabled: Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
1133
+ :param pulumi.Input[int] max_storage_size_in_gbs: Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
1134
+ """
1135
+ if allocated_storage_size_in_gbs is not None:
1136
+ pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
1137
+ if data_storage_size_in_gb is not None:
1138
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
1139
+ if data_storage_size_limit_in_gbs is not None:
1140
+ pulumi.set(__self__, "data_storage_size_limit_in_gbs", data_storage_size_limit_in_gbs)
1141
+ if is_auto_expand_storage_enabled is not None:
1142
+ pulumi.set(__self__, "is_auto_expand_storage_enabled", is_auto_expand_storage_enabled)
1143
+ if max_storage_size_in_gbs is not None:
1144
+ pulumi.set(__self__, "max_storage_size_in_gbs", max_storage_size_in_gbs)
1145
+
1146
+ @property
1147
+ @pulumi.getter(name="allocatedStorageSizeInGbs")
1148
+ def allocated_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
1149
+ """
1150
+ The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
1151
+ """
1152
+ return pulumi.get(self, "allocated_storage_size_in_gbs")
1153
+
1154
+ @allocated_storage_size_in_gbs.setter
1155
+ def allocated_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
1156
+ pulumi.set(self, "allocated_storage_size_in_gbs", value)
1157
+
1158
+ @property
1159
+ @pulumi.getter(name="dataStorageSizeInGb")
1160
+ def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
1161
+ """
1162
+ DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
1163
+ """
1164
+ return pulumi.get(self, "data_storage_size_in_gb")
1165
+
1166
+ @data_storage_size_in_gb.setter
1167
+ def data_storage_size_in_gb(self, value: Optional[pulumi.Input[int]]):
1168
+ pulumi.set(self, "data_storage_size_in_gb", value)
1169
+
1170
+ @property
1171
+ @pulumi.getter(name="dataStorageSizeLimitInGbs")
1172
+ def data_storage_size_limit_in_gbs(self) -> Optional[pulumi.Input[int]]:
1173
+ """
1174
+ The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
1175
+ """
1176
+ return pulumi.get(self, "data_storage_size_limit_in_gbs")
1177
+
1178
+ @data_storage_size_limit_in_gbs.setter
1179
+ def data_storage_size_limit_in_gbs(self, value: Optional[pulumi.Input[int]]):
1180
+ pulumi.set(self, "data_storage_size_limit_in_gbs", value)
1181
+
1182
+ @property
1183
+ @pulumi.getter(name="isAutoExpandStorageEnabled")
1184
+ def is_auto_expand_storage_enabled(self) -> Optional[pulumi.Input[bool]]:
1185
+ """
1186
+ Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
1187
+ """
1188
+ return pulumi.get(self, "is_auto_expand_storage_enabled")
1189
+
1190
+ @is_auto_expand_storage_enabled.setter
1191
+ def is_auto_expand_storage_enabled(self, value: Optional[pulumi.Input[bool]]):
1192
+ pulumi.set(self, "is_auto_expand_storage_enabled", value)
1193
+
1194
+ @property
1195
+ @pulumi.getter(name="maxStorageSizeInGbs")
1196
+ def max_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
1197
+ """
1198
+ Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
1199
+ """
1200
+ return pulumi.get(self, "max_storage_size_in_gbs")
1201
+
1202
+ @max_storage_size_in_gbs.setter
1203
+ def max_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
1204
+ pulumi.set(self, "max_storage_size_in_gbs", value)
1205
+
1206
+
1102
1207
  @pulumi.input_type
1103
1208
  class MysqlBackupDbSystemSnapshotDeletionPolicyArgs:
1104
1209
  def __init__(__self__, *,
@@ -3783,6 +3888,101 @@ class MysqlDbSystemCurrentPlacementArgs:
3783
3888
  pulumi.set(self, "fault_domain", value)
3784
3889
 
3785
3890
 
3891
+ @pulumi.input_type
3892
+ class MysqlDbSystemDataStorageArgs:
3893
+ def __init__(__self__, *,
3894
+ allocated_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
3895
+ data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
3896
+ data_storage_size_limit_in_gbs: Optional[pulumi.Input[int]] = None,
3897
+ is_auto_expand_storage_enabled: Optional[pulumi.Input[bool]] = None,
3898
+ max_storage_size_in_gbs: Optional[pulumi.Input[int]] = None):
3899
+ """
3900
+ :param pulumi.Input[int] allocated_storage_size_in_gbs: The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
3901
+ :param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
3902
+ :param pulumi.Input[int] data_storage_size_limit_in_gbs: The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
3903
+ :param pulumi.Input[bool] is_auto_expand_storage_enabled: (Updatable) Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
3904
+ :param pulumi.Input[int] max_storage_size_in_gbs: (Updatable) Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
3905
+
3906
+ DB Systems with an initial storage size of 400 GB or less can be expanded up to 32 TB. DB Systems with an initial storage size between 401-800 GB can be expanded up to 64 TB. DB Systems with an initial storage size between 801-1200 GB can be expanded up to 96 TB. DB Systems with an initial storage size of 1201 GB or more can be expanded up to 128 TB.
3907
+
3908
+ It is not possible to decrease data storage size. You cannot set the maximum data storage size to less than either current DB System dataStorageSizeInGBs or allocatedStorageSizeInGBs.
3909
+ """
3910
+ if allocated_storage_size_in_gbs is not None:
3911
+ pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
3912
+ if data_storage_size_in_gb is not None:
3913
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
3914
+ if data_storage_size_limit_in_gbs is not None:
3915
+ pulumi.set(__self__, "data_storage_size_limit_in_gbs", data_storage_size_limit_in_gbs)
3916
+ if is_auto_expand_storage_enabled is not None:
3917
+ pulumi.set(__self__, "is_auto_expand_storage_enabled", is_auto_expand_storage_enabled)
3918
+ if max_storage_size_in_gbs is not None:
3919
+ pulumi.set(__self__, "max_storage_size_in_gbs", max_storage_size_in_gbs)
3920
+
3921
+ @property
3922
+ @pulumi.getter(name="allocatedStorageSizeInGbs")
3923
+ def allocated_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
3924
+ """
3925
+ The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
3926
+ """
3927
+ return pulumi.get(self, "allocated_storage_size_in_gbs")
3928
+
3929
+ @allocated_storage_size_in_gbs.setter
3930
+ def allocated_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
3931
+ pulumi.set(self, "allocated_storage_size_in_gbs", value)
3932
+
3933
+ @property
3934
+ @pulumi.getter(name="dataStorageSizeInGb")
3935
+ def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
3936
+ """
3937
+ (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
3938
+ """
3939
+ return pulumi.get(self, "data_storage_size_in_gb")
3940
+
3941
+ @data_storage_size_in_gb.setter
3942
+ def data_storage_size_in_gb(self, value: Optional[pulumi.Input[int]]):
3943
+ pulumi.set(self, "data_storage_size_in_gb", value)
3944
+
3945
+ @property
3946
+ @pulumi.getter(name="dataStorageSizeLimitInGbs")
3947
+ def data_storage_size_limit_in_gbs(self) -> Optional[pulumi.Input[int]]:
3948
+ """
3949
+ The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
3950
+ """
3951
+ return pulumi.get(self, "data_storage_size_limit_in_gbs")
3952
+
3953
+ @data_storage_size_limit_in_gbs.setter
3954
+ def data_storage_size_limit_in_gbs(self, value: Optional[pulumi.Input[int]]):
3955
+ pulumi.set(self, "data_storage_size_limit_in_gbs", value)
3956
+
3957
+ @property
3958
+ @pulumi.getter(name="isAutoExpandStorageEnabled")
3959
+ def is_auto_expand_storage_enabled(self) -> Optional[pulumi.Input[bool]]:
3960
+ """
3961
+ (Updatable) Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
3962
+ """
3963
+ return pulumi.get(self, "is_auto_expand_storage_enabled")
3964
+
3965
+ @is_auto_expand_storage_enabled.setter
3966
+ def is_auto_expand_storage_enabled(self, value: Optional[pulumi.Input[bool]]):
3967
+ pulumi.set(self, "is_auto_expand_storage_enabled", value)
3968
+
3969
+ @property
3970
+ @pulumi.getter(name="maxStorageSizeInGbs")
3971
+ def max_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
3972
+ """
3973
+ (Updatable) Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
3974
+
3975
+ DB Systems with an initial storage size of 400 GB or less can be expanded up to 32 TB. DB Systems with an initial storage size between 401-800 GB can be expanded up to 64 TB. DB Systems with an initial storage size between 801-1200 GB can be expanded up to 96 TB. DB Systems with an initial storage size of 1201 GB or more can be expanded up to 128 TB.
3976
+
3977
+ It is not possible to decrease data storage size. You cannot set the maximum data storage size to less than either current DB System dataStorageSizeInGBs or allocatedStorageSizeInGBs.
3978
+ """
3979
+ return pulumi.get(self, "max_storage_size_in_gbs")
3980
+
3981
+ @max_storage_size_in_gbs.setter
3982
+ def max_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
3983
+ pulumi.set(self, "max_storage_size_in_gbs", value)
3984
+
3985
+
3786
3986
  @pulumi.input_type
3787
3987
  class MysqlDbSystemDeletionPolicyArgs:
3788
3988
  def __init__(__self__, *,