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.
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +25 -199
- pulumi_oci/analytics/get_analytics_instance.py +2 -51
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +12 -52
- pulumi_oci/database/get_maintenance_run.py +1 -14
- pulumi_oci/database/maintenance_run.py +7 -56
- pulumi_oci/database/outputs.py +0 -33
- pulumi_oci/disasterrecovery/_inputs.py +2 -66
- pulumi_oci/disasterrecovery/dr_protection_group.py +0 -8
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +0 -24
- pulumi_oci/disasterrecovery/outputs.py +10 -150
- pulumi_oci/integration/get_integration_instance.py +2 -25
- pulumi_oci/integration/integration_instance.py +0 -88
- pulumi_oci/integration/outputs.py +6 -24
- pulumi_oci/mysql/_inputs.py +2 -202
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +2 -15
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +0 -55
- pulumi_oci/mysql/outputs.py +10 -503
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +0 -1
- pulumi_oci/redis/_inputs.py +0 -40
- pulumi_oci/redis/get_redis_cluster.py +21 -47
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +28 -160
- pulumi_oci/redis/redis_cluster.py +79 -177
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/RECORD +32 -33
- pulumi_oci/redis/get_redis_cluster_nodes.py +0 -156
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,6 @@ 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,
|
31
30
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
31
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
33
32
|
is_file_server_enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -47,8 +46,6 @@ class IntegrationInstanceArgs:
|
|
47
46
|
:param pulumi.Input['IntegrationInstanceCustomEndpointArgs'] custom_endpoint: (Updatable) Details for a custom endpoint for the integration instance (update).
|
48
47
|
: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"}`
|
49
48
|
: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.
|
52
49
|
: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"}`
|
53
50
|
: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.
|
54
51
|
:param pulumi.Input[bool] is_file_server_enabled: (Updatable) The file server is enabled or not.
|
@@ -78,8 +75,6 @@ class IntegrationInstanceArgs:
|
|
78
75
|
pulumi.set(__self__, "domain_id", domain_id)
|
79
76
|
if enable_process_automation_trigger is not None:
|
80
77
|
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)
|
83
78
|
if freeform_tags is not None:
|
84
79
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
85
80
|
if idcs_at is not None:
|
@@ -218,27 +213,12 @@ class IntegrationInstanceArgs:
|
|
218
213
|
@property
|
219
214
|
@pulumi.getter(name="enableProcessAutomationTrigger")
|
220
215
|
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
|
-
"""
|
224
216
|
return pulumi.get(self, "enable_process_automation_trigger")
|
225
217
|
|
226
218
|
@enable_process_automation_trigger.setter
|
227
219
|
def enable_process_automation_trigger(self, value: Optional[pulumi.Input[int]]):
|
228
220
|
pulumi.set(self, "enable_process_automation_trigger", value)
|
229
221
|
|
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
|
-
|
242
222
|
@property
|
243
223
|
@pulumi.getter(name="freeformTags")
|
244
224
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -336,12 +316,10 @@ class _IntegrationInstanceState:
|
|
336
316
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
337
317
|
consumption_model: Optional[pulumi.Input[str]] = None,
|
338
318
|
custom_endpoint: Optional[pulumi.Input['IntegrationInstanceCustomEndpointArgs']] = None,
|
339
|
-
data_retention_period: Optional[pulumi.Input[str]] = None,
|
340
319
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
341
320
|
display_name: Optional[pulumi.Input[str]] = None,
|
342
321
|
domain_id: Optional[pulumi.Input[str]] = None,
|
343
322
|
enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
|
344
|
-
extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
|
345
323
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
346
324
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
347
325
|
idcs_infos: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]]] = None,
|
@@ -366,12 +344,9 @@ class _IntegrationInstanceState:
|
|
366
344
|
:param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
|
367
345
|
: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.
|
368
346
|
: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
|
370
347
|
: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"}`
|
371
348
|
:param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
|
372
349
|
: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.
|
375
350
|
: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"}`
|
376
351
|
: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.
|
377
352
|
:param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]] idcs_infos: Information for IDCS access
|
@@ -404,8 +379,6 @@ class _IntegrationInstanceState:
|
|
404
379
|
pulumi.set(__self__, "consumption_model", consumption_model)
|
405
380
|
if custom_endpoint is not None:
|
406
381
|
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)
|
409
382
|
if defined_tags is not None:
|
410
383
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
411
384
|
if display_name is not None:
|
@@ -414,8 +387,6 @@ class _IntegrationInstanceState:
|
|
414
387
|
pulumi.set(__self__, "domain_id", domain_id)
|
415
388
|
if enable_process_automation_trigger is not None:
|
416
389
|
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)
|
419
390
|
if freeform_tags is not None:
|
420
391
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
421
392
|
if idcs_at is not None:
|
@@ -511,18 +482,6 @@ class _IntegrationInstanceState:
|
|
511
482
|
def custom_endpoint(self, value: Optional[pulumi.Input['IntegrationInstanceCustomEndpointArgs']]):
|
512
483
|
pulumi.set(self, "custom_endpoint", value)
|
513
484
|
|
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
|
-
|
526
485
|
@property
|
527
486
|
@pulumi.getter(name="definedTags")
|
528
487
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -562,27 +521,12 @@ class _IntegrationInstanceState:
|
|
562
521
|
@property
|
563
522
|
@pulumi.getter(name="enableProcessAutomationTrigger")
|
564
523
|
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
|
-
"""
|
568
524
|
return pulumi.get(self, "enable_process_automation_trigger")
|
569
525
|
|
570
526
|
@enable_process_automation_trigger.setter
|
571
527
|
def enable_process_automation_trigger(self, value: Optional[pulumi.Input[int]]):
|
572
528
|
pulumi.set(self, "enable_process_automation_trigger", value)
|
573
529
|
|
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
|
-
|
586
530
|
@property
|
587
531
|
@pulumi.getter(name="freeformTags")
|
588
532
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -805,7 +749,6 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
805
749
|
display_name: Optional[pulumi.Input[str]] = None,
|
806
750
|
domain_id: Optional[pulumi.Input[str]] = None,
|
807
751
|
enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
|
808
|
-
extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
|
809
752
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
810
753
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
811
754
|
integration_instance_type: Optional[pulumi.Input[str]] = None,
|
@@ -883,8 +826,6 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
883
826
|
: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"}`
|
884
827
|
:param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
|
885
828
|
: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.
|
888
829
|
: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"}`
|
889
830
|
: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.
|
890
831
|
: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
|
@@ -986,7 +927,6 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
986
927
|
display_name: Optional[pulumi.Input[str]] = None,
|
987
928
|
domain_id: Optional[pulumi.Input[str]] = None,
|
988
929
|
enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
|
989
|
-
extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
|
990
930
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
991
931
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
992
932
|
integration_instance_type: Optional[pulumi.Input[str]] = None,
|
@@ -1018,7 +958,6 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1018
958
|
__props__.__dict__["display_name"] = display_name
|
1019
959
|
__props__.__dict__["domain_id"] = domain_id
|
1020
960
|
__props__.__dict__["enable_process_automation_trigger"] = enable_process_automation_trigger
|
1021
|
-
__props__.__dict__["extend_data_retention_trigger"] = extend_data_retention_trigger
|
1022
961
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1023
962
|
__props__.__dict__["idcs_at"] = None if idcs_at is None else pulumi.Output.secret(idcs_at)
|
1024
963
|
if integration_instance_type is None and not opts.urn:
|
@@ -1036,7 +975,6 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1036
975
|
__props__.__dict__["shape"] = shape
|
1037
976
|
__props__.__dict__["state"] = state
|
1038
977
|
__props__.__dict__["attachments"] = None
|
1039
|
-
__props__.__dict__["data_retention_period"] = None
|
1040
978
|
__props__.__dict__["idcs_infos"] = None
|
1041
979
|
__props__.__dict__["instance_url"] = None
|
1042
980
|
__props__.__dict__["private_endpoint_outbound_connections"] = None
|
@@ -1061,12 +999,10 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1061
999
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1062
1000
|
consumption_model: Optional[pulumi.Input[str]] = None,
|
1063
1001
|
custom_endpoint: Optional[pulumi.Input[Union['IntegrationInstanceCustomEndpointArgs', 'IntegrationInstanceCustomEndpointArgsDict']]] = None,
|
1064
|
-
data_retention_period: Optional[pulumi.Input[str]] = None,
|
1065
1002
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1066
1003
|
display_name: Optional[pulumi.Input[str]] = None,
|
1067
1004
|
domain_id: Optional[pulumi.Input[str]] = None,
|
1068
1005
|
enable_process_automation_trigger: Optional[pulumi.Input[int]] = None,
|
1069
|
-
extend_data_retention_trigger: Optional[pulumi.Input[int]] = None,
|
1070
1006
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1071
1007
|
idcs_at: Optional[pulumi.Input[str]] = None,
|
1072
1008
|
idcs_infos: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstanceIdcsInfoArgs', 'IntegrationInstanceIdcsInfoArgsDict']]]]] = None,
|
@@ -1096,12 +1032,9 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1096
1032
|
:param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
|
1097
1033
|
: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.
|
1098
1034
|
: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
|
1100
1035
|
: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"}`
|
1101
1036
|
:param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
|
1102
1037
|
: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.
|
1105
1038
|
: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"}`
|
1106
1039
|
: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.
|
1107
1040
|
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationInstanceIdcsInfoArgs', 'IntegrationInstanceIdcsInfoArgsDict']]]] idcs_infos: Information for IDCS access
|
@@ -1133,12 +1066,10 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1133
1066
|
__props__.__dict__["compartment_id"] = compartment_id
|
1134
1067
|
__props__.__dict__["consumption_model"] = consumption_model
|
1135
1068
|
__props__.__dict__["custom_endpoint"] = custom_endpoint
|
1136
|
-
__props__.__dict__["data_retention_period"] = data_retention_period
|
1137
1069
|
__props__.__dict__["defined_tags"] = defined_tags
|
1138
1070
|
__props__.__dict__["display_name"] = display_name
|
1139
1071
|
__props__.__dict__["domain_id"] = domain_id
|
1140
1072
|
__props__.__dict__["enable_process_automation_trigger"] = enable_process_automation_trigger
|
1141
|
-
__props__.__dict__["extend_data_retention_trigger"] = extend_data_retention_trigger
|
1142
1073
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1143
1074
|
__props__.__dict__["idcs_at"] = idcs_at
|
1144
1075
|
__props__.__dict__["idcs_infos"] = idcs_infos
|
@@ -1198,14 +1129,6 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1198
1129
|
"""
|
1199
1130
|
return pulumi.get(self, "custom_endpoint")
|
1200
1131
|
|
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
|
-
|
1209
1132
|
@property
|
1210
1133
|
@pulumi.getter(name="definedTags")
|
1211
1134
|
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
@@ -1233,19 +1156,8 @@ class IntegrationInstance(pulumi.CustomResource):
|
|
1233
1156
|
@property
|
1234
1157
|
@pulumi.getter(name="enableProcessAutomationTrigger")
|
1235
1158
|
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
|
-
"""
|
1239
1159
|
return pulumi.get(self, "enable_process_automation_trigger")
|
1240
1160
|
|
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
|
-
|
1249
1161
|
@property
|
1250
1162
|
@pulumi.getter(name="freeformTags")
|
1251
1163
|
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,12 +947,10 @@ 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,
|
951
950
|
defined_tags: Mapping[str, str],
|
952
951
|
display_name: str,
|
953
952
|
domain_id: str,
|
954
953
|
enable_process_automation_trigger: int,
|
955
|
-
extend_data_retention_trigger: int,
|
956
954
|
freeform_tags: Mapping[str, str],
|
957
955
|
id: str,
|
958
956
|
idcs_at: str,
|
@@ -977,14 +975,13 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
977
975
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
978
976
|
:param str consumption_model: The entitlement used for billing purposes.
|
979
977
|
: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
|
981
978
|
:param Mapping[str, str] defined_tags: Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
|
982
979
|
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource`
|
983
980
|
: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"}`
|
984
981
|
:param str id: The Virtual Cloud Network OCID.
|
985
982
|
:param Sequence['GetIntegrationInstancesIntegrationInstanceIdcsInfoArgs'] idcs_infos: Information for IDCS access
|
986
983
|
:param str instance_url: The Integration Instance URL.
|
987
|
-
:param str integration_instance_type: Standard or Enterprise type,
|
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
|
988
985
|
:param bool is_byol: Bring your own license.
|
989
986
|
:param bool is_file_server_enabled: The file server is enabled or not.
|
990
987
|
:param bool is_visual_builder_enabled: Visual Builder is enabled or not.
|
@@ -1003,12 +1000,10 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1003
1000
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
1004
1001
|
pulumi.set(__self__, "consumption_model", consumption_model)
|
1005
1002
|
pulumi.set(__self__, "custom_endpoints", custom_endpoints)
|
1006
|
-
pulumi.set(__self__, "data_retention_period", data_retention_period)
|
1007
1003
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
1008
1004
|
pulumi.set(__self__, "display_name", display_name)
|
1009
1005
|
pulumi.set(__self__, "domain_id", domain_id)
|
1010
1006
|
pulumi.set(__self__, "enable_process_automation_trigger", enable_process_automation_trigger)
|
1011
|
-
pulumi.set(__self__, "extend_data_retention_trigger", extend_data_retention_trigger)
|
1012
1007
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
1013
1008
|
pulumi.set(__self__, "id", id)
|
1014
1009
|
pulumi.set(__self__, "idcs_at", idcs_at)
|
@@ -1068,14 +1063,6 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1068
1063
|
"""
|
1069
1064
|
return pulumi.get(self, "custom_endpoints")
|
1070
1065
|
|
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
|
-
|
1079
1066
|
@property
|
1080
1067
|
@pulumi.getter(name="definedTags")
|
1081
1068
|
def defined_tags(self) -> Mapping[str, str]:
|
@@ -1102,11 +1089,6 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1102
1089
|
def enable_process_automation_trigger(self) -> int:
|
1103
1090
|
return pulumi.get(self, "enable_process_automation_trigger")
|
1104
1091
|
|
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
|
-
|
1110
1092
|
@property
|
1111
1093
|
@pulumi.getter(name="freeformTags")
|
1112
1094
|
def freeform_tags(self) -> Mapping[str, str]:
|
@@ -1148,7 +1130,7 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
|
|
1148
1130
|
@pulumi.getter(name="integrationInstanceType")
|
1149
1131
|
def integration_instance_type(self) -> str:
|
1150
1132
|
"""
|
1151
|
-
Standard or Enterprise type,
|
1133
|
+
Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
|
1152
1134
|
"""
|
1153
1135
|
return pulumi.get(self, "integration_instance_type")
|
1154
1136
|
|
@@ -1313,7 +1295,7 @@ class GetIntegrationInstancesIntegrationInstanceAttachmentResult(dict):
|
|
1313
1295
|
* If role == `CHILD`, this instance was created from attached instance on behalf of a user
|
1314
1296
|
: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.
|
1315
1297
|
:param str target_instance_url: The dataplane instance URL of the attached instance
|
1316
|
-
:param str target_role: The role of the target attachment.
|
1298
|
+
:param str target_role: The role of the target attachment.
|
1317
1299
|
* `PARENT` - The target instance is the parent of this attachment.
|
1318
1300
|
* `CHILD` - The target instance is the child of this attachment.
|
1319
1301
|
:param str target_service_type: The type of the target instance, such as "FUSION".
|
@@ -1353,7 +1335,7 @@ class GetIntegrationInstancesIntegrationInstanceAttachmentResult(dict):
|
|
1353
1335
|
@pulumi.getter(name="targetRole")
|
1354
1336
|
def target_role(self) -> str:
|
1355
1337
|
"""
|
1356
|
-
The role of the target attachment.
|
1338
|
+
The role of the target attachment.
|
1357
1339
|
* `PARENT` - The target instance is the parent of this attachment.
|
1358
1340
|
* `CHILD` - The target instance is the child of this attachment.
|
1359
1341
|
"""
|
pulumi_oci/mysql/_inputs.py
CHANGED
@@ -19,7 +19,6 @@ __all__ = [
|
|
19
19
|
'MysqlBackupDbSystemSnapshotArgs',
|
20
20
|
'MysqlBackupDbSystemSnapshotBackupPolicyArgs',
|
21
21
|
'MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs',
|
22
|
-
'MysqlBackupDbSystemSnapshotDataStorageArgs',
|
23
22
|
'MysqlBackupDbSystemSnapshotDeletionPolicyArgs',
|
24
23
|
'MysqlBackupDbSystemSnapshotEndpointArgs',
|
25
24
|
'MysqlBackupDbSystemSnapshotMaintenanceArgs',
|
@@ -37,7 +36,6 @@ __all__ = [
|
|
37
36
|
'MysqlDbSystemChannelTargetArgs',
|
38
37
|
'MysqlDbSystemChannelTargetFilterArgs',
|
39
38
|
'MysqlDbSystemCurrentPlacementArgs',
|
40
|
-
'MysqlDbSystemDataStorageArgs',
|
41
39
|
'MysqlDbSystemDeletionPolicyArgs',
|
42
40
|
'MysqlDbSystemEndpointArgs',
|
43
41
|
'MysqlDbSystemHeatWaveClusterArgs',
|
@@ -546,7 +544,6 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
546
544
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
547
545
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
548
546
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
549
|
-
data_storages: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]]] = None,
|
550
547
|
database_management: Optional[pulumi.Input[str]] = None,
|
551
548
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
552
549
|
deletion_policies: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDeletionPolicyArgs']]]] = None,
|
@@ -574,8 +571,7 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
574
571
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the backup exists in.
|
575
572
|
:param pulumi.Input[str] configuration_id: The OCID of the Configuration to be used for Instances in this DB System.
|
576
573
|
: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.
|
577
|
-
:param pulumi.Input[int] data_storage_size_in_gb:
|
578
|
-
:param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]] data_storages: Data Storage information.
|
574
|
+
:param pulumi.Input[int] data_storage_size_in_gb: Initial size of the data volume in GiBs that will be created and attached.
|
579
575
|
:param pulumi.Input[str] database_management: Whether to enable monitoring via the Database Management service.
|
580
576
|
: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"}`
|
581
577
|
:param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDeletionPolicyArgs']]] deletion_policies: The Deletion policy for the DB System.
|
@@ -611,8 +607,6 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
611
607
|
pulumi.set(__self__, "crash_recovery", crash_recovery)
|
612
608
|
if data_storage_size_in_gb is not None:
|
613
609
|
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)
|
616
610
|
if database_management is not None:
|
617
611
|
pulumi.set(__self__, "database_management", database_management)
|
618
612
|
if defined_tags is not None:
|
@@ -730,7 +724,7 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
730
724
|
@pulumi.getter(name="dataStorageSizeInGb")
|
731
725
|
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
732
726
|
"""
|
733
|
-
|
727
|
+
Initial size of the data volume in GiBs that will be created and attached.
|
734
728
|
"""
|
735
729
|
return pulumi.get(self, "data_storage_size_in_gb")
|
736
730
|
|
@@ -738,18 +732,6 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
738
732
|
def data_storage_size_in_gb(self, value: Optional[pulumi.Input[int]]):
|
739
733
|
pulumi.set(self, "data_storage_size_in_gb", value)
|
740
734
|
|
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
|
-
|
753
735
|
@property
|
754
736
|
@pulumi.getter(name="databaseManagement")
|
755
737
|
def database_management(self) -> Optional[pulumi.Input[str]]:
|
@@ -1117,93 +1099,6 @@ class MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs:
|
|
1117
1099
|
pulumi.set(self, "is_enabled", value)
|
1118
1100
|
|
1119
1101
|
|
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
|
-
|
1207
1102
|
@pulumi.input_type
|
1208
1103
|
class MysqlBackupDbSystemSnapshotDeletionPolicyArgs:
|
1209
1104
|
def __init__(__self__, *,
|
@@ -3888,101 +3783,6 @@ class MysqlDbSystemCurrentPlacementArgs:
|
|
3888
3783
|
pulumi.set(self, "fault_domain", value)
|
3889
3784
|
|
3890
3785
|
|
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
|
-
|
3986
3786
|
@pulumi.input_type
|
3987
3787
|
class MysqlDbSystemDeletionPolicyArgs:
|
3988
3788
|
def __init__(__self__, *,
|