pulumi-oci 2.16.0__py3-none-any.whl → 2.16.0a1730527749__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. pulumi_oci/__init__.py +0 -19
  2. pulumi_oci/database/autonomous_database.py +0 -47
  3. pulumi_oci/database/cloud_autonomous_vm_cluster.py +0 -105
  4. pulumi_oci/database/cloud_vm_cluster.py +0 -49
  5. pulumi_oci/database/data_guard_association.py +0 -49
  6. pulumi_oci/database/db_system.py +0 -47
  7. pulumi_oci/database/exadb_vm_cluster.py +7 -68
  8. pulumi_oci/database/get_autonomous_database.py +1 -15
  9. pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +1 -43
  10. pulumi_oci/database/get_cloud_vm_cluster.py +1 -15
  11. pulumi_oci/database/get_data_guard_association.py +1 -12
  12. pulumi_oci/database/get_exadb_vm_cluster.py +2 -16
  13. pulumi_oci/database/outputs.py +2 -97
  14. pulumi_oci/dataflow/get_sql_endpoint.py +15 -1
  15. pulumi_oci/dataflow/outputs.py +11 -0
  16. pulumi_oci/dataflow/sql_endpoint.py +85 -88
  17. pulumi_oci/identity/__init__.py +0 -2
  18. pulumi_oci/identity/_inputs.py +6 -55
  19. pulumi_oci/identity/domains_condition.py +2 -9
  20. pulumi_oci/identity/domains_policy.py +2 -9
  21. pulumi_oci/identity/domains_rule.py +2 -9
  22. pulumi_oci/identity/get_domains_condition.py +2 -2
  23. pulumi_oci/identity/get_domains_conditions.py +2 -2
  24. pulumi_oci/identity/get_domains_policies.py +2 -2
  25. pulumi_oci/identity/get_domains_policy.py +2 -2
  26. pulumi_oci/identity/get_domains_rule.py +2 -2
  27. pulumi_oci/identity/get_domains_rules.py +2 -2
  28. pulumi_oci/identity/outputs.py +4 -917
  29. pulumi_oci/pulumi-plugin.json +1 -1
  30. {pulumi_oci-2.16.0.dist-info → pulumi_oci-2.16.0a1730527749.dist-info}/METADATA +1 -1
  31. {pulumi_oci-2.16.0.dist-info → pulumi_oci-2.16.0a1730527749.dist-info}/RECORD +33 -44
  32. {pulumi_oci-2.16.0.dist-info → pulumi_oci-2.16.0a1730527749.dist-info}/WHEEL +1 -1
  33. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  34. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  35. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -348
  36. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  37. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -746
  38. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  39. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2114
  40. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -822
  41. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -2157
  42. pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consent.py +0 -503
  43. pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consents.py +0 -338
  44. {pulumi_oci-2.16.0.dist-info → pulumi_oci-2.16.0a1730527749.dist-info}/top_level.txt +0 -0
@@ -52,7 +52,6 @@ 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,
56
55
  subscription_id: Optional[pulumi.Input[str]] = None,
57
56
  system_version: Optional[pulumi.Input[str]] = None,
58
57
  time_zone: Optional[pulumi.Input[str]] = None):
@@ -100,7 +99,6 @@ class CloudVmClusterArgs:
100
99
  :param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
101
100
  :param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
102
101
  :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"}}}`
104
102
  :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.
105
103
  :param pulumi.Input[str] system_version: Operating system version of the image.
106
104
  :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).
@@ -162,8 +160,6 @@ class CloudVmClusterArgs:
162
160
  pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
163
161
  if scan_listener_port_tcp_ssl is not None:
164
162
  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)
167
163
  if subscription_id is not None:
168
164
  pulumi.set(__self__, "subscription_id", subscription_id)
169
165
  if system_version is not None:
@@ -552,18 +548,6 @@ class CloudVmClusterArgs:
552
548
  def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
553
549
  pulumi.set(self, "scan_listener_port_tcp_ssl", value)
554
550
 
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
-
567
551
  @property
568
552
  @pulumi.getter(name="subscriptionId")
569
553
  def subscription_id(self) -> Optional[pulumi.Input[str]]:
@@ -647,7 +631,6 @@ class _CloudVmClusterState:
647
631
  scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
648
632
  scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
649
633
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
650
- security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
651
634
  shape: Optional[pulumi.Input[str]] = None,
652
635
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
653
636
  state: Optional[pulumi.Input[str]] = None,
@@ -712,7 +695,6 @@ class _CloudVmClusterState:
712
695
  :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.
713
696
  :param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
714
697
  :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"}}}`
716
698
  :param pulumi.Input[str] shape: The model name of the Exadata hardware running the cloud VM cluster.
717
699
  :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.
718
700
  :param pulumi.Input[str] state: The current state of the cloud VM cluster.
@@ -808,8 +790,6 @@ class _CloudVmClusterState:
808
790
  pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
809
791
  if scan_listener_port_tcp_ssl is not None:
810
792
  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)
813
793
  if shape is not None:
814
794
  pulumi.set(__self__, "shape", shape)
815
795
  if ssh_public_keys is not None:
@@ -1312,18 +1292,6 @@ class _CloudVmClusterState:
1312
1292
  def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
1313
1293
  pulumi.set(self, "scan_listener_port_tcp_ssl", value)
1314
1294
 
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
-
1327
1295
  @property
1328
1296
  @pulumi.getter
1329
1297
  def shape(self) -> Optional[pulumi.Input[str]]:
@@ -1507,7 +1475,6 @@ class CloudVmCluster(pulumi.CustomResource):
1507
1475
  private_zone_id: Optional[pulumi.Input[str]] = None,
1508
1476
  scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
1509
1477
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
1510
- security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1511
1478
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1512
1479
  subnet_id: Optional[pulumi.Input[str]] = None,
1513
1480
  subscription_id: Optional[pulumi.Input[str]] = None,
@@ -1576,7 +1543,6 @@ class CloudVmCluster(pulumi.CustomResource):
1576
1543
  private_zone_id=test_zone["id"],
1577
1544
  scan_listener_port_tcp=cloud_vm_cluster_scan_listener_port_tcp,
1578
1545
  scan_listener_port_tcp_ssl=cloud_vm_cluster_scan_listener_port_tcp_ssl,
1579
- security_attributes=cloud_vm_cluster_security_attributes,
1580
1546
  subscription_id=tenant_subscription_id,
1581
1547
  system_version=cloud_vm_cluster_system_version,
1582
1548
  time_zone=cloud_vm_cluster_time_zone)
@@ -1632,7 +1598,6 @@ class CloudVmCluster(pulumi.CustomResource):
1632
1598
  :param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
1633
1599
  :param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
1634
1600
  :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"}}}`
1636
1601
  :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.
1637
1602
  :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.
1638
1603
  :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.
@@ -1711,7 +1676,6 @@ class CloudVmCluster(pulumi.CustomResource):
1711
1676
  private_zone_id=test_zone["id"],
1712
1677
  scan_listener_port_tcp=cloud_vm_cluster_scan_listener_port_tcp,
1713
1678
  scan_listener_port_tcp_ssl=cloud_vm_cluster_scan_listener_port_tcp_ssl,
1714
- security_attributes=cloud_vm_cluster_security_attributes,
1715
1679
  subscription_id=tenant_subscription_id,
1716
1680
  system_version=cloud_vm_cluster_system_version,
1717
1681
  time_zone=cloud_vm_cluster_time_zone)
@@ -1769,7 +1733,6 @@ class CloudVmCluster(pulumi.CustomResource):
1769
1733
  private_zone_id: Optional[pulumi.Input[str]] = None,
1770
1734
  scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
1771
1735
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
1772
- security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1773
1736
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1774
1737
  subnet_id: Optional[pulumi.Input[str]] = None,
1775
1738
  subscription_id: Optional[pulumi.Input[str]] = None,
@@ -1827,7 +1790,6 @@ class CloudVmCluster(pulumi.CustomResource):
1827
1790
  __props__.__dict__["private_zone_id"] = private_zone_id
1828
1791
  __props__.__dict__["scan_listener_port_tcp"] = scan_listener_port_tcp
1829
1792
  __props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
1830
- __props__.__dict__["security_attributes"] = security_attributes
1831
1793
  if ssh_public_keys is None and not opts.urn:
1832
1794
  raise TypeError("Missing required property 'ssh_public_keys'")
1833
1795
  __props__.__dict__["ssh_public_keys"] = ssh_public_keys
@@ -1903,7 +1865,6 @@ class CloudVmCluster(pulumi.CustomResource):
1903
1865
  scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1904
1866
  scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
1905
1867
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
1906
- security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1907
1868
  shape: Optional[pulumi.Input[str]] = None,
1908
1869
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1909
1870
  state: Optional[pulumi.Input[str]] = None,
@@ -1973,7 +1934,6 @@ class CloudVmCluster(pulumi.CustomResource):
1973
1934
  :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.
1974
1935
  :param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
1975
1936
  :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"}}}`
1977
1937
  :param pulumi.Input[str] shape: The model name of the Exadata hardware running the cloud VM cluster.
1978
1938
  :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.
1979
1939
  :param pulumi.Input[str] state: The current state of the cloud VM cluster.
@@ -2034,7 +1994,6 @@ class CloudVmCluster(pulumi.CustomResource):
2034
1994
  __props__.__dict__["scan_ip_ids"] = scan_ip_ids
2035
1995
  __props__.__dict__["scan_listener_port_tcp"] = scan_listener_port_tcp
2036
1996
  __props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
2037
- __props__.__dict__["security_attributes"] = security_attributes
2038
1997
  __props__.__dict__["shape"] = shape
2039
1998
  __props__.__dict__["ssh_public_keys"] = ssh_public_keys
2040
1999
  __props__.__dict__["state"] = state
@@ -2370,14 +2329,6 @@ class CloudVmCluster(pulumi.CustomResource):
2370
2329
  """
2371
2330
  return pulumi.get(self, "scan_listener_port_tcp_ssl")
2372
2331
 
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
-
2381
2332
  @property
2382
2333
  @pulumi.getter
2383
2334
  def shape(self) -> pulumi.Output[str]:
@@ -37,7 +37,6 @@ 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,
41
40
  display_name: Optional[pulumi.Input[str]] = None,
42
41
  domain: Optional[pulumi.Input[str]] = None,
43
42
  fault_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -93,7 +92,6 @@ class DataGuardAssociationArgs:
93
92
  :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.
94
93
  :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).
95
94
  :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"}}}`
97
95
  :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.
98
96
  :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.
99
97
  :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.
@@ -153,8 +151,6 @@ class DataGuardAssociationArgs:
153
151
  pulumi.set(__self__, "db_system_defined_tags", db_system_defined_tags)
154
152
  if db_system_freeform_tags is not None:
155
153
  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)
158
154
  if display_name is not None:
159
155
  pulumi.set(__self__, "display_name", display_name)
160
156
  if domain is not None:
@@ -399,18 +395,6 @@ class DataGuardAssociationArgs:
399
395
  def db_system_freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
400
396
  pulumi.set(self, "db_system_freeform_tags", value)
401
397
 
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
-
414
398
  @property
415
399
  @pulumi.getter(name="displayName")
416
400
  def display_name(self) -> Optional[pulumi.Input[str]]:
@@ -660,7 +644,6 @@ class _DataGuardAssociationState:
660
644
  database_software_image_id: Optional[pulumi.Input[str]] = None,
661
645
  db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
662
646
  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,
664
647
  delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
665
648
  display_name: Optional[pulumi.Input[str]] = None,
666
649
  domain: Optional[pulumi.Input[str]] = None,
@@ -713,7 +696,6 @@ class _DataGuardAssociationState:
713
696
  :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.
714
697
  :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).
715
698
  :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"}}}`
717
699
  :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.
718
700
  :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.
719
701
  :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.
@@ -799,8 +781,6 @@ class _DataGuardAssociationState:
799
781
  pulumi.set(__self__, "db_system_defined_tags", db_system_defined_tags)
800
782
  if db_system_freeform_tags is not None:
801
783
  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)
804
784
  if delete_standby_db_home_on_delete is not None:
805
785
  pulumi.set(__self__, "delete_standby_db_home_on_delete", delete_standby_db_home_on_delete)
806
786
  if display_name is not None:
@@ -1043,18 +1023,6 @@ class _DataGuardAssociationState:
1043
1023
  def db_system_freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
1044
1024
  pulumi.set(self, "db_system_freeform_tags", value)
1045
1025
 
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
-
1058
1026
  @property
1059
1027
  @pulumi.getter(name="deleteStandbyDbHomeOnDelete")
1060
1028
  def delete_standby_db_home_on_delete(self) -> Optional[pulumi.Input[str]]:
@@ -1434,7 +1402,6 @@ class DataGuardAssociation(pulumi.CustomResource):
1434
1402
  database_software_image_id: Optional[pulumi.Input[str]] = None,
1435
1403
  db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1436
1404
  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,
1438
1405
  delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
1439
1406
  display_name: Optional[pulumi.Input[str]] = None,
1440
1407
  domain: Optional[pulumi.Input[str]] = None,
@@ -1495,7 +1462,6 @@ class DataGuardAssociation(pulumi.CustomResource):
1495
1462
  database_software_image_id=test_database_software_image["id"],
1496
1463
  db_system_defined_tags=data_guard_association_db_system_defined_tags,
1497
1464
  db_system_freeform_tags=data_guard_association_db_system_freeform_tags,
1498
- db_system_security_attributes=data_guard_association_db_system_security_attributes,
1499
1465
  display_name=data_guard_association_display_name,
1500
1466
  domain=data_guard_association_domain,
1501
1467
  fault_domains=data_guard_association_fault_domains,
@@ -1542,7 +1508,6 @@ class DataGuardAssociation(pulumi.CustomResource):
1542
1508
  :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.
1543
1509
  :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).
1544
1510
  :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"}}}`
1546
1511
  :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.
1547
1512
  :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.
1548
1513
  :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.
@@ -1635,7 +1600,6 @@ class DataGuardAssociation(pulumi.CustomResource):
1635
1600
  database_software_image_id=test_database_software_image["id"],
1636
1601
  db_system_defined_tags=data_guard_association_db_system_defined_tags,
1637
1602
  db_system_freeform_tags=data_guard_association_db_system_freeform_tags,
1638
- db_system_security_attributes=data_guard_association_db_system_security_attributes,
1639
1603
  display_name=data_guard_association_display_name,
1640
1604
  domain=data_guard_association_domain,
1641
1605
  fault_domains=data_guard_association_fault_domains,
@@ -1688,7 +1652,6 @@ class DataGuardAssociation(pulumi.CustomResource):
1688
1652
  database_software_image_id: Optional[pulumi.Input[str]] = None,
1689
1653
  db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1690
1654
  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,
1692
1655
  delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
1693
1656
  display_name: Optional[pulumi.Input[str]] = None,
1694
1657
  domain: Optional[pulumi.Input[str]] = None,
@@ -1738,7 +1701,6 @@ class DataGuardAssociation(pulumi.CustomResource):
1738
1701
  __props__.__dict__["database_software_image_id"] = database_software_image_id
1739
1702
  __props__.__dict__["db_system_defined_tags"] = db_system_defined_tags
1740
1703
  __props__.__dict__["db_system_freeform_tags"] = db_system_freeform_tags
1741
- __props__.__dict__["db_system_security_attributes"] = db_system_security_attributes
1742
1704
  if delete_standby_db_home_on_delete is None and not opts.urn:
1743
1705
  raise TypeError("Missing required property 'delete_standby_db_home_on_delete'")
1744
1706
  __props__.__dict__["delete_standby_db_home_on_delete"] = delete_standby_db_home_on_delete
@@ -1802,7 +1764,6 @@ class DataGuardAssociation(pulumi.CustomResource):
1802
1764
  database_software_image_id: Optional[pulumi.Input[str]] = None,
1803
1765
  db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1804
1766
  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,
1806
1767
  delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
1807
1768
  display_name: Optional[pulumi.Input[str]] = None,
1808
1769
  domain: Optional[pulumi.Input[str]] = None,
@@ -1860,7 +1821,6 @@ class DataGuardAssociation(pulumi.CustomResource):
1860
1821
  :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.
1861
1822
  :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).
1862
1823
  :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"}}}`
1864
1824
  :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.
1865
1825
  :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.
1866
1826
  :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.
@@ -1935,7 +1895,6 @@ class DataGuardAssociation(pulumi.CustomResource):
1935
1895
  __props__.__dict__["database_software_image_id"] = database_software_image_id
1936
1896
  __props__.__dict__["db_system_defined_tags"] = db_system_defined_tags
1937
1897
  __props__.__dict__["db_system_freeform_tags"] = db_system_freeform_tags
1938
- __props__.__dict__["db_system_security_attributes"] = db_system_security_attributes
1939
1898
  __props__.__dict__["delete_standby_db_home_on_delete"] = delete_standby_db_home_on_delete
1940
1899
  __props__.__dict__["display_name"] = display_name
1941
1900
  __props__.__dict__["domain"] = domain
@@ -2091,14 +2050,6 @@ class DataGuardAssociation(pulumi.CustomResource):
2091
2050
  """
2092
2051
  return pulumi.get(self, "db_system_freeform_tags")
2093
2052
 
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
-
2102
2053
  @property
2103
2054
  @pulumi.getter(name="deleteStandbyDbHomeOnDelete")
2104
2055
  def delete_standby_db_home_on_delete(self) -> pulumi.Output[str]:
@@ -51,7 +51,6 @@ 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,
55
54
  source: Optional[pulumi.Input[str]] = None,
56
55
  source_db_system_id: Optional[pulumi.Input[str]] = None,
57
56
  sparse_diskgroup: Optional[pulumi.Input[bool]] = None,
@@ -128,7 +127,6 @@ class DbSystemArgs:
128
127
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
129
128
  :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.
130
129
  :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"}}}`
132
130
  :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`.
133
131
  :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.
134
132
  :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.
@@ -192,8 +190,6 @@ class DbSystemArgs:
192
190
  pulumi.set(__self__, "private_ip", private_ip)
193
191
  if reco_storage_size_in_gb is not None:
194
192
  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)
197
193
  if source is not None:
198
194
  pulumi.set(__self__, "source", source)
199
195
  if source_db_system_id is not None:
@@ -604,18 +600,6 @@ class DbSystemArgs:
604
600
  def reco_storage_size_in_gb(self, value: Optional[pulumi.Input[int]]):
605
601
  pulumi.set(self, "reco_storage_size_in_gb", value)
606
602
 
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
-
619
603
  @property
620
604
  @pulumi.getter
621
605
  def source(self) -> Optional[pulumi.Input[str]]:
@@ -724,7 +708,6 @@ class _DbSystemState:
724
708
  scan_dns_name: Optional[pulumi.Input[str]] = None,
725
709
  scan_dns_record_id: Optional[pulumi.Input[str]] = None,
726
710
  scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
727
- security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
728
711
  shape: Optional[pulumi.Input[str]] = None,
729
712
  source: Optional[pulumi.Input[str]] = None,
730
713
  source_db_system_id: Optional[pulumi.Input[str]] = None,
@@ -809,7 +792,6 @@ class _DbSystemState:
809
792
  :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.
810
793
  :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.
811
794
  :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"}}}`
813
795
  :param pulumi.Input[str] shape: (Updatable) The shape of the DB system. The shape determines resources allocated to the DB system.
814
796
  * For virtual machine shapes, the number of CPU cores and memory
815
797
  * For bare metal and Exadata shapes, the number of CPU cores, memory, and storage
@@ -918,8 +900,6 @@ class _DbSystemState:
918
900
  pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
919
901
  if scan_ip_ids is not None:
920
902
  pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
921
- if security_attributes is not None:
922
- pulumi.set(__self__, "security_attributes", security_attributes)
923
903
  if shape is not None:
924
904
  pulumi.set(__self__, "shape", shape)
925
905
  if source is not None:
@@ -1456,18 +1436,6 @@ class _DbSystemState:
1456
1436
  def scan_ip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1457
1437
  pulumi.set(self, "scan_ip_ids", value)
1458
1438
 
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
-
1471
1439
  @property
1472
1440
  @pulumi.getter
1473
1441
  def shape(self) -> Optional[pulumi.Input[str]]:
@@ -1671,7 +1639,6 @@ class DbSystem(pulumi.CustomResource):
1671
1639
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1672
1640
  private_ip: Optional[pulumi.Input[str]] = None,
1673
1641
  reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1674
- security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1675
1642
  shape: Optional[pulumi.Input[str]] = None,
1676
1643
  source: Optional[pulumi.Input[str]] = None,
1677
1644
  source_db_system_id: Optional[pulumi.Input[str]] = None,
@@ -1792,7 +1759,6 @@ class DbSystem(pulumi.CustomResource):
1792
1759
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
1793
1760
  :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.
1794
1761
  :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"}}}`
1796
1762
  :param pulumi.Input[str] shape: (Updatable) The shape of the DB system. The shape determines resources allocated to the DB system.
1797
1763
  * For virtual machine shapes, the number of CPU cores and memory
1798
1764
  * For bare metal and Exadata shapes, the number of CPU cores, memory, and storage
@@ -1917,7 +1883,6 @@ class DbSystem(pulumi.CustomResource):
1917
1883
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1918
1884
  private_ip: Optional[pulumi.Input[str]] = None,
1919
1885
  reco_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1920
- security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1921
1886
  shape: Optional[pulumi.Input[str]] = None,
1922
1887
  source: Optional[pulumi.Input[str]] = None,
1923
1888
  source_db_system_id: Optional[pulumi.Input[str]] = None,
@@ -1970,7 +1935,6 @@ class DbSystem(pulumi.CustomResource):
1970
1935
  __props__.__dict__["nsg_ids"] = nsg_ids
1971
1936
  __props__.__dict__["private_ip"] = private_ip
1972
1937
  __props__.__dict__["reco_storage_size_in_gb"] = reco_storage_size_in_gb
1973
- __props__.__dict__["security_attributes"] = security_attributes
1974
1938
  if shape is None and not opts.urn:
1975
1939
  raise TypeError("Missing required property 'shape'")
1976
1940
  __props__.__dict__["shape"] = shape
@@ -2053,7 +2017,6 @@ class DbSystem(pulumi.CustomResource):
2053
2017
  scan_dns_name: Optional[pulumi.Input[str]] = None,
2054
2018
  scan_dns_record_id: Optional[pulumi.Input[str]] = None,
2055
2019
  scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2056
- security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2057
2020
  shape: Optional[pulumi.Input[str]] = None,
2058
2021
  source: Optional[pulumi.Input[str]] = None,
2059
2022
  source_db_system_id: Optional[pulumi.Input[str]] = None,
@@ -2143,7 +2106,6 @@ class DbSystem(pulumi.CustomResource):
2143
2106
  :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.
2144
2107
  :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.
2145
2108
  :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"}}}`
2147
2109
  :param pulumi.Input[str] shape: (Updatable) The shape of the DB system. The shape determines resources allocated to the DB system.
2148
2110
  * For virtual machine shapes, the number of CPU cores and memory
2149
2111
  * For bare metal and Exadata shapes, the number of CPU cores, memory, and storage
@@ -2216,7 +2178,6 @@ class DbSystem(pulumi.CustomResource):
2216
2178
  __props__.__dict__["scan_dns_name"] = scan_dns_name
2217
2179
  __props__.__dict__["scan_dns_record_id"] = scan_dns_record_id
2218
2180
  __props__.__dict__["scan_ip_ids"] = scan_ip_ids
2219
- __props__.__dict__["security_attributes"] = security_attributes
2220
2181
  __props__.__dict__["shape"] = shape
2221
2182
  __props__.__dict__["source"] = source
2222
2183
  __props__.__dict__["source_db_system_id"] = source_db_system_id
@@ -2581,14 +2542,6 @@ class DbSystem(pulumi.CustomResource):
2581
2542
  """
2582
2543
  return pulumi.get(self, "scan_ip_ids")
2583
2544
 
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
-
2592
2545
  @property
2593
2546
  @pulumi.getter
2594
2547
  def shape(self) -> pulumi.Output[str]: