pulumi-oci 2.16.0a1731363948__py3-none-any.whl → 2.16.0a1731504509__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 +19 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +105 -0
- pulumi_oci/database/cloud_vm_cluster.py +49 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +68 -7
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +16 -2
- pulumi_oci/database/outputs.py +97 -2
- pulumi_oci/dataflow/get_sql_endpoint.py +1 -15
- pulumi_oci/dataflow/outputs.py +0 -11
- pulumi_oci/dataflow/sql_endpoint.py +88 -85
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +348 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +746 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2114 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +822 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +2157 -0
- pulumi_oci/identity/__init__.py +2 -0
- pulumi_oci/identity/_inputs.py +55 -6
- pulumi_oci/identity/domains_condition.py +9 -2
- pulumi_oci/identity/domains_policy.py +9 -2
- pulumi_oci/identity/domains_rule.py +9 -2
- pulumi_oci/identity/get_domains_condition.py +2 -2
- pulumi_oci/identity/get_domains_conditions.py +2 -2
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consent.py +503 -0
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consents.py +338 -0
- pulumi_oci/identity/get_domains_policies.py +2 -2
- pulumi_oci/identity/get_domains_policy.py +2 -2
- pulumi_oci/identity/get_domains_rule.py +2 -2
- pulumi_oci/identity/get_domains_rules.py +2 -2
- pulumi_oci/identity/outputs.py +917 -4
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/METADATA +1 -1
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/RECORD +44 -33
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/top_level.txt +0 -0
@@ -52,6 +52,7 @@ class CloudVmClusterArgs:
|
|
52
52
|
private_zone_id: Optional[pulumi.Input[str]] = None,
|
53
53
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
54
54
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
55
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
55
56
|
subscription_id: Optional[pulumi.Input[str]] = None,
|
56
57
|
system_version: Optional[pulumi.Input[str]] = None,
|
57
58
|
time_zone: Optional[pulumi.Input[str]] = None):
|
@@ -99,6 +100,7 @@ class CloudVmClusterArgs:
|
|
99
100
|
:param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
|
100
101
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
101
102
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
103
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
102
104
|
:param pulumi.Input[str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
103
105
|
:param pulumi.Input[str] system_version: Operating system version of the image.
|
104
106
|
:param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
@@ -160,6 +162,8 @@ class CloudVmClusterArgs:
|
|
160
162
|
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
161
163
|
if scan_listener_port_tcp_ssl is not None:
|
162
164
|
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
165
|
+
if security_attributes is not None:
|
166
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
163
167
|
if subscription_id is not None:
|
164
168
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
165
169
|
if system_version is not None:
|
@@ -548,6 +552,18 @@ class CloudVmClusterArgs:
|
|
548
552
|
def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
|
549
553
|
pulumi.set(self, "scan_listener_port_tcp_ssl", value)
|
550
554
|
|
555
|
+
@property
|
556
|
+
@pulumi.getter(name="securityAttributes")
|
557
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
558
|
+
"""
|
559
|
+
(Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
560
|
+
"""
|
561
|
+
return pulumi.get(self, "security_attributes")
|
562
|
+
|
563
|
+
@security_attributes.setter
|
564
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
565
|
+
pulumi.set(self, "security_attributes", value)
|
566
|
+
|
551
567
|
@property
|
552
568
|
@pulumi.getter(name="subscriptionId")
|
553
569
|
def subscription_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -631,6 +647,7 @@ class _CloudVmClusterState:
|
|
631
647
|
scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
632
648
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
633
649
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
650
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
634
651
|
shape: Optional[pulumi.Input[str]] = None,
|
635
652
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
636
653
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -695,6 +712,7 @@ class _CloudVmClusterState:
|
|
695
712
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
696
713
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
697
714
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
715
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
698
716
|
:param pulumi.Input[str] shape: The model name of the Exadata hardware running the cloud VM cluster.
|
699
717
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
|
700
718
|
:param pulumi.Input[str] state: The current state of the cloud VM cluster.
|
@@ -790,6 +808,8 @@ class _CloudVmClusterState:
|
|
790
808
|
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
791
809
|
if scan_listener_port_tcp_ssl is not None:
|
792
810
|
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
811
|
+
if security_attributes is not None:
|
812
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
793
813
|
if shape is not None:
|
794
814
|
pulumi.set(__self__, "shape", shape)
|
795
815
|
if ssh_public_keys is not None:
|
@@ -1292,6 +1312,18 @@ class _CloudVmClusterState:
|
|
1292
1312
|
def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
|
1293
1313
|
pulumi.set(self, "scan_listener_port_tcp_ssl", value)
|
1294
1314
|
|
1315
|
+
@property
|
1316
|
+
@pulumi.getter(name="securityAttributes")
|
1317
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1318
|
+
"""
|
1319
|
+
(Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1320
|
+
"""
|
1321
|
+
return pulumi.get(self, "security_attributes")
|
1322
|
+
|
1323
|
+
@security_attributes.setter
|
1324
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1325
|
+
pulumi.set(self, "security_attributes", value)
|
1326
|
+
|
1295
1327
|
@property
|
1296
1328
|
@pulumi.getter
|
1297
1329
|
def shape(self) -> Optional[pulumi.Input[str]]:
|
@@ -1475,6 +1507,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1475
1507
|
private_zone_id: Optional[pulumi.Input[str]] = None,
|
1476
1508
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
1477
1509
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1510
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1478
1511
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1479
1512
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1480
1513
|
subscription_id: Optional[pulumi.Input[str]] = None,
|
@@ -1543,6 +1576,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1543
1576
|
private_zone_id=test_zone["id"],
|
1544
1577
|
scan_listener_port_tcp=cloud_vm_cluster_scan_listener_port_tcp,
|
1545
1578
|
scan_listener_port_tcp_ssl=cloud_vm_cluster_scan_listener_port_tcp_ssl,
|
1579
|
+
security_attributes=cloud_vm_cluster_security_attributes,
|
1546
1580
|
subscription_id=tenant_subscription_id,
|
1547
1581
|
system_version=cloud_vm_cluster_system_version,
|
1548
1582
|
time_zone=cloud_vm_cluster_time_zone)
|
@@ -1598,6 +1632,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1598
1632
|
:param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
|
1599
1633
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
1600
1634
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
1635
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1601
1636
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
|
1602
1637
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster.
|
1603
1638
|
:param pulumi.Input[str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
@@ -1676,6 +1711,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1676
1711
|
private_zone_id=test_zone["id"],
|
1677
1712
|
scan_listener_port_tcp=cloud_vm_cluster_scan_listener_port_tcp,
|
1678
1713
|
scan_listener_port_tcp_ssl=cloud_vm_cluster_scan_listener_port_tcp_ssl,
|
1714
|
+
security_attributes=cloud_vm_cluster_security_attributes,
|
1679
1715
|
subscription_id=tenant_subscription_id,
|
1680
1716
|
system_version=cloud_vm_cluster_system_version,
|
1681
1717
|
time_zone=cloud_vm_cluster_time_zone)
|
@@ -1733,6 +1769,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1733
1769
|
private_zone_id: Optional[pulumi.Input[str]] = None,
|
1734
1770
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
1735
1771
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1772
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1736
1773
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1737
1774
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1738
1775
|
subscription_id: Optional[pulumi.Input[str]] = None,
|
@@ -1790,6 +1827,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1790
1827
|
__props__.__dict__["private_zone_id"] = private_zone_id
|
1791
1828
|
__props__.__dict__["scan_listener_port_tcp"] = scan_listener_port_tcp
|
1792
1829
|
__props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
|
1830
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
1793
1831
|
if ssh_public_keys is None and not opts.urn:
|
1794
1832
|
raise TypeError("Missing required property 'ssh_public_keys'")
|
1795
1833
|
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
@@ -1865,6 +1903,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1865
1903
|
scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1866
1904
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
1867
1905
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1906
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1868
1907
|
shape: Optional[pulumi.Input[str]] = None,
|
1869
1908
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1870
1909
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -1934,6 +1973,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1934
1973
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
1935
1974
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
1936
1975
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
1976
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1937
1977
|
:param pulumi.Input[str] shape: The model name of the Exadata hardware running the cloud VM cluster.
|
1938
1978
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
|
1939
1979
|
:param pulumi.Input[str] state: The current state of the cloud VM cluster.
|
@@ -1994,6 +2034,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1994
2034
|
__props__.__dict__["scan_ip_ids"] = scan_ip_ids
|
1995
2035
|
__props__.__dict__["scan_listener_port_tcp"] = scan_listener_port_tcp
|
1996
2036
|
__props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
|
2037
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
1997
2038
|
__props__.__dict__["shape"] = shape
|
1998
2039
|
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
1999
2040
|
__props__.__dict__["state"] = state
|
@@ -2329,6 +2370,14 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2329
2370
|
"""
|
2330
2371
|
return pulumi.get(self, "scan_listener_port_tcp_ssl")
|
2331
2372
|
|
2373
|
+
@property
|
2374
|
+
@pulumi.getter(name="securityAttributes")
|
2375
|
+
def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
|
2376
|
+
"""
|
2377
|
+
(Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
2378
|
+
"""
|
2379
|
+
return pulumi.get(self, "security_attributes")
|
2380
|
+
|
2332
2381
|
@property
|
2333
2382
|
@pulumi.getter
|
2334
2383
|
def shape(self) -> pulumi.Output[str]:
|
@@ -37,6 +37,7 @@ class DataGuardAssociationArgs:
|
|
37
37
|
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
38
38
|
db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
39
39
|
db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
40
|
+
db_system_security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
40
41
|
display_name: Optional[pulumi.Input[str]] = None,
|
41
42
|
domain: Optional[pulumi.Input[str]] = None,
|
42
43
|
fault_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -92,6 +93,7 @@ class DataGuardAssociationArgs:
|
|
92
93
|
:param pulumi.Input[str] database_software_image_id: The database software image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Applicable only when creationType=`ExistingDbSystem` and when the existing database has Exadata shape.
|
93
94
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
94
95
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
96
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_security_attributes: Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
95
97
|
:param pulumi.Input[str] display_name: The user-friendly name of the DB system that will contain the the standby database. The display name does not have to be unique.
|
96
98
|
:param pulumi.Input[str] domain: A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
|
97
99
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] fault_domains: A Fault Domain is a grouping of hardware and infrastructure within an availability domain. Fault Domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or maintenance that affects one Fault Domain does not affect DB systems in other Fault Domains.
|
@@ -151,6 +153,8 @@ class DataGuardAssociationArgs:
|
|
151
153
|
pulumi.set(__self__, "db_system_defined_tags", db_system_defined_tags)
|
152
154
|
if db_system_freeform_tags is not None:
|
153
155
|
pulumi.set(__self__, "db_system_freeform_tags", db_system_freeform_tags)
|
156
|
+
if db_system_security_attributes is not None:
|
157
|
+
pulumi.set(__self__, "db_system_security_attributes", db_system_security_attributes)
|
154
158
|
if display_name is not None:
|
155
159
|
pulumi.set(__self__, "display_name", display_name)
|
156
160
|
if domain is not None:
|
@@ -395,6 +399,18 @@ class DataGuardAssociationArgs:
|
|
395
399
|
def db_system_freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
396
400
|
pulumi.set(self, "db_system_freeform_tags", value)
|
397
401
|
|
402
|
+
@property
|
403
|
+
@pulumi.getter(name="dbSystemSecurityAttributes")
|
404
|
+
def db_system_security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
405
|
+
"""
|
406
|
+
Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
407
|
+
"""
|
408
|
+
return pulumi.get(self, "db_system_security_attributes")
|
409
|
+
|
410
|
+
@db_system_security_attributes.setter
|
411
|
+
def db_system_security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
412
|
+
pulumi.set(self, "db_system_security_attributes", value)
|
413
|
+
|
398
414
|
@property
|
399
415
|
@pulumi.getter(name="displayName")
|
400
416
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -644,6 +660,7 @@ class _DataGuardAssociationState:
|
|
644
660
|
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
645
661
|
db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
646
662
|
db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
663
|
+
db_system_security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
647
664
|
delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
|
648
665
|
display_name: Optional[pulumi.Input[str]] = None,
|
649
666
|
domain: Optional[pulumi.Input[str]] = None,
|
@@ -696,6 +713,7 @@ class _DataGuardAssociationState:
|
|
696
713
|
:param pulumi.Input[str] database_software_image_id: The database software image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Applicable only when creationType=`ExistingDbSystem` and when the existing database has Exadata shape.
|
697
714
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
698
715
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
716
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_security_attributes: Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
699
717
|
:param pulumi.Input[str] display_name: The user-friendly name of the DB system that will contain the the standby database. The display name does not have to be unique.
|
700
718
|
:param pulumi.Input[str] domain: A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
|
701
719
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] fault_domains: A Fault Domain is a grouping of hardware and infrastructure within an availability domain. Fault Domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or maintenance that affects one Fault Domain does not affect DB systems in other Fault Domains.
|
@@ -781,6 +799,8 @@ class _DataGuardAssociationState:
|
|
781
799
|
pulumi.set(__self__, "db_system_defined_tags", db_system_defined_tags)
|
782
800
|
if db_system_freeform_tags is not None:
|
783
801
|
pulumi.set(__self__, "db_system_freeform_tags", db_system_freeform_tags)
|
802
|
+
if db_system_security_attributes is not None:
|
803
|
+
pulumi.set(__self__, "db_system_security_attributes", db_system_security_attributes)
|
784
804
|
if delete_standby_db_home_on_delete is not None:
|
785
805
|
pulumi.set(__self__, "delete_standby_db_home_on_delete", delete_standby_db_home_on_delete)
|
786
806
|
if display_name is not None:
|
@@ -1023,6 +1043,18 @@ class _DataGuardAssociationState:
|
|
1023
1043
|
def db_system_freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1024
1044
|
pulumi.set(self, "db_system_freeform_tags", value)
|
1025
1045
|
|
1046
|
+
@property
|
1047
|
+
@pulumi.getter(name="dbSystemSecurityAttributes")
|
1048
|
+
def db_system_security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1049
|
+
"""
|
1050
|
+
Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1051
|
+
"""
|
1052
|
+
return pulumi.get(self, "db_system_security_attributes")
|
1053
|
+
|
1054
|
+
@db_system_security_attributes.setter
|
1055
|
+
def db_system_security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1056
|
+
pulumi.set(self, "db_system_security_attributes", value)
|
1057
|
+
|
1026
1058
|
@property
|
1027
1059
|
@pulumi.getter(name="deleteStandbyDbHomeOnDelete")
|
1028
1060
|
def delete_standby_db_home_on_delete(self) -> Optional[pulumi.Input[str]]:
|
@@ -1402,6 +1434,7 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1402
1434
|
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
1403
1435
|
db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1404
1436
|
db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1437
|
+
db_system_security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1405
1438
|
delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
|
1406
1439
|
display_name: Optional[pulumi.Input[str]] = None,
|
1407
1440
|
domain: Optional[pulumi.Input[str]] = None,
|
@@ -1462,6 +1495,7 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1462
1495
|
database_software_image_id=test_database_software_image["id"],
|
1463
1496
|
db_system_defined_tags=data_guard_association_db_system_defined_tags,
|
1464
1497
|
db_system_freeform_tags=data_guard_association_db_system_freeform_tags,
|
1498
|
+
db_system_security_attributes=data_guard_association_db_system_security_attributes,
|
1465
1499
|
display_name=data_guard_association_display_name,
|
1466
1500
|
domain=data_guard_association_domain,
|
1467
1501
|
fault_domains=data_guard_association_fault_domains,
|
@@ -1508,6 +1542,7 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1508
1542
|
:param pulumi.Input[str] database_software_image_id: The database software image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Applicable only when creationType=`ExistingDbSystem` and when the existing database has Exadata shape.
|
1509
1543
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1510
1544
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1545
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_security_attributes: Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1511
1546
|
:param pulumi.Input[str] display_name: The user-friendly name of the DB system that will contain the the standby database. The display name does not have to be unique.
|
1512
1547
|
:param pulumi.Input[str] domain: A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
|
1513
1548
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] fault_domains: A Fault Domain is a grouping of hardware and infrastructure within an availability domain. Fault Domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or maintenance that affects one Fault Domain does not affect DB systems in other Fault Domains.
|
@@ -1600,6 +1635,7 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1600
1635
|
database_software_image_id=test_database_software_image["id"],
|
1601
1636
|
db_system_defined_tags=data_guard_association_db_system_defined_tags,
|
1602
1637
|
db_system_freeform_tags=data_guard_association_db_system_freeform_tags,
|
1638
|
+
db_system_security_attributes=data_guard_association_db_system_security_attributes,
|
1603
1639
|
display_name=data_guard_association_display_name,
|
1604
1640
|
domain=data_guard_association_domain,
|
1605
1641
|
fault_domains=data_guard_association_fault_domains,
|
@@ -1652,6 +1688,7 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1652
1688
|
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
1653
1689
|
db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1654
1690
|
db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1691
|
+
db_system_security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1655
1692
|
delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
|
1656
1693
|
display_name: Optional[pulumi.Input[str]] = None,
|
1657
1694
|
domain: Optional[pulumi.Input[str]] = None,
|
@@ -1701,6 +1738,7 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1701
1738
|
__props__.__dict__["database_software_image_id"] = database_software_image_id
|
1702
1739
|
__props__.__dict__["db_system_defined_tags"] = db_system_defined_tags
|
1703
1740
|
__props__.__dict__["db_system_freeform_tags"] = db_system_freeform_tags
|
1741
|
+
__props__.__dict__["db_system_security_attributes"] = db_system_security_attributes
|
1704
1742
|
if delete_standby_db_home_on_delete is None and not opts.urn:
|
1705
1743
|
raise TypeError("Missing required property 'delete_standby_db_home_on_delete'")
|
1706
1744
|
__props__.__dict__["delete_standby_db_home_on_delete"] = delete_standby_db_home_on_delete
|
@@ -1764,6 +1802,7 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1764
1802
|
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
1765
1803
|
db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1766
1804
|
db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1805
|
+
db_system_security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1767
1806
|
delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
|
1768
1807
|
display_name: Optional[pulumi.Input[str]] = None,
|
1769
1808
|
domain: Optional[pulumi.Input[str]] = None,
|
@@ -1821,6 +1860,7 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1821
1860
|
:param pulumi.Input[str] database_software_image_id: The database software image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Applicable only when creationType=`ExistingDbSystem` and when the existing database has Exadata shape.
|
1822
1861
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1823
1862
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1863
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_security_attributes: Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1824
1864
|
:param pulumi.Input[str] display_name: The user-friendly name of the DB system that will contain the the standby database. The display name does not have to be unique.
|
1825
1865
|
:param pulumi.Input[str] domain: A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
|
1826
1866
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] fault_domains: A Fault Domain is a grouping of hardware and infrastructure within an availability domain. Fault Domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or maintenance that affects one Fault Domain does not affect DB systems in other Fault Domains.
|
@@ -1895,6 +1935,7 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1895
1935
|
__props__.__dict__["database_software_image_id"] = database_software_image_id
|
1896
1936
|
__props__.__dict__["db_system_defined_tags"] = db_system_defined_tags
|
1897
1937
|
__props__.__dict__["db_system_freeform_tags"] = db_system_freeform_tags
|
1938
|
+
__props__.__dict__["db_system_security_attributes"] = db_system_security_attributes
|
1898
1939
|
__props__.__dict__["delete_standby_db_home_on_delete"] = delete_standby_db_home_on_delete
|
1899
1940
|
__props__.__dict__["display_name"] = display_name
|
1900
1941
|
__props__.__dict__["domain"] = domain
|
@@ -2050,6 +2091,14 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
2050
2091
|
"""
|
2051
2092
|
return pulumi.get(self, "db_system_freeform_tags")
|
2052
2093
|
|
2094
|
+
@property
|
2095
|
+
@pulumi.getter(name="dbSystemSecurityAttributes")
|
2096
|
+
def db_system_security_attributes(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
2097
|
+
"""
|
2098
|
+
Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
2099
|
+
"""
|
2100
|
+
return pulumi.get(self, "db_system_security_attributes")
|
2101
|
+
|
2053
2102
|
@property
|
2054
2103
|
@pulumi.getter(name="deleteStandbyDbHomeOnDelete")
|
2055
2104
|
def delete_standby_db_home_on_delete(self) -> pulumi.Output[str]:
|
pulumi_oci/database/db_system.py
CHANGED
@@ -51,6 +51,7 @@ class DbSystemArgs:
|
|
51
51
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
52
52
|
private_ip: Optional[pulumi.Input[str]] = None,
|
53
53
|
reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
54
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
54
55
|
source: Optional[pulumi.Input[str]] = None,
|
55
56
|
source_db_system_id: Optional[pulumi.Input[str]] = None,
|
56
57
|
sparse_diskgroup: Optional[pulumi.Input[bool]] = None,
|
@@ -127,6 +128,7 @@ class DbSystemArgs:
|
|
127
128
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
128
129
|
:param pulumi.Input[str] private_ip: 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. Supported for VM BM shape.
|
129
130
|
:param pulumi.Input[int] reco_storage_size_in_gb: The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
|
131
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
130
132
|
:param pulumi.Input[str] source: The source of the database: Use `NONE` for creating a new database. Use `DB_BACKUP` for creating a new database by restoring from a backup. Use `DATABASE` for creating a new database from an existing database, including archive redo log data. The default is `NONE`.
|
131
133
|
:param pulumi.Input[str] source_db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
|
132
134
|
:param pulumi.Input[bool] sparse_diskgroup: If true, Sparse Diskgroup is configured for Exadata dbsystem. If False, Sparse diskgroup is not configured. Only applied for Exadata shape.
|
@@ -190,6 +192,8 @@ class DbSystemArgs:
|
|
190
192
|
pulumi.set(__self__, "private_ip", private_ip)
|
191
193
|
if reco_storage_size_in_gb is not None:
|
192
194
|
pulumi.set(__self__, "reco_storage_size_in_gb", reco_storage_size_in_gb)
|
195
|
+
if security_attributes is not None:
|
196
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
193
197
|
if source is not None:
|
194
198
|
pulumi.set(__self__, "source", source)
|
195
199
|
if source_db_system_id is not None:
|
@@ -600,6 +604,18 @@ class DbSystemArgs:
|
|
600
604
|
def reco_storage_size_in_gb(self, value: Optional[pulumi.Input[int]]):
|
601
605
|
pulumi.set(self, "reco_storage_size_in_gb", value)
|
602
606
|
|
607
|
+
@property
|
608
|
+
@pulumi.getter(name="securityAttributes")
|
609
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
610
|
+
"""
|
611
|
+
(Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
612
|
+
"""
|
613
|
+
return pulumi.get(self, "security_attributes")
|
614
|
+
|
615
|
+
@security_attributes.setter
|
616
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
617
|
+
pulumi.set(self, "security_attributes", value)
|
618
|
+
|
603
619
|
@property
|
604
620
|
@pulumi.getter
|
605
621
|
def source(self) -> Optional[pulumi.Input[str]]:
|
@@ -708,6 +724,7 @@ class _DbSystemState:
|
|
708
724
|
scan_dns_name: Optional[pulumi.Input[str]] = None,
|
709
725
|
scan_dns_record_id: Optional[pulumi.Input[str]] = None,
|
710
726
|
scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
727
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
711
728
|
shape: Optional[pulumi.Input[str]] = None,
|
712
729
|
source: Optional[pulumi.Input[str]] = None,
|
713
730
|
source_db_system_id: Optional[pulumi.Input[str]] = None,
|
@@ -792,6 +809,7 @@ class _DbSystemState:
|
|
792
809
|
:param pulumi.Input[str] scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
|
793
810
|
:param pulumi.Input[str] scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the DB system.
|
794
811
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
812
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
795
813
|
:param pulumi.Input[str] shape: (Updatable) The shape of the DB system. The shape determines resources allocated to the DB system.
|
796
814
|
* For virtual machine shapes, the number of CPU cores and memory
|
797
815
|
* For bare metal and Exadata shapes, the number of CPU cores, memory, and storage
|
@@ -900,6 +918,8 @@ class _DbSystemState:
|
|
900
918
|
pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
|
901
919
|
if scan_ip_ids is not None:
|
902
920
|
pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
|
921
|
+
if security_attributes is not None:
|
922
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
903
923
|
if shape is not None:
|
904
924
|
pulumi.set(__self__, "shape", shape)
|
905
925
|
if source is not None:
|
@@ -1436,6 +1456,18 @@ class _DbSystemState:
|
|
1436
1456
|
def scan_ip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1437
1457
|
pulumi.set(self, "scan_ip_ids", value)
|
1438
1458
|
|
1459
|
+
@property
|
1460
|
+
@pulumi.getter(name="securityAttributes")
|
1461
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1462
|
+
"""
|
1463
|
+
(Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1464
|
+
"""
|
1465
|
+
return pulumi.get(self, "security_attributes")
|
1466
|
+
|
1467
|
+
@security_attributes.setter
|
1468
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1469
|
+
pulumi.set(self, "security_attributes", value)
|
1470
|
+
|
1439
1471
|
@property
|
1440
1472
|
@pulumi.getter
|
1441
1473
|
def shape(self) -> Optional[pulumi.Input[str]]:
|
@@ -1639,6 +1671,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1639
1671
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1640
1672
|
private_ip: Optional[pulumi.Input[str]] = None,
|
1641
1673
|
reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1674
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1642
1675
|
shape: Optional[pulumi.Input[str]] = None,
|
1643
1676
|
source: Optional[pulumi.Input[str]] = None,
|
1644
1677
|
source_db_system_id: Optional[pulumi.Input[str]] = None,
|
@@ -1759,6 +1792,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1759
1792
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
1760
1793
|
:param pulumi.Input[str] private_ip: 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. Supported for VM BM shape.
|
1761
1794
|
:param pulumi.Input[int] reco_storage_size_in_gb: The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
|
1795
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1762
1796
|
:param pulumi.Input[str] shape: (Updatable) The shape of the DB system. The shape determines resources allocated to the DB system.
|
1763
1797
|
* For virtual machine shapes, the number of CPU cores and memory
|
1764
1798
|
* For bare metal and Exadata shapes, the number of CPU cores, memory, and storage
|
@@ -1883,6 +1917,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1883
1917
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1884
1918
|
private_ip: Optional[pulumi.Input[str]] = None,
|
1885
1919
|
reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1920
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1886
1921
|
shape: Optional[pulumi.Input[str]] = None,
|
1887
1922
|
source: Optional[pulumi.Input[str]] = None,
|
1888
1923
|
source_db_system_id: Optional[pulumi.Input[str]] = None,
|
@@ -1935,6 +1970,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1935
1970
|
__props__.__dict__["nsg_ids"] = nsg_ids
|
1936
1971
|
__props__.__dict__["private_ip"] = private_ip
|
1937
1972
|
__props__.__dict__["reco_storage_size_in_gb"] = reco_storage_size_in_gb
|
1973
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
1938
1974
|
if shape is None and not opts.urn:
|
1939
1975
|
raise TypeError("Missing required property 'shape'")
|
1940
1976
|
__props__.__dict__["shape"] = shape
|
@@ -2017,6 +2053,7 @@ class DbSystem(pulumi.CustomResource):
|
|
2017
2053
|
scan_dns_name: Optional[pulumi.Input[str]] = None,
|
2018
2054
|
scan_dns_record_id: Optional[pulumi.Input[str]] = None,
|
2019
2055
|
scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
2056
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
2020
2057
|
shape: Optional[pulumi.Input[str]] = None,
|
2021
2058
|
source: Optional[pulumi.Input[str]] = None,
|
2022
2059
|
source_db_system_id: Optional[pulumi.Input[str]] = None,
|
@@ -2106,6 +2143,7 @@ class DbSystem(pulumi.CustomResource):
|
|
2106
2143
|
:param pulumi.Input[str] scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
|
2107
2144
|
:param pulumi.Input[str] scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the DB system.
|
2108
2145
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
2146
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
2109
2147
|
:param pulumi.Input[str] shape: (Updatable) The shape of the DB system. The shape determines resources allocated to the DB system.
|
2110
2148
|
* For virtual machine shapes, the number of CPU cores and memory
|
2111
2149
|
* For bare metal and Exadata shapes, the number of CPU cores, memory, and storage
|
@@ -2178,6 +2216,7 @@ class DbSystem(pulumi.CustomResource):
|
|
2178
2216
|
__props__.__dict__["scan_dns_name"] = scan_dns_name
|
2179
2217
|
__props__.__dict__["scan_dns_record_id"] = scan_dns_record_id
|
2180
2218
|
__props__.__dict__["scan_ip_ids"] = scan_ip_ids
|
2219
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
2181
2220
|
__props__.__dict__["shape"] = shape
|
2182
2221
|
__props__.__dict__["source"] = source
|
2183
2222
|
__props__.__dict__["source_db_system_id"] = source_db_system_id
|
@@ -2542,6 +2581,14 @@ class DbSystem(pulumi.CustomResource):
|
|
2542
2581
|
"""
|
2543
2582
|
return pulumi.get(self, "scan_ip_ids")
|
2544
2583
|
|
2584
|
+
@property
|
2585
|
+
@pulumi.getter(name="securityAttributes")
|
2586
|
+
def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
|
2587
|
+
"""
|
2588
|
+
(Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
2589
|
+
"""
|
2590
|
+
return pulumi.get(self, "security_attributes")
|
2591
|
+
|
2545
2592
|
@property
|
2546
2593
|
@pulumi.getter
|
2547
2594
|
def shape(self) -> pulumi.Output[str]:
|