pulumi-oci 2.20.0a1734503093__py3-none-any.whl → 2.21.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +16 -0
- pulumi_oci/bigdataservice/__init__.py +4 -0
- pulumi_oci/bigdataservice/_inputs.py +672 -6
- pulumi_oci/bigdataservice/bds_instance.py +169 -7
- pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
- pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
- pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
- pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
- pulumi_oci/bigdataservice/outputs.py +1466 -98
- pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
- pulumi_oci/blockchain/outputs.py +2 -2
- pulumi_oci/core/_inputs.py +271 -21
- pulumi_oci/core/get_instance.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/get_private_ip.py +12 -1
- pulumi_oci/core/get_virtual_circuit.py +1 -1
- pulumi_oci/core/get_vnic.py +12 -1
- pulumi_oci/core/instance.py +47 -0
- pulumi_oci/core/instance_configuration.py +16 -0
- pulumi_oci/core/ipv6.py +52 -3
- pulumi_oci/core/outputs.py +566 -52
- pulumi_oci/core/private_ip.py +49 -0
- pulumi_oci/core/virtual_circuit.py +4 -4
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +104 -0
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +22 -0
- pulumi_oci/datascience/_inputs.py +32 -12
- pulumi_oci/datascience/get_job_run.py +3 -3
- pulumi_oci/datascience/get_job_runs.py +2 -2
- pulumi_oci/datascience/job_run.py +7 -7
- pulumi_oci/datascience/model_deployment.py +2 -0
- pulumi_oci/datascience/outputs.py +62 -26
- pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
- pulumi_oci/goldengate/__init__.py +7 -0
- pulumi_oci/goldengate/_inputs.py +665 -0
- pulumi_oci/goldengate/connection.py +7 -7
- pulumi_oci/goldengate/get_pipeline.py +408 -0
- pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
- pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
- pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
- pulumi_oci/goldengate/get_pipelines.py +213 -0
- pulumi_oci/goldengate/get_recipes.py +188 -0
- pulumi_oci/goldengate/get_trail_files.py +4 -2
- pulumi_oci/goldengate/get_trail_sequences.py +4 -2
- pulumi_oci/goldengate/outputs.py +1500 -0
- pulumi_oci/goldengate/pipeline.py +928 -0
- pulumi_oci/opensearch/_inputs.py +312 -0
- pulumi_oci/opensearch/cluster.py +289 -104
- pulumi_oci/opensearch/get_opensearch_cluster.py +84 -2
- pulumi_oci/opensearch/get_opensearch_clusters.py +1 -1
- pulumi_oci/opensearch/outputs.py +678 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/_inputs.py +94 -14
- pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
- pulumi_oci/stackmonitoring/metric_extension.py +8 -0
- pulumi_oci/stackmonitoring/outputs.py +166 -24
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0.dist-info}/METADATA +10 -4
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0.dist-info}/RECORD +66 -55
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0.dist-info}/top_level.txt +0 -0
pulumi_oci/core/private_ip.py
CHANGED
@@ -24,6 +24,7 @@ class PrivateIpArgs:
|
|
24
24
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
25
25
|
hostname_label: Optional[pulumi.Input[str]] = None,
|
26
26
|
ip_address: Optional[pulumi.Input[str]] = None,
|
27
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
27
28
|
vlan_id: Optional[pulumi.Input[str]] = None,
|
28
29
|
vnic_id: Optional[pulumi.Input[str]] = None):
|
29
30
|
"""
|
@@ -37,6 +38,7 @@ class PrivateIpArgs:
|
|
37
38
|
|
38
39
|
Example: `bminstance1`
|
39
40
|
:param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
|
41
|
+
:param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
40
42
|
:param pulumi.Input[str] vlan_id: Use this attribute only with the Oracle Cloud VMware Solution.
|
41
43
|
|
42
44
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN from which the private IP is to be drawn. The IP address, *if supplied*, must be valid for the given VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
@@ -56,6 +58,8 @@ class PrivateIpArgs:
|
|
56
58
|
pulumi.set(__self__, "hostname_label", hostname_label)
|
57
59
|
if ip_address is not None:
|
58
60
|
pulumi.set(__self__, "ip_address", ip_address)
|
61
|
+
if route_table_id is not None:
|
62
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
59
63
|
if vlan_id is not None:
|
60
64
|
pulumi.set(__self__, "vlan_id", vlan_id)
|
61
65
|
if vnic_id is not None:
|
@@ -125,6 +129,18 @@ class PrivateIpArgs:
|
|
125
129
|
def ip_address(self, value: Optional[pulumi.Input[str]]):
|
126
130
|
pulumi.set(self, "ip_address", value)
|
127
131
|
|
132
|
+
@property
|
133
|
+
@pulumi.getter(name="routeTableId")
|
134
|
+
def route_table_id(self) -> Optional[pulumi.Input[str]]:
|
135
|
+
"""
|
136
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "route_table_id")
|
139
|
+
|
140
|
+
@route_table_id.setter
|
141
|
+
def route_table_id(self, value: Optional[pulumi.Input[str]]):
|
142
|
+
pulumi.set(self, "route_table_id", value)
|
143
|
+
|
128
144
|
@property
|
129
145
|
@pulumi.getter(name="vlanId")
|
130
146
|
def vlan_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -168,6 +184,7 @@ class _PrivateIpState:
|
|
168
184
|
ip_address: Optional[pulumi.Input[str]] = None,
|
169
185
|
is_primary: Optional[pulumi.Input[bool]] = None,
|
170
186
|
is_reserved: Optional[pulumi.Input[bool]] = None,
|
187
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
171
188
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
172
189
|
time_created: Optional[pulumi.Input[str]] = None,
|
173
190
|
vlan_id: Optional[pulumi.Input[str]] = None,
|
@@ -187,6 +204,7 @@ class _PrivateIpState:
|
|
187
204
|
:param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
|
188
205
|
:param pulumi.Input[bool] is_primary: Whether this private IP is the primary one on the VNIC. Primary private IPs are unassigned and deleted automatically when the VNIC is terminated. Example: `true`
|
189
206
|
:param pulumi.Input[bool] is_reserved: true if the IP is reserved and can exist detached from vnic
|
207
|
+
:param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
190
208
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the VNIC is in.
|
191
209
|
:param pulumi.Input[str] time_created: The date and time the private IP was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
192
210
|
:param pulumi.Input[str] vlan_id: Use this attribute only with the Oracle Cloud VMware Solution.
|
@@ -216,6 +234,8 @@ class _PrivateIpState:
|
|
216
234
|
pulumi.set(__self__, "is_primary", is_primary)
|
217
235
|
if is_reserved is not None:
|
218
236
|
pulumi.set(__self__, "is_reserved", is_reserved)
|
237
|
+
if route_table_id is not None:
|
238
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
219
239
|
if subnet_id is not None:
|
220
240
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
221
241
|
if time_created is not None:
|
@@ -337,6 +357,18 @@ class _PrivateIpState:
|
|
337
357
|
def is_reserved(self, value: Optional[pulumi.Input[bool]]):
|
338
358
|
pulumi.set(self, "is_reserved", value)
|
339
359
|
|
360
|
+
@property
|
361
|
+
@pulumi.getter(name="routeTableId")
|
362
|
+
def route_table_id(self) -> Optional[pulumi.Input[str]]:
|
363
|
+
"""
|
364
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
365
|
+
"""
|
366
|
+
return pulumi.get(self, "route_table_id")
|
367
|
+
|
368
|
+
@route_table_id.setter
|
369
|
+
def route_table_id(self, value: Optional[pulumi.Input[str]]):
|
370
|
+
pulumi.set(self, "route_table_id", value)
|
371
|
+
|
340
372
|
@property
|
341
373
|
@pulumi.getter(name="subnetId")
|
342
374
|
def subnet_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -402,6 +434,7 @@ class PrivateIp(pulumi.CustomResource):
|
|
402
434
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
403
435
|
hostname_label: Optional[pulumi.Input[str]] = None,
|
404
436
|
ip_address: Optional[pulumi.Input[str]] = None,
|
437
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
405
438
|
vlan_id: Optional[pulumi.Input[str]] = None,
|
406
439
|
vnic_id: Optional[pulumi.Input[str]] = None,
|
407
440
|
__props__=None):
|
@@ -428,6 +461,7 @@ class PrivateIp(pulumi.CustomResource):
|
|
428
461
|
},
|
429
462
|
hostname_label=private_ip_hostname_label,
|
430
463
|
ip_address=private_ip_ip_address,
|
464
|
+
route_table_id=test_route_table["id"],
|
431
465
|
vlan_id=test_vlan["id"],
|
432
466
|
vnic_id=test_vnic_attachment["vnicId"])
|
433
467
|
```
|
@@ -451,6 +485,7 @@ class PrivateIp(pulumi.CustomResource):
|
|
451
485
|
|
452
486
|
Example: `bminstance1`
|
453
487
|
:param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
|
488
|
+
:param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
454
489
|
:param pulumi.Input[str] vlan_id: Use this attribute only with the Oracle Cloud VMware Solution.
|
455
490
|
|
456
491
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN from which the private IP is to be drawn. The IP address, *if supplied*, must be valid for the given VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
@@ -489,6 +524,7 @@ class PrivateIp(pulumi.CustomResource):
|
|
489
524
|
},
|
490
525
|
hostname_label=private_ip_hostname_label,
|
491
526
|
ip_address=private_ip_ip_address,
|
527
|
+
route_table_id=test_route_table["id"],
|
492
528
|
vlan_id=test_vlan["id"],
|
493
529
|
vnic_id=test_vnic_attachment["vnicId"])
|
494
530
|
```
|
@@ -521,6 +557,7 @@ class PrivateIp(pulumi.CustomResource):
|
|
521
557
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
522
558
|
hostname_label: Optional[pulumi.Input[str]] = None,
|
523
559
|
ip_address: Optional[pulumi.Input[str]] = None,
|
560
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
524
561
|
vlan_id: Optional[pulumi.Input[str]] = None,
|
525
562
|
vnic_id: Optional[pulumi.Input[str]] = None,
|
526
563
|
__props__=None):
|
@@ -537,6 +574,7 @@ class PrivateIp(pulumi.CustomResource):
|
|
537
574
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
538
575
|
__props__.__dict__["hostname_label"] = hostname_label
|
539
576
|
__props__.__dict__["ip_address"] = ip_address
|
577
|
+
__props__.__dict__["route_table_id"] = route_table_id
|
540
578
|
__props__.__dict__["vlan_id"] = vlan_id
|
541
579
|
__props__.__dict__["vnic_id"] = vnic_id
|
542
580
|
__props__.__dict__["availability_domain"] = None
|
@@ -564,6 +602,7 @@ class PrivateIp(pulumi.CustomResource):
|
|
564
602
|
ip_address: Optional[pulumi.Input[str]] = None,
|
565
603
|
is_primary: Optional[pulumi.Input[bool]] = None,
|
566
604
|
is_reserved: Optional[pulumi.Input[bool]] = None,
|
605
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
567
606
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
568
607
|
time_created: Optional[pulumi.Input[str]] = None,
|
569
608
|
vlan_id: Optional[pulumi.Input[str]] = None,
|
@@ -588,6 +627,7 @@ class PrivateIp(pulumi.CustomResource):
|
|
588
627
|
:param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
|
589
628
|
:param pulumi.Input[bool] is_primary: Whether this private IP is the primary one on the VNIC. Primary private IPs are unassigned and deleted automatically when the VNIC is terminated. Example: `true`
|
590
629
|
:param pulumi.Input[bool] is_reserved: true if the IP is reserved and can exist detached from vnic
|
630
|
+
:param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
591
631
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the VNIC is in.
|
592
632
|
:param pulumi.Input[str] time_created: The date and time the private IP was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
593
633
|
:param pulumi.Input[str] vlan_id: Use this attribute only with the Oracle Cloud VMware Solution.
|
@@ -612,6 +652,7 @@ class PrivateIp(pulumi.CustomResource):
|
|
612
652
|
__props__.__dict__["ip_address"] = ip_address
|
613
653
|
__props__.__dict__["is_primary"] = is_primary
|
614
654
|
__props__.__dict__["is_reserved"] = is_reserved
|
655
|
+
__props__.__dict__["route_table_id"] = route_table_id
|
615
656
|
__props__.__dict__["subnet_id"] = subnet_id
|
616
657
|
__props__.__dict__["time_created"] = time_created
|
617
658
|
__props__.__dict__["vlan_id"] = vlan_id
|
@@ -694,6 +735,14 @@ class PrivateIp(pulumi.CustomResource):
|
|
694
735
|
"""
|
695
736
|
return pulumi.get(self, "is_reserved")
|
696
737
|
|
738
|
+
@property
|
739
|
+
@pulumi.getter(name="routeTableId")
|
740
|
+
def route_table_id(self) -> pulumi.Output[Optional[str]]:
|
741
|
+
"""
|
742
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
743
|
+
"""
|
744
|
+
return pulumi.get(self, "route_table_id")
|
745
|
+
|
697
746
|
@property
|
698
747
|
@pulumi.getter(name="subnetId")
|
699
748
|
def subnet_id(self) -> pulumi.Output[str]:
|
@@ -406,7 +406,7 @@ class _VirtualCircuitState:
|
|
406
406
|
|
407
407
|
** IMPORTANT **
|
408
408
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
409
|
-
:param pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]] virtual_circuit_redundancy_metadatas:
|
409
|
+
:param pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]] virtual_circuit_redundancy_metadatas: This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
|
410
410
|
"""
|
411
411
|
if bandwidth_shape_name is not None:
|
412
412
|
pulumi.set(__self__, "bandwidth_shape_name", bandwidth_shape_name)
|
@@ -819,7 +819,7 @@ class _VirtualCircuitState:
|
|
819
819
|
@pulumi.getter(name="virtualCircuitRedundancyMetadatas")
|
820
820
|
def virtual_circuit_redundancy_metadatas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]]]:
|
821
821
|
"""
|
822
|
-
|
822
|
+
This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
|
823
823
|
"""
|
824
824
|
return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
|
825
825
|
|
@@ -1189,7 +1189,7 @@ class VirtualCircuit(pulumi.CustomResource):
|
|
1189
1189
|
|
1190
1190
|
** IMPORTANT **
|
1191
1191
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1192
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['VirtualCircuitVirtualCircuitRedundancyMetadataArgs', 'VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict']]]] virtual_circuit_redundancy_metadatas:
|
1192
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['VirtualCircuitVirtualCircuitRedundancyMetadataArgs', 'VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict']]]] virtual_circuit_redundancy_metadatas: This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
|
1193
1193
|
"""
|
1194
1194
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1195
1195
|
|
@@ -1460,7 +1460,7 @@ class VirtualCircuit(pulumi.CustomResource):
|
|
1460
1460
|
@pulumi.getter(name="virtualCircuitRedundancyMetadatas")
|
1461
1461
|
def virtual_circuit_redundancy_metadatas(self) -> pulumi.Output[Sequence['outputs.VirtualCircuitVirtualCircuitRedundancyMetadata']]:
|
1462
1462
|
"""
|
1463
|
-
|
1463
|
+
This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
|
1464
1464
|
"""
|
1465
1465
|
return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
|
1466
1466
|
|
@@ -56,6 +56,7 @@ class AutonomousDatabaseArgs:
|
|
56
56
|
is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
|
57
57
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
58
58
|
is_auto_scaling_for_storage_enabled: Optional[pulumi.Input[bool]] = None,
|
59
|
+
is_backup_retention_locked: Optional[pulumi.Input[bool]] = None,
|
59
60
|
is_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
|
60
61
|
is_dedicated: Optional[pulumi.Input[bool]] = None,
|
61
62
|
is_dev_tier: Optional[pulumi.Input[bool]] = None,
|
@@ -168,6 +169,7 @@ class AutonomousDatabaseArgs:
|
|
168
169
|
This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform. For Autonomous Database Serverless instances, `whitelistedIps` is used.
|
169
170
|
:param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database CPU core count. The default value is `TRUE`.
|
170
171
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
172
|
+
:param pulumi.Input[bool] is_backup_retention_locked: (Updatable) True if the Autonomous Database is backup retention locked.
|
171
173
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
172
174
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
173
175
|
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
@@ -332,6 +334,8 @@ class AutonomousDatabaseArgs:
|
|
332
334
|
pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
|
333
335
|
if is_auto_scaling_for_storage_enabled is not None:
|
334
336
|
pulumi.set(__self__, "is_auto_scaling_for_storage_enabled", is_auto_scaling_for_storage_enabled)
|
337
|
+
if is_backup_retention_locked is not None:
|
338
|
+
pulumi.set(__self__, "is_backup_retention_locked", is_backup_retention_locked)
|
335
339
|
if is_data_guard_enabled is not None:
|
336
340
|
pulumi.set(__self__, "is_data_guard_enabled", is_data_guard_enabled)
|
337
341
|
if is_dedicated is not None:
|
@@ -876,6 +880,18 @@ class AutonomousDatabaseArgs:
|
|
876
880
|
def is_auto_scaling_for_storage_enabled(self, value: Optional[pulumi.Input[bool]]):
|
877
881
|
pulumi.set(self, "is_auto_scaling_for_storage_enabled", value)
|
878
882
|
|
883
|
+
@property
|
884
|
+
@pulumi.getter(name="isBackupRetentionLocked")
|
885
|
+
def is_backup_retention_locked(self) -> Optional[pulumi.Input[bool]]:
|
886
|
+
"""
|
887
|
+
(Updatable) True if the Autonomous Database is backup retention locked.
|
888
|
+
"""
|
889
|
+
return pulumi.get(self, "is_backup_retention_locked")
|
890
|
+
|
891
|
+
@is_backup_retention_locked.setter
|
892
|
+
def is_backup_retention_locked(self, value: Optional[pulumi.Input[bool]]):
|
893
|
+
pulumi.set(self, "is_backup_retention_locked", value)
|
894
|
+
|
879
895
|
@property
|
880
896
|
@pulumi.getter(name="isDataGuardEnabled")
|
881
897
|
def is_data_guard_enabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -1541,6 +1557,7 @@ class _AutonomousDatabaseState:
|
|
1541
1557
|
is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
|
1542
1558
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
1543
1559
|
is_auto_scaling_for_storage_enabled: Optional[pulumi.Input[bool]] = None,
|
1560
|
+
is_backup_retention_locked: Optional[pulumi.Input[bool]] = None,
|
1544
1561
|
is_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
|
1545
1562
|
is_dedicated: Optional[pulumi.Input[bool]] = None,
|
1546
1563
|
is_dev_tier: Optional[pulumi.Input[bool]] = None,
|
@@ -1713,6 +1730,7 @@ class _AutonomousDatabaseState:
|
|
1713
1730
|
This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform. For Autonomous Database Serverless instances, `whitelistedIps` is used.
|
1714
1731
|
:param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database CPU core count. The default value is `TRUE`.
|
1715
1732
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
1733
|
+
:param pulumi.Input[bool] is_backup_retention_locked: (Updatable) True if the Autonomous Database is backup retention locked.
|
1716
1734
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
1717
1735
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
1718
1736
|
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
@@ -1952,6 +1970,8 @@ class _AutonomousDatabaseState:
|
|
1952
1970
|
pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
|
1953
1971
|
if is_auto_scaling_for_storage_enabled is not None:
|
1954
1972
|
pulumi.set(__self__, "is_auto_scaling_for_storage_enabled", is_auto_scaling_for_storage_enabled)
|
1973
|
+
if is_backup_retention_locked is not None:
|
1974
|
+
pulumi.set(__self__, "is_backup_retention_locked", is_backup_retention_locked)
|
1955
1975
|
if is_data_guard_enabled is not None:
|
1956
1976
|
pulumi.set(__self__, "is_data_guard_enabled", is_data_guard_enabled)
|
1957
1977
|
if is_dedicated is not None:
|
@@ -2766,6 +2786,18 @@ class _AutonomousDatabaseState:
|
|
2766
2786
|
def is_auto_scaling_for_storage_enabled(self, value: Optional[pulumi.Input[bool]]):
|
2767
2787
|
pulumi.set(self, "is_auto_scaling_for_storage_enabled", value)
|
2768
2788
|
|
2789
|
+
@property
|
2790
|
+
@pulumi.getter(name="isBackupRetentionLocked")
|
2791
|
+
def is_backup_retention_locked(self) -> Optional[pulumi.Input[bool]]:
|
2792
|
+
"""
|
2793
|
+
(Updatable) True if the Autonomous Database is backup retention locked.
|
2794
|
+
"""
|
2795
|
+
return pulumi.get(self, "is_backup_retention_locked")
|
2796
|
+
|
2797
|
+
@is_backup_retention_locked.setter
|
2798
|
+
def is_backup_retention_locked(self, value: Optional[pulumi.Input[bool]]):
|
2799
|
+
pulumi.set(self, "is_backup_retention_locked", value)
|
2800
|
+
|
2769
2801
|
@property
|
2770
2802
|
@pulumi.getter(name="isDataGuardEnabled")
|
2771
2803
|
def is_data_guard_enabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -3952,6 +3984,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3952
3984
|
is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
|
3953
3985
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
3954
3986
|
is_auto_scaling_for_storage_enabled: Optional[pulumi.Input[bool]] = None,
|
3987
|
+
is_backup_retention_locked: Optional[pulumi.Input[bool]] = None,
|
3955
3988
|
is_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
|
3956
3989
|
is_dedicated: Optional[pulumi.Input[bool]] = None,
|
3957
3990
|
is_dev_tier: Optional[pulumi.Input[bool]] = None,
|
@@ -4080,6 +4113,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4080
4113
|
This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform. For Autonomous Database Serverless instances, `whitelistedIps` is used.
|
4081
4114
|
:param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database CPU core count. The default value is `TRUE`.
|
4082
4115
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
4116
|
+
:param pulumi.Input[bool] is_backup_retention_locked: (Updatable) True if the Autonomous Database is backup retention locked.
|
4083
4117
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
4084
4118
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
4085
4119
|
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
@@ -4247,6 +4281,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4247
4281
|
is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
|
4248
4282
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
4249
4283
|
is_auto_scaling_for_storage_enabled: Optional[pulumi.Input[bool]] = None,
|
4284
|
+
is_backup_retention_locked: Optional[pulumi.Input[bool]] = None,
|
4250
4285
|
is_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
|
4251
4286
|
is_dedicated: Optional[pulumi.Input[bool]] = None,
|
4252
4287
|
is_dev_tier: Optional[pulumi.Input[bool]] = None,
|
@@ -4342,6 +4377,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4342
4377
|
__props__.__dict__["is_access_control_enabled"] = is_access_control_enabled
|
4343
4378
|
__props__.__dict__["is_auto_scaling_enabled"] = is_auto_scaling_enabled
|
4344
4379
|
__props__.__dict__["is_auto_scaling_for_storage_enabled"] = is_auto_scaling_for_storage_enabled
|
4380
|
+
__props__.__dict__["is_backup_retention_locked"] = is_backup_retention_locked
|
4345
4381
|
__props__.__dict__["is_data_guard_enabled"] = is_data_guard_enabled
|
4346
4382
|
__props__.__dict__["is_dedicated"] = is_dedicated
|
4347
4383
|
__props__.__dict__["is_dev_tier"] = is_dev_tier
|
@@ -4511,6 +4547,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4511
4547
|
is_access_control_enabled: Optional[pulumi.Input[bool]] = None,
|
4512
4548
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
4513
4549
|
is_auto_scaling_for_storage_enabled: Optional[pulumi.Input[bool]] = None,
|
4550
|
+
is_backup_retention_locked: Optional[pulumi.Input[bool]] = None,
|
4514
4551
|
is_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
|
4515
4552
|
is_dedicated: Optional[pulumi.Input[bool]] = None,
|
4516
4553
|
is_dev_tier: Optional[pulumi.Input[bool]] = None,
|
@@ -4688,6 +4725,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4688
4725
|
This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform. For Autonomous Database Serverless instances, `whitelistedIps` is used.
|
4689
4726
|
:param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database CPU core count. The default value is `TRUE`.
|
4690
4727
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
4728
|
+
:param pulumi.Input[bool] is_backup_retention_locked: (Updatable) True if the Autonomous Database is backup retention locked.
|
4691
4729
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
4692
4730
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
4693
4731
|
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
@@ -4881,6 +4919,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4881
4919
|
__props__.__dict__["is_access_control_enabled"] = is_access_control_enabled
|
4882
4920
|
__props__.__dict__["is_auto_scaling_enabled"] = is_auto_scaling_enabled
|
4883
4921
|
__props__.__dict__["is_auto_scaling_for_storage_enabled"] = is_auto_scaling_for_storage_enabled
|
4922
|
+
__props__.__dict__["is_backup_retention_locked"] = is_backup_retention_locked
|
4884
4923
|
__props__.__dict__["is_data_guard_enabled"] = is_data_guard_enabled
|
4885
4924
|
__props__.__dict__["is_dedicated"] = is_dedicated
|
4886
4925
|
__props__.__dict__["is_dev_tier"] = is_dev_tier
|
@@ -5401,6 +5440,14 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5401
5440
|
"""
|
5402
5441
|
return pulumi.get(self, "is_auto_scaling_for_storage_enabled")
|
5403
5442
|
|
5443
|
+
@property
|
5444
|
+
@pulumi.getter(name="isBackupRetentionLocked")
|
5445
|
+
def is_backup_retention_locked(self) -> pulumi.Output[bool]:
|
5446
|
+
"""
|
5447
|
+
(Updatable) True if the Autonomous Database is backup retention locked.
|
5448
|
+
"""
|
5449
|
+
return pulumi.get(self, "is_backup_retention_locked")
|
5450
|
+
|
5404
5451
|
@property
|
5405
5452
|
@pulumi.getter(name="isDataGuardEnabled")
|
5406
5453
|
def is_data_guard_enabled(self) -> pulumi.Output[bool]:
|
@@ -1160,6 +1160,58 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1160
1160
|
|
1161
1161
|
Creates an Exadata VM cluster on Exascale Infrastructure
|
1162
1162
|
|
1163
|
+
## Example Usage
|
1164
|
+
|
1165
|
+
```python
|
1166
|
+
import pulumi
|
1167
|
+
import pulumi_oci as oci
|
1168
|
+
|
1169
|
+
test_exadb_vm_cluster = oci.database.ExadbVmCluster("test_exadb_vm_cluster",
|
1170
|
+
availability_domain=exadb_vm_cluster_availability_domain,
|
1171
|
+
backup_subnet_id=test_subnet["id"],
|
1172
|
+
compartment_id=compartment_id,
|
1173
|
+
display_name=exadb_vm_cluster_display_name,
|
1174
|
+
exascale_db_storage_vault_id=test_exascale_db_storage_vault["id"],
|
1175
|
+
grid_image_id=test_image["id"],
|
1176
|
+
hostname=exadb_vm_cluster_hostname,
|
1177
|
+
shape=exadb_vm_cluster_shape,
|
1178
|
+
node_config={
|
1179
|
+
"enabled_ecpu_count_per_node": exadb_vm_cluster_enabled_ecpu_count_per_node,
|
1180
|
+
"total_ecpu_count_per_node": exadb_vm_cluster_total_ecpu_count_per_node,
|
1181
|
+
"vm_file_system_storage_size_gbs_per_node": exadb_vm_cluster_vm_file_system_storage_size_in_gbs_per_node,
|
1182
|
+
},
|
1183
|
+
node_resources=[
|
1184
|
+
{
|
1185
|
+
"node_name": "node1",
|
1186
|
+
},
|
1187
|
+
{
|
1188
|
+
"node_name": "node2",
|
1189
|
+
},
|
1190
|
+
],
|
1191
|
+
ssh_public_keys=exadb_vm_cluster_ssh_public_keys,
|
1192
|
+
subnet_id=test_subnet["id"],
|
1193
|
+
backup_network_nsg_ids=exadb_vm_cluster_backup_network_nsg_ids,
|
1194
|
+
cluster_name=exadb_vm_cluster_cluster_name,
|
1195
|
+
data_collection_options={
|
1196
|
+
"is_diagnostics_events_enabled": exadb_vm_cluster_data_collection_options_is_diagnostics_events_enabled,
|
1197
|
+
"is_health_monitoring_enabled": exadb_vm_cluster_data_collection_options_is_health_monitoring_enabled,
|
1198
|
+
"is_incident_logs_enabled": exadb_vm_cluster_data_collection_options_is_incident_logs_enabled,
|
1199
|
+
},
|
1200
|
+
defined_tags=exadb_vm_cluster_defined_tags,
|
1201
|
+
domain=exadb_vm_cluster_domain,
|
1202
|
+
freeform_tags={
|
1203
|
+
"Department": "Finance",
|
1204
|
+
},
|
1205
|
+
license_model=exadb_vm_cluster_license_model,
|
1206
|
+
nsg_ids=exadb_vm_cluster_nsg_ids,
|
1207
|
+
private_zone_id=test_zone["id"],
|
1208
|
+
scan_listener_port_tcp=exadb_vm_cluster_scan_listener_port_tcp,
|
1209
|
+
scan_listener_port_tcp_ssl=exadb_vm_cluster_scan_listener_port_tcp_ssl,
|
1210
|
+
security_attributes=exadb_vm_cluster_security_attributes,
|
1211
|
+
system_version=exadb_vm_cluster_system_version,
|
1212
|
+
time_zone=exadb_vm_cluster_time_zone)
|
1213
|
+
```
|
1214
|
+
|
1163
1215
|
## Import
|
1164
1216
|
|
1165
1217
|
ExadbVmClusters can be imported using the `id`, e.g.
|
@@ -1219,6 +1271,58 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1219
1271
|
|
1220
1272
|
Creates an Exadata VM cluster on Exascale Infrastructure
|
1221
1273
|
|
1274
|
+
## Example Usage
|
1275
|
+
|
1276
|
+
```python
|
1277
|
+
import pulumi
|
1278
|
+
import pulumi_oci as oci
|
1279
|
+
|
1280
|
+
test_exadb_vm_cluster = oci.database.ExadbVmCluster("test_exadb_vm_cluster",
|
1281
|
+
availability_domain=exadb_vm_cluster_availability_domain,
|
1282
|
+
backup_subnet_id=test_subnet["id"],
|
1283
|
+
compartment_id=compartment_id,
|
1284
|
+
display_name=exadb_vm_cluster_display_name,
|
1285
|
+
exascale_db_storage_vault_id=test_exascale_db_storage_vault["id"],
|
1286
|
+
grid_image_id=test_image["id"],
|
1287
|
+
hostname=exadb_vm_cluster_hostname,
|
1288
|
+
shape=exadb_vm_cluster_shape,
|
1289
|
+
node_config={
|
1290
|
+
"enabled_ecpu_count_per_node": exadb_vm_cluster_enabled_ecpu_count_per_node,
|
1291
|
+
"total_ecpu_count_per_node": exadb_vm_cluster_total_ecpu_count_per_node,
|
1292
|
+
"vm_file_system_storage_size_gbs_per_node": exadb_vm_cluster_vm_file_system_storage_size_in_gbs_per_node,
|
1293
|
+
},
|
1294
|
+
node_resources=[
|
1295
|
+
{
|
1296
|
+
"node_name": "node1",
|
1297
|
+
},
|
1298
|
+
{
|
1299
|
+
"node_name": "node2",
|
1300
|
+
},
|
1301
|
+
],
|
1302
|
+
ssh_public_keys=exadb_vm_cluster_ssh_public_keys,
|
1303
|
+
subnet_id=test_subnet["id"],
|
1304
|
+
backup_network_nsg_ids=exadb_vm_cluster_backup_network_nsg_ids,
|
1305
|
+
cluster_name=exadb_vm_cluster_cluster_name,
|
1306
|
+
data_collection_options={
|
1307
|
+
"is_diagnostics_events_enabled": exadb_vm_cluster_data_collection_options_is_diagnostics_events_enabled,
|
1308
|
+
"is_health_monitoring_enabled": exadb_vm_cluster_data_collection_options_is_health_monitoring_enabled,
|
1309
|
+
"is_incident_logs_enabled": exadb_vm_cluster_data_collection_options_is_incident_logs_enabled,
|
1310
|
+
},
|
1311
|
+
defined_tags=exadb_vm_cluster_defined_tags,
|
1312
|
+
domain=exadb_vm_cluster_domain,
|
1313
|
+
freeform_tags={
|
1314
|
+
"Department": "Finance",
|
1315
|
+
},
|
1316
|
+
license_model=exadb_vm_cluster_license_model,
|
1317
|
+
nsg_ids=exadb_vm_cluster_nsg_ids,
|
1318
|
+
private_zone_id=test_zone["id"],
|
1319
|
+
scan_listener_port_tcp=exadb_vm_cluster_scan_listener_port_tcp,
|
1320
|
+
scan_listener_port_tcp_ssl=exadb_vm_cluster_scan_listener_port_tcp_ssl,
|
1321
|
+
security_attributes=exadb_vm_cluster_security_attributes,
|
1322
|
+
system_version=exadb_vm_cluster_system_version,
|
1323
|
+
time_zone=exadb_vm_cluster_time_zone)
|
1324
|
+
```
|
1325
|
+
|
1222
1326
|
## Import
|
1223
1327
|
|
1224
1328
|
ExadbVmClusters can be imported using the `id`, e.g.
|
@@ -27,7 +27,7 @@ class GetAutonomousDatabaseResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getAutonomousDatabase.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, availability_domain=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, byol_compute_count_limit=None, character_set=None, clone_type=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, disaster_recovery_type=None, display_name=None, encryption_key_history_entries=None, encryption_keys=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, key_version_id=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, public_connection_urls=None, public_endpoint=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, security_attributes=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, subscription_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_auto_refresh_start=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_undeleted=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
|
30
|
+
def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, availability_domain=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, byol_compute_count_limit=None, character_set=None, clone_type=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, disaster_recovery_type=None, display_name=None, encryption_key_history_entries=None, encryption_keys=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_backup_retention_locked=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, key_version_id=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, public_connection_urls=None, public_endpoint=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, security_attributes=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, subscription_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_auto_refresh_start=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_undeleted=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
|
31
31
|
if actual_used_data_storage_size_in_tbs and not isinstance(actual_used_data_storage_size_in_tbs, float):
|
32
32
|
raise TypeError("Expected argument 'actual_used_data_storage_size_in_tbs' to be a float")
|
33
33
|
pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
|
@@ -181,6 +181,9 @@ class GetAutonomousDatabaseResult:
|
|
181
181
|
if is_auto_scaling_for_storage_enabled and not isinstance(is_auto_scaling_for_storage_enabled, bool):
|
182
182
|
raise TypeError("Expected argument 'is_auto_scaling_for_storage_enabled' to be a bool")
|
183
183
|
pulumi.set(__self__, "is_auto_scaling_for_storage_enabled", is_auto_scaling_for_storage_enabled)
|
184
|
+
if is_backup_retention_locked and not isinstance(is_backup_retention_locked, bool):
|
185
|
+
raise TypeError("Expected argument 'is_backup_retention_locked' to be a bool")
|
186
|
+
pulumi.set(__self__, "is_backup_retention_locked", is_backup_retention_locked)
|
184
187
|
if is_data_guard_enabled and not isinstance(is_data_guard_enabled, bool):
|
185
188
|
raise TypeError("Expected argument 'is_data_guard_enabled' to be a bool")
|
186
189
|
pulumi.set(__self__, "is_data_guard_enabled", is_data_guard_enabled)
|
@@ -855,6 +858,14 @@ class GetAutonomousDatabaseResult:
|
|
855
858
|
"""
|
856
859
|
return pulumi.get(self, "is_auto_scaling_for_storage_enabled")
|
857
860
|
|
861
|
+
@property
|
862
|
+
@pulumi.getter(name="isBackupRetentionLocked")
|
863
|
+
def is_backup_retention_locked(self) -> bool:
|
864
|
+
"""
|
865
|
+
Indicates if the Autonomous Database is backup retention locked.
|
866
|
+
"""
|
867
|
+
return pulumi.get(self, "is_backup_retention_locked")
|
868
|
+
|
858
869
|
@property
|
859
870
|
@pulumi.getter(name="isDataGuardEnabled")
|
860
871
|
def is_data_guard_enabled(self) -> bool:
|
@@ -1616,6 +1627,7 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
|
|
1616
1627
|
is_access_control_enabled=self.is_access_control_enabled,
|
1617
1628
|
is_auto_scaling_enabled=self.is_auto_scaling_enabled,
|
1618
1629
|
is_auto_scaling_for_storage_enabled=self.is_auto_scaling_for_storage_enabled,
|
1630
|
+
is_backup_retention_locked=self.is_backup_retention_locked,
|
1619
1631
|
is_data_guard_enabled=self.is_data_guard_enabled,
|
1620
1632
|
is_dedicated=self.is_dedicated,
|
1621
1633
|
is_dev_tier=self.is_dev_tier,
|
@@ -1786,6 +1798,7 @@ def get_autonomous_database(autonomous_database_id: Optional[str] = None,
|
|
1786
1798
|
is_access_control_enabled=pulumi.get(__ret__, 'is_access_control_enabled'),
|
1787
1799
|
is_auto_scaling_enabled=pulumi.get(__ret__, 'is_auto_scaling_enabled'),
|
1788
1800
|
is_auto_scaling_for_storage_enabled=pulumi.get(__ret__, 'is_auto_scaling_for_storage_enabled'),
|
1801
|
+
is_backup_retention_locked=pulumi.get(__ret__, 'is_backup_retention_locked'),
|
1789
1802
|
is_data_guard_enabled=pulumi.get(__ret__, 'is_data_guard_enabled'),
|
1790
1803
|
is_dedicated=pulumi.get(__ret__, 'is_dedicated'),
|
1791
1804
|
is_dev_tier=pulumi.get(__ret__, 'is_dev_tier'),
|
@@ -1953,6 +1966,7 @@ def get_autonomous_database_output(autonomous_database_id: Optional[pulumi.Input
|
|
1953
1966
|
is_access_control_enabled=pulumi.get(__response__, 'is_access_control_enabled'),
|
1954
1967
|
is_auto_scaling_enabled=pulumi.get(__response__, 'is_auto_scaling_enabled'),
|
1955
1968
|
is_auto_scaling_for_storage_enabled=pulumi.get(__response__, 'is_auto_scaling_for_storage_enabled'),
|
1969
|
+
is_backup_retention_locked=pulumi.get(__response__, 'is_backup_retention_locked'),
|
1956
1970
|
is_data_guard_enabled=pulumi.get(__response__, 'is_data_guard_enabled'),
|
1957
1971
|
is_dedicated=pulumi.get(__response__, 'is_dedicated'),
|
1958
1972
|
is_dev_tier=pulumi.get(__response__, 'is_dev_tier'),
|