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.
Files changed (44) hide show
  1. pulumi_oci/__init__.py +19 -0
  2. pulumi_oci/database/autonomous_database.py +47 -0
  3. pulumi_oci/database/cloud_autonomous_vm_cluster.py +105 -0
  4. pulumi_oci/database/cloud_vm_cluster.py +49 -0
  5. pulumi_oci/database/data_guard_association.py +49 -0
  6. pulumi_oci/database/db_system.py +47 -0
  7. pulumi_oci/database/exadb_vm_cluster.py +68 -7
  8. pulumi_oci/database/get_autonomous_database.py +15 -1
  9. pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +43 -1
  10. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  11. pulumi_oci/database/get_data_guard_association.py +12 -1
  12. pulumi_oci/database/get_exadb_vm_cluster.py +16 -2
  13. pulumi_oci/database/outputs.py +97 -2
  14. pulumi_oci/dataflow/get_sql_endpoint.py +1 -15
  15. pulumi_oci/dataflow/outputs.py +0 -11
  16. pulumi_oci/dataflow/sql_endpoint.py +88 -85
  17. pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
  18. pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
  19. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +348 -0
  20. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
  21. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +746 -0
  22. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
  23. pulumi_oci/globallydistributeddatabase/outputs.py +2114 -0
  24. pulumi_oci/globallydistributeddatabase/private_endpoint.py +822 -0
  25. pulumi_oci/globallydistributeddatabase/sharded_database.py +2157 -0
  26. pulumi_oci/identity/__init__.py +2 -0
  27. pulumi_oci/identity/_inputs.py +55 -6
  28. pulumi_oci/identity/domains_condition.py +9 -2
  29. pulumi_oci/identity/domains_policy.py +9 -2
  30. pulumi_oci/identity/domains_rule.py +9 -2
  31. pulumi_oci/identity/get_domains_condition.py +2 -2
  32. pulumi_oci/identity/get_domains_conditions.py +2 -2
  33. pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consent.py +503 -0
  34. pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consents.py +338 -0
  35. pulumi_oci/identity/get_domains_policies.py +2 -2
  36. pulumi_oci/identity/get_domains_policy.py +2 -2
  37. pulumi_oci/identity/get_domains_rule.py +2 -2
  38. pulumi_oci/identity/get_domains_rules.py +2 -2
  39. pulumi_oci/identity/outputs.py +917 -4
  40. pulumi_oci/pulumi-plugin.json +1 -1
  41. {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/METADATA +1 -1
  42. {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/RECORD +44 -33
  43. {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/WHEEL +1 -1
  44. {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/top_level.txt +0 -0
@@ -18832,6 +18832,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
18832
18832
  scheduled_operations: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseScheduledOperationResult'],
18833
18833
  secret_id: str,
18834
18834
  secret_version_number: int,
18835
+ security_attributes: Mapping[str, str],
18835
18836
  service_console_url: str,
18836
18837
  shrink_adb_trigger: int,
18837
18838
  source: str,
@@ -18964,6 +18965,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
18964
18965
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseResourcePoolSummaryArgs'] resource_pool_summaries: The configuration details for resource pool
18965
18966
  :param str role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
18966
18967
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseScheduledOperationArgs'] scheduled_operations: The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
18968
+ :param Mapping[str, str] 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"}}}`
18967
18969
  :param str service_console_url: The URL of the Service Console for the Autonomous Database.
18968
18970
  :param str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that was cloned to create the current Autonomous Database.
18969
18971
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
@@ -19101,6 +19103,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
19101
19103
  pulumi.set(__self__, "scheduled_operations", scheduled_operations)
19102
19104
  pulumi.set(__self__, "secret_id", secret_id)
19103
19105
  pulumi.set(__self__, "secret_version_number", secret_version_number)
19106
+ pulumi.set(__self__, "security_attributes", security_attributes)
19104
19107
  pulumi.set(__self__, "service_console_url", service_console_url)
19105
19108
  pulumi.set(__self__, "shrink_adb_trigger", shrink_adb_trigger)
19106
19109
  pulumi.set(__self__, "source", source)
@@ -19940,6 +19943,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
19940
19943
  def secret_version_number(self) -> int:
19941
19944
  return pulumi.get(self, "secret_version_number")
19942
19945
 
19946
+ @property
19947
+ @pulumi.getter(name="securityAttributes")
19948
+ def security_attributes(self) -> Mapping[str, str]:
19949
+ """
19950
+ 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"}}}`
19951
+ """
19952
+ return pulumi.get(self, "security_attributes")
19953
+
19943
19954
  @property
19944
19955
  @pulumi.getter(name="serviceConsoleUrl")
19945
19956
  def service_console_url(self) -> str:
@@ -21542,6 +21553,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
21542
21553
  resource_pool_summaries: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummaryResult'],
21543
21554
  role: str,
21544
21555
  scheduled_operations: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationResult'],
21556
+ security_attributes: Mapping[str, str],
21545
21557
  service_console_url: str,
21546
21558
  source_id: str,
21547
21559
  standby_dbs: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult'],
@@ -21670,6 +21682,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
21670
21682
  :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummaryArgs'] resource_pool_summaries: The configuration details for resource pool
21671
21683
  :param str role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
21672
21684
  :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationArgs'] scheduled_operations: The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
21685
+ :param Mapping[str, str] 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"}}}`
21673
21686
  :param str service_console_url: The URL of the Service Console for the Autonomous Database.
21674
21687
  :param str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that was cloned to create the current Autonomous Database.
21675
21688
  :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.* `availability_domain` - The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
@@ -21791,6 +21804,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
21791
21804
  pulumi.set(__self__, "resource_pool_summaries", resource_pool_summaries)
21792
21805
  pulumi.set(__self__, "role", role)
21793
21806
  pulumi.set(__self__, "scheduled_operations", scheduled_operations)
21807
+ pulumi.set(__self__, "security_attributes", security_attributes)
21794
21808
  pulumi.set(__self__, "service_console_url", service_console_url)
21795
21809
  pulumi.set(__self__, "source_id", source_id)
21796
21810
  pulumi.set(__self__, "standby_dbs", standby_dbs)
@@ -22545,6 +22559,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
22545
22559
  """
22546
22560
  return pulumi.get(self, "scheduled_operations")
22547
22561
 
22562
+ @property
22563
+ @pulumi.getter(name="securityAttributes")
22564
+ def security_attributes(self) -> Mapping[str, str]:
22565
+ """
22566
+ 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"}}}`
22567
+ """
22568
+ return pulumi.get(self, "security_attributes")
22569
+
22548
22570
  @property
22549
22571
  @pulumi.getter(name="serviceConsoleUrl")
22550
22572
  def service_console_url(self) -> str:
@@ -28567,10 +28589,13 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
28567
28589
  reserved_cpus: float,
28568
28590
  scan_listener_port_non_tls: int,
28569
28591
  scan_listener_port_tls: int,
28592
+ security_attributes: Mapping[str, str],
28570
28593
  shape: str,
28571
28594
  state: str,
28572
28595
  subnet_id: str,
28573
28596
  time_created: str,
28597
+ time_database_ssl_certificate_expires: str,
28598
+ time_ords_certificate_expires: str,
28574
28599
  time_updated: str,
28575
28600
  total_autonomous_data_storage_in_tbs: float,
28576
28601
  total_container_databases: int,
@@ -28626,10 +28651,13 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
28626
28651
  :param float reserved_cpus: The number of CPUs reserved in an Autonomous VM Cluster.
28627
28652
  :param int scan_listener_port_non_tls: The SCAN Listener Non TLS port. Default is 1521.
28628
28653
  :param int scan_listener_port_tls: The SCAN Listenenr TLS port. Default is 2484.
28654
+ :param Mapping[str, str] 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"}}}`
28629
28655
  :param str shape: The model name of the Exadata hardware running the cloud Autonomous VM cluster.
28630
28656
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
28631
28657
  :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the cloud Autonomous VM Cluster is associated with.
28632
28658
  :param str time_created: The date and time that the cloud Autonomous VM cluster was created.
28659
+ :param str time_database_ssl_certificate_expires: The date and time of Database SSL certificate expiration.
28660
+ :param str time_ords_certificate_expires: The date and time of ORDS certificate expiration.
28633
28661
  :param str time_updated: The last date and time that the cloud Autonomous VM cluster was updated.
28634
28662
  :param float total_autonomous_data_storage_in_tbs: The total data disk group size for Autonomous Databases, in TBs.
28635
28663
  :param int total_container_databases: The total number of Autonomous Container Databases that can be created with the allocated local storage.
@@ -28683,10 +28711,13 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
28683
28711
  pulumi.set(__self__, "reserved_cpus", reserved_cpus)
28684
28712
  pulumi.set(__self__, "scan_listener_port_non_tls", scan_listener_port_non_tls)
28685
28713
  pulumi.set(__self__, "scan_listener_port_tls", scan_listener_port_tls)
28714
+ pulumi.set(__self__, "security_attributes", security_attributes)
28686
28715
  pulumi.set(__self__, "shape", shape)
28687
28716
  pulumi.set(__self__, "state", state)
28688
28717
  pulumi.set(__self__, "subnet_id", subnet_id)
28689
28718
  pulumi.set(__self__, "time_created", time_created)
28719
+ pulumi.set(__self__, "time_database_ssl_certificate_expires", time_database_ssl_certificate_expires)
28720
+ pulumi.set(__self__, "time_ords_certificate_expires", time_ords_certificate_expires)
28690
28721
  pulumi.set(__self__, "time_updated", time_updated)
28691
28722
  pulumi.set(__self__, "total_autonomous_data_storage_in_tbs", total_autonomous_data_storage_in_tbs)
28692
28723
  pulumi.set(__self__, "total_container_databases", total_container_databases)
@@ -29076,6 +29107,14 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
29076
29107
  """
29077
29108
  return pulumi.get(self, "scan_listener_port_tls")
29078
29109
 
29110
+ @property
29111
+ @pulumi.getter(name="securityAttributes")
29112
+ def security_attributes(self) -> Mapping[str, str]:
29113
+ """
29114
+ 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"}}}`
29115
+ """
29116
+ return pulumi.get(self, "security_attributes")
29117
+
29079
29118
  @property
29080
29119
  @pulumi.getter
29081
29120
  def shape(self) -> str:
@@ -29108,6 +29147,22 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
29108
29147
  """
29109
29148
  return pulumi.get(self, "time_created")
29110
29149
 
29150
+ @property
29151
+ @pulumi.getter(name="timeDatabaseSslCertificateExpires")
29152
+ def time_database_ssl_certificate_expires(self) -> str:
29153
+ """
29154
+ The date and time of Database SSL certificate expiration.
29155
+ """
29156
+ return pulumi.get(self, "time_database_ssl_certificate_expires")
29157
+
29158
+ @property
29159
+ @pulumi.getter(name="timeOrdsCertificateExpires")
29160
+ def time_ords_certificate_expires(self) -> str:
29161
+ """
29162
+ The date and time of ORDS certificate expiration.
29163
+ """
29164
+ return pulumi.get(self, "time_ords_certificate_expires")
29165
+
29111
29166
  @property
29112
29167
  @pulumi.getter(name="timeUpdated")
29113
29168
  def time_updated(self) -> str:
@@ -30793,6 +30848,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
30793
30848
  scan_ip_ids: Sequence[str],
30794
30849
  scan_listener_port_tcp: int,
30795
30850
  scan_listener_port_tcp_ssl: int,
30851
+ security_attributes: Mapping[str, str],
30796
30852
  shape: str,
30797
30853
  ssh_public_keys: Sequence[str],
30798
30854
  state: str,
@@ -30844,6 +30900,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
30844
30900
  :param Sequence[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.
30845
30901
  :param int scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
30846
30902
  :param int scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
30903
+ :param Mapping[str, str] 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"}}}`
30847
30904
  :param str shape: The model name of the Exadata hardware running the cloud VM cluster.
30848
30905
  :param Sequence[str] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
30849
30906
  :param str state: A filter to return only cloud VM clusters that match the given lifecycle state exactly.
@@ -30897,6 +30954,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
30897
30954
  pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
30898
30955
  pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
30899
30956
  pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
30957
+ pulumi.set(__self__, "security_attributes", security_attributes)
30900
30958
  pulumi.set(__self__, "shape", shape)
30901
30959
  pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
30902
30960
  pulumi.set(__self__, "state", state)
@@ -31222,6 +31280,14 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
31222
31280
  """
31223
31281
  return pulumi.get(self, "scan_listener_port_tcp_ssl")
31224
31282
 
31283
+ @property
31284
+ @pulumi.getter(name="securityAttributes")
31285
+ def security_attributes(self) -> Mapping[str, str]:
31286
+ """
31287
+ 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"}}}`
31288
+ """
31289
+ return pulumi.get(self, "security_attributes")
31290
+
31225
31291
  @property
31226
31292
  @pulumi.getter
31227
31293
  def shape(self) -> str:
@@ -31637,6 +31703,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
31637
31703
  database_software_image_id: str,
31638
31704
  db_system_defined_tags: Mapping[str, str],
31639
31705
  db_system_freeform_tags: Mapping[str, str],
31706
+ db_system_security_attributes: Mapping[str, str],
31640
31707
  delete_standby_db_home_on_delete: str,
31641
31708
  display_name: str,
31642
31709
  domain: str,
@@ -31699,6 +31766,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
31699
31766
  pulumi.set(__self__, "database_software_image_id", database_software_image_id)
31700
31767
  pulumi.set(__self__, "db_system_defined_tags", db_system_defined_tags)
31701
31768
  pulumi.set(__self__, "db_system_freeform_tags", db_system_freeform_tags)
31769
+ pulumi.set(__self__, "db_system_security_attributes", db_system_security_attributes)
31702
31770
  pulumi.set(__self__, "delete_standby_db_home_on_delete", delete_standby_db_home_on_delete)
31703
31771
  pulumi.set(__self__, "display_name", display_name)
31704
31772
  pulumi.set(__self__, "domain", domain)
@@ -31813,6 +31881,11 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
31813
31881
  def db_system_freeform_tags(self) -> Mapping[str, str]:
31814
31882
  return pulumi.get(self, "db_system_freeform_tags")
31815
31883
 
31884
+ @property
31885
+ @pulumi.getter(name="dbSystemSecurityAttributes")
31886
+ def db_system_security_attributes(self) -> Mapping[str, str]:
31887
+ return pulumi.get(self, "db_system_security_attributes")
31888
+
31816
31889
  @property
31817
31890
  @pulumi.getter(name="deleteStandbyDbHomeOnDelete")
31818
31891
  def delete_standby_db_home_on_delete(self) -> str:
@@ -38296,6 +38369,7 @@ class GetDbSystemsDbSystemResult(dict):
38296
38369
  scan_dns_name: str,
38297
38370
  scan_dns_record_id: str,
38298
38371
  scan_ip_ids: Sequence[str],
38372
+ security_attributes: Mapping[str, str],
38299
38373
  shape: str,
38300
38374
  source: str,
38301
38375
  source_db_system_id: str,
@@ -38347,6 +38421,7 @@ class GetDbSystemsDbSystemResult(dict):
38347
38421
  :param str scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
38348
38422
  :param 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.
38349
38423
  :param Sequence[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.
38424
+ :param Mapping[str, str] 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"}}}`
38350
38425
  :param str shape: The shape of the DB system. The shape determines resources to allocate to the DB system.
38351
38426
  * For virtual machine shapes, the number of CPU cores and memory
38352
38427
  * For bare metal and Exadata shapes, the number of CPU cores, storage, and memory
@@ -38403,6 +38478,7 @@ class GetDbSystemsDbSystemResult(dict):
38403
38478
  pulumi.set(__self__, "scan_dns_name", scan_dns_name)
38404
38479
  pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
38405
38480
  pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
38481
+ pulumi.set(__self__, "security_attributes", security_attributes)
38406
38482
  pulumi.set(__self__, "shape", shape)
38407
38483
  pulumi.set(__self__, "source", source)
38408
38484
  pulumi.set(__self__, "source_db_system_id", source_db_system_id)
@@ -38731,6 +38807,14 @@ class GetDbSystemsDbSystemResult(dict):
38731
38807
  """
38732
38808
  return pulumi.get(self, "scan_ip_ids")
38733
38809
 
38810
+ @property
38811
+ @pulumi.getter(name="securityAttributes")
38812
+ def security_attributes(self) -> Mapping[str, str]:
38813
+ """
38814
+ 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"}}}`
38815
+ """
38816
+ return pulumi.get(self, "security_attributes")
38817
+
38734
38818
  @property
38735
38819
  @pulumi.getter
38736
38820
  def shape(self) -> str:
@@ -41876,6 +41960,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
41876
41960
  scan_ip_ids: Sequence[str],
41877
41961
  scan_listener_port_tcp: int,
41878
41962
  scan_listener_port_tcp_ssl: int,
41963
+ security_attributes: Mapping[str, str],
41879
41964
  shape: str,
41880
41965
  ssh_public_keys: Sequence[str],
41881
41966
  state: str,
@@ -41899,7 +41984,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
41899
41984
  :param str exascale_db_storage_vault_id: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
41900
41985
  :param Mapping[str, str] 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"}`
41901
41986
  :param str gi_version: A valid Oracle Grid Infrastructure (GI) software version.
41902
- :param str grid_image_id: Grid Setup will be done using this grid image id
41987
+ :param str grid_image_id: Grid Setup will be done using this grid image id.
41903
41988
  :param str grid_image_type: The type of Grid Image
41904
41989
  :param str hostname: The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
41905
41990
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata VM cluster on Exascale Infrastructure.
@@ -41918,6 +42003,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
41918
42003
  :param Sequence[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 Exadata VM cluster on Exascale Infrastructure. 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.
41919
42004
  :param int scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
41920
42005
  :param int scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
42006
+ :param Mapping[str, str] 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"}}}`
41921
42007
  :param str shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
41922
42008
  :param Sequence[str] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
41923
42009
  :param str state: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
@@ -41959,6 +42045,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
41959
42045
  pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
41960
42046
  pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
41961
42047
  pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
42048
+ pulumi.set(__self__, "security_attributes", security_attributes)
41962
42049
  pulumi.set(__self__, "shape", shape)
41963
42050
  pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
41964
42051
  pulumi.set(__self__, "state", state)
@@ -42070,7 +42157,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
42070
42157
  @pulumi.getter(name="gridImageId")
42071
42158
  def grid_image_id(self) -> str:
42072
42159
  """
42073
- Grid Setup will be done using this grid image id
42160
+ Grid Setup will be done using this grid image id.
42074
42161
  """
42075
42162
  return pulumi.get(self, "grid_image_id")
42076
42163
 
@@ -42211,6 +42298,14 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
42211
42298
  """
42212
42299
  return pulumi.get(self, "scan_listener_port_tcp_ssl")
42213
42300
 
42301
+ @property
42302
+ @pulumi.getter(name="securityAttributes")
42303
+ def security_attributes(self) -> Mapping[str, str]:
42304
+ """
42305
+ 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"}}}`
42306
+ """
42307
+ return pulumi.get(self, "security_attributes")
42308
+
42214
42309
  @property
42215
42310
  @pulumi.getter
42216
42311
  def shape(self) -> str:
@@ -27,7 +27,7 @@ class GetSqlEndpointResult:
27
27
  """
28
28
  A collection of values returned by getSqlEndpoint.
29
29
  """
30
- def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, driver_shape=None, driver_shape_configs=None, executor_shape=None, executor_shape_configs=None, freeform_tags=None, id=None, jdbc_endpoint_url=None, lake_id=None, last_accepted_request_token=None, max_executor_count=None, metastore_id=None, min_executor_count=None, network_configurations=None, spark_advanced_configurations=None, sql_endpoint_id=None, sql_endpoint_version=None, state=None, state_message=None, system_tags=None, time_created=None, time_updated=None, warehouse_bucket_uri=None):
30
+ def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, driver_shape=None, driver_shape_configs=None, executor_shape=None, executor_shape_configs=None, freeform_tags=None, id=None, jdbc_endpoint_url=None, lake_id=None, max_executor_count=None, metastore_id=None, min_executor_count=None, network_configurations=None, spark_advanced_configurations=None, sql_endpoint_id=None, sql_endpoint_version=None, state=None, state_message=None, system_tags=None, time_created=None, time_updated=None, warehouse_bucket_uri=None):
31
31
  if compartment_id and not isinstance(compartment_id, str):
32
32
  raise TypeError("Expected argument 'compartment_id' to be a str")
33
33
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -64,9 +64,6 @@ class GetSqlEndpointResult:
64
64
  if lake_id and not isinstance(lake_id, str):
65
65
  raise TypeError("Expected argument 'lake_id' to be a str")
66
66
  pulumi.set(__self__, "lake_id", lake_id)
67
- if last_accepted_request_token and not isinstance(last_accepted_request_token, str):
68
- raise TypeError("Expected argument 'last_accepted_request_token' to be a str")
69
- pulumi.set(__self__, "last_accepted_request_token", last_accepted_request_token)
70
67
  if max_executor_count and not isinstance(max_executor_count, int):
71
68
  raise TypeError("Expected argument 'max_executor_count' to be a int")
72
69
  pulumi.set(__self__, "max_executor_count", max_executor_count)
@@ -203,14 +200,6 @@ class GetSqlEndpointResult:
203
200
  """
204
201
  return pulumi.get(self, "lake_id")
205
202
 
206
- @property
207
- @pulumi.getter(name="lastAcceptedRequestToken")
208
- def last_accepted_request_token(self) -> str:
209
- """
210
- This token is used by Splat, and indicates that the service accepts the request, and that the request is currently being processed.
211
- """
212
- return pulumi.get(self, "last_accepted_request_token")
213
-
214
203
  @property
215
204
  @pulumi.getter(name="maxExecutorCount")
216
205
  def max_executor_count(self) -> int:
@@ -331,7 +320,6 @@ class AwaitableGetSqlEndpointResult(GetSqlEndpointResult):
331
320
  id=self.id,
332
321
  jdbc_endpoint_url=self.jdbc_endpoint_url,
333
322
  lake_id=self.lake_id,
334
- last_accepted_request_token=self.last_accepted_request_token,
335
323
  max_executor_count=self.max_executor_count,
336
324
  metastore_id=self.metastore_id,
337
325
  min_executor_count=self.min_executor_count,
@@ -384,7 +372,6 @@ def get_sql_endpoint(sql_endpoint_id: Optional[str] = None,
384
372
  id=pulumi.get(__ret__, 'id'),
385
373
  jdbc_endpoint_url=pulumi.get(__ret__, 'jdbc_endpoint_url'),
386
374
  lake_id=pulumi.get(__ret__, 'lake_id'),
387
- last_accepted_request_token=pulumi.get(__ret__, 'last_accepted_request_token'),
388
375
  max_executor_count=pulumi.get(__ret__, 'max_executor_count'),
389
376
  metastore_id=pulumi.get(__ret__, 'metastore_id'),
390
377
  min_executor_count=pulumi.get(__ret__, 'min_executor_count'),
@@ -434,7 +421,6 @@ def get_sql_endpoint_output(sql_endpoint_id: Optional[pulumi.Input[str]] = None,
434
421
  id=pulumi.get(__response__, 'id'),
435
422
  jdbc_endpoint_url=pulumi.get(__response__, 'jdbc_endpoint_url'),
436
423
  lake_id=pulumi.get(__response__, 'lake_id'),
437
- last_accepted_request_token=pulumi.get(__response__, 'last_accepted_request_token'),
438
424
  max_executor_count=pulumi.get(__response__, 'max_executor_count'),
439
425
  metastore_id=pulumi.get(__response__, 'metastore_id'),
440
426
  min_executor_count=pulumi.get(__response__, 'min_executor_count'),
@@ -4212,7 +4212,6 @@ class GetSqlEndpointsSqlEndpointCollectionItemResult(dict):
4212
4212
  id: str,
4213
4213
  jdbc_endpoint_url: str,
4214
4214
  lake_id: str,
4215
- last_accepted_request_token: str,
4216
4215
  max_executor_count: int,
4217
4216
  metastore_id: str,
4218
4217
  min_executor_count: int,
@@ -4238,7 +4237,6 @@ class GetSqlEndpointsSqlEndpointCollectionItemResult(dict):
4238
4237
  :param str id: The provision identifier that is immutable on creation.
4239
4238
  :param str jdbc_endpoint_url: The JDBC URL field. For example, jdbc:spark://{serviceFQDN}:443/default;SparkServerType=DFI
4240
4239
  :param str lake_id: The OCID of Oracle Cloud Infrastructure Lake.
4241
- :param str last_accepted_request_token: This token is used by Splat, and indicates that the service accepts the request, and that the request is currently being processed.
4242
4240
  :param int max_executor_count: The maximum number of executors.
4243
4241
  :param str metastore_id: The OCID of Oracle Cloud Infrastructure Hive Metastore.
4244
4242
  :param int min_executor_count: The minimum number of executors.
@@ -4264,7 +4262,6 @@ class GetSqlEndpointsSqlEndpointCollectionItemResult(dict):
4264
4262
  pulumi.set(__self__, "id", id)
4265
4263
  pulumi.set(__self__, "jdbc_endpoint_url", jdbc_endpoint_url)
4266
4264
  pulumi.set(__self__, "lake_id", lake_id)
4267
- pulumi.set(__self__, "last_accepted_request_token", last_accepted_request_token)
4268
4265
  pulumi.set(__self__, "max_executor_count", max_executor_count)
4269
4266
  pulumi.set(__self__, "metastore_id", metastore_id)
4270
4267
  pulumi.set(__self__, "min_executor_count", min_executor_count)
@@ -4374,14 +4371,6 @@ class GetSqlEndpointsSqlEndpointCollectionItemResult(dict):
4374
4371
  """
4375
4372
  return pulumi.get(self, "lake_id")
4376
4373
 
4377
- @property
4378
- @pulumi.getter(name="lastAcceptedRequestToken")
4379
- def last_accepted_request_token(self) -> str:
4380
- """
4381
- This token is used by Splat, and indicates that the service accepts the request, and that the request is currently being processed.
4382
- """
4383
- return pulumi.get(self, "last_accepted_request_token")
4384
-
4385
4374
  @property
4386
4375
  @pulumi.getter(name="maxExecutorCount")
4387
4376
  def max_executor_count(self) -> int: