pulumi-oci 1.17.0a1702406535__py3-none-any.whl → 1.18.0a1702447417__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 (82) hide show
  1. pulumi_oci/__init__.py +48 -0
  2. pulumi_oci/core/instance.py +7 -7
  3. pulumi_oci/database/__init__.py +1 -0
  4. pulumi_oci/database/autonomous_database.py +20 -1
  5. pulumi_oci/database/autonomous_database_saas_admin_user.py +479 -0
  6. pulumi_oci/datacatalog/_inputs.py +216 -0
  7. pulumi_oci/datacatalog/catalog.py +58 -0
  8. pulumi_oci/datacatalog/catalog_private_endpoint.py +58 -0
  9. pulumi_oci/datacatalog/get_catalog.py +28 -1
  10. pulumi_oci/datacatalog/get_catalog_private_endpoint.py +28 -1
  11. pulumi_oci/datacatalog/get_metastore.py +28 -1
  12. pulumi_oci/datacatalog/metastore.py +58 -0
  13. pulumi_oci/datacatalog/outputs.py +603 -0
  14. pulumi_oci/datasafe/_inputs.py +32 -0
  15. pulumi_oci/datasafe/database_security_config.py +7 -7
  16. pulumi_oci/datasafe/get_audit_events.py +1 -1
  17. pulumi_oci/datasafe/get_discovery_analytics.py +38 -1
  18. pulumi_oci/datasafe/get_report.py +1 -1
  19. pulumi_oci/datasafe/get_report_content.py +2 -2
  20. pulumi_oci/datasafe/get_report_definition.py +4 -4
  21. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +2 -2
  22. pulumi_oci/datasafe/get_sdm_masking_policy_differences.py +1 -1
  23. pulumi_oci/datasafe/get_security_assessment_findings.py +1 -1
  24. pulumi_oci/datasafe/get_sensitive_type.py +14 -1
  25. pulumi_oci/datasafe/get_sensitive_types.py +21 -1
  26. pulumi_oci/datasafe/get_user_assessment_profile_analytics.py +2 -2
  27. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  28. pulumi_oci/datasafe/masking_policies_masking_column.py +2 -0
  29. pulumi_oci/datasafe/outputs.py +114 -24
  30. pulumi_oci/datasafe/report_definition.py +16 -16
  31. pulumi_oci/datasafe/sensitive_type.py +28 -0
  32. pulumi_oci/datasafe/sql_firewall_policy.py +103 -103
  33. pulumi_oci/goldengate/_inputs.py +28 -2
  34. pulumi_oci/goldengate/connection.py +77 -21
  35. pulumi_oci/goldengate/database_registration.py +7 -7
  36. pulumi_oci/goldengate/deployment.py +110 -7
  37. pulumi_oci/goldengate/get_connection.py +16 -2
  38. pulumi_oci/goldengate/get_database_registration.py +1 -1
  39. pulumi_oci/goldengate/get_deployment.py +41 -2
  40. pulumi_oci/goldengate/outputs.py +138 -11
  41. pulumi_oci/identity/__init__.py +3 -0
  42. pulumi_oci/identity/_inputs.py +862 -6
  43. pulumi_oci/identity/domains_identity_propagation_trust.py +3489 -0
  44. pulumi_oci/identity/domains_user.py +40 -41
  45. pulumi_oci/identity/get_domains_identity_propagation_trust.py +581 -0
  46. pulumi_oci/identity/get_domains_identity_propagation_trusts.py +310 -0
  47. pulumi_oci/identity/outputs.py +2625 -821
  48. pulumi_oci/logging/_inputs.py +17 -1
  49. pulumi_oci/logging/log.py +2 -0
  50. pulumi_oci/logging/outputs.py +35 -1
  51. pulumi_oci/meteringcomputation/__init__.py +7 -0
  52. pulumi_oci/meteringcomputation/_inputs.py +787 -0
  53. pulumi_oci/meteringcomputation/get_average_carbon_emission.py +121 -0
  54. pulumi_oci/meteringcomputation/get_clean_energy_usage.py +116 -0
  55. pulumi_oci/meteringcomputation/get_schedule.py +2 -2
  56. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_config.py +119 -0
  57. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py +136 -0
  58. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py +132 -0
  59. pulumi_oci/meteringcomputation/outputs.py +2410 -1149
  60. pulumi_oci/meteringcomputation/schedule.py +14 -14
  61. pulumi_oci/meteringcomputation/usage_carbon_emission.py +597 -0
  62. pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py +282 -0
  63. pulumi_oci/opsi/__init__.py +4 -0
  64. pulumi_oci/opsi/_inputs.py +46 -0
  65. pulumi_oci/opsi/awr_hub.py +49 -22
  66. pulumi_oci/opsi/awr_hub_source.py +957 -0
  67. pulumi_oci/opsi/awr_hub_source_awrhubsources_management.py +248 -0
  68. pulumi_oci/opsi/get_awr_hub.py +14 -1
  69. pulumi_oci/opsi/get_awr_hub_source.py +391 -0
  70. pulumi_oci/opsi/get_awr_hub_sources.py +250 -0
  71. pulumi_oci/opsi/operations_insights_warehouse.py +7 -7
  72. pulumi_oci/opsi/outputs.py +319 -0
  73. pulumi_oci/optimizer/get_histories.py +18 -1
  74. pulumi_oci/optimizer/get_profile.py +11 -1
  75. pulumi_oci/optimizer/get_resource_action.py +22 -5
  76. pulumi_oci/optimizer/get_resource_actions.py +18 -1
  77. pulumi_oci/optimizer/outputs.py +7 -0
  78. pulumi_oci/optimizer/profile.py +20 -0
  79. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/METADATA +1 -1
  80. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/RECORD +82 -67
  81. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/WHEEL +0 -0
  82. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/top_level.txt +0 -0
@@ -15,6 +15,7 @@ __all__ = [
15
15
  'ConnectionBootstrapServer',
16
16
  'ConnectionIngressIp',
17
17
  'DeploymentDeploymentDiagnosticData',
18
+ 'DeploymentIngressIp',
18
19
  'DeploymentMaintenanceConfiguration',
19
20
  'DeploymentMaintenanceWindow',
20
21
  'DeploymentOggData',
@@ -40,6 +41,7 @@ __all__ = [
40
41
  'GetDeploymentCertificatesCertificateCollectionItemResult',
41
42
  'GetDeploymentCertificatesFilterResult',
42
43
  'GetDeploymentDeploymentDiagnosticDataResult',
44
+ 'GetDeploymentIngressIpResult',
43
45
  'GetDeploymentMaintenanceConfigurationResult',
44
46
  'GetDeploymentMaintenanceWindowResult',
45
47
  'GetDeploymentOggDataResult',
@@ -56,6 +58,7 @@ __all__ = [
56
58
  'GetDeploymentsDeploymentCollectionResult',
57
59
  'GetDeploymentsDeploymentCollectionItemResult',
58
60
  'GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataResult',
61
+ 'GetDeploymentsDeploymentCollectionItemIngressIpResult',
59
62
  'GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationResult',
60
63
  'GetDeploymentsDeploymentCollectionItemMaintenanceWindowResult',
61
64
  'GetDeploymentsDeploymentCollectionItemOggDataResult',
@@ -132,7 +135,8 @@ class ConnectionBootstrapServer(dict):
132
135
  :param str host: (Updatable) The name or address of a host. In case of Generic connection type host and port separated by colon. Example: `"server.example.com:1234"`
133
136
  For multiple hosts, provide a comma separated list. Example: `"server1.example.com:1000,server1.example.com:2000"`
134
137
  :param int port: (Updatable) The port of an endpoint usually specified for a connection.
135
- :param str private_ip: (Updatable) The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
138
+ :param str private_ip: (Updatable) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
139
+ The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
136
140
  """
137
141
  if host is not None:
138
142
  pulumi.set(__self__, "host", host)
@@ -162,7 +166,8 @@ class ConnectionBootstrapServer(dict):
162
166
  @pulumi.getter(name="privateIp")
163
167
  def private_ip(self) -> Optional[str]:
164
168
  """
165
- (Updatable) The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
169
+ (Updatable) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
170
+ The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
166
171
  """
167
172
  return pulumi.get(self, "private_ip")
168
173
 
@@ -303,6 +308,42 @@ class DeploymentDeploymentDiagnosticData(dict):
303
308
  return pulumi.get(self, "time_diagnostic_start")
304
309
 
305
310
 
311
+ @pulumi.output_type
312
+ class DeploymentIngressIp(dict):
313
+ @staticmethod
314
+ def __key_warning(key: str):
315
+ suggest = None
316
+ if key == "ingressIp":
317
+ suggest = "ingress_ip"
318
+
319
+ if suggest:
320
+ pulumi.log.warn(f"Key '{key}' not found in DeploymentIngressIp. Access the value via the '{suggest}' property getter instead.")
321
+
322
+ def __getitem__(self, key: str) -> Any:
323
+ DeploymentIngressIp.__key_warning(key)
324
+ return super().__getitem__(key)
325
+
326
+ def get(self, key: str, default = None) -> Any:
327
+ DeploymentIngressIp.__key_warning(key)
328
+ return super().get(key, default)
329
+
330
+ def __init__(__self__, *,
331
+ ingress_ip: Optional[str] = None):
332
+ """
333
+ :param str ingress_ip: A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
334
+ """
335
+ if ingress_ip is not None:
336
+ pulumi.set(__self__, "ingress_ip", ingress_ip)
337
+
338
+ @property
339
+ @pulumi.getter(name="ingressIp")
340
+ def ingress_ip(self) -> Optional[str]:
341
+ """
342
+ A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
343
+ """
344
+ return pulumi.get(self, "ingress_ip")
345
+
346
+
306
347
  @pulumi.output_type
307
348
  class DeploymentMaintenanceConfiguration(dict):
308
349
  @staticmethod
@@ -764,7 +805,8 @@ class GetConnectionBootstrapServerResult(dict):
764
805
  In case of Generic connection type it represents the Host and port separated by colon. Example: `"server.example.com:1234"`
765
806
  For multiple hosts, provide a comma separated list. Example: `"server1.example.com:1000,server1.example.com:2000"`
766
807
  :param int port: The port of an endpoint usually specified for a connection.
767
- :param str private_ip: The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
808
+ :param str private_ip: Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
809
+ The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
768
810
  """
769
811
  pulumi.set(__self__, "host", host)
770
812
  pulumi.set(__self__, "port", port)
@@ -792,6 +834,7 @@ class GetConnectionBootstrapServerResult(dict):
792
834
  @pulumi.getter(name="privateIp")
793
835
  def private_ip(self) -> str:
794
836
  """
837
+ Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
795
838
  The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
796
839
  """
797
840
  return pulumi.get(self, "private_ip")
@@ -877,6 +920,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
877
920
  producer_properties: str,
878
921
  public_key_fingerprint: str,
879
922
  region: str,
923
+ routing_method: str,
880
924
  sas_token: str,
881
925
  secret_access_key: str,
882
926
  security_protocol: str,
@@ -947,8 +991,10 @@ class GetConnectionsConnectionCollectionItemResult(dict):
947
991
  :param str lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
948
992
  :param Sequence[str] nsg_ids: An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
949
993
  :param int port: The port of an endpoint usually specified for a connection.
950
- :param str private_ip: The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
994
+ :param str private_ip: Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
995
+ The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
951
996
  :param str region: The name of the region. e.g.: us-ashburn-1
997
+ :param str routing_method: Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
952
998
  :param str security_protocol: Security Protocol to be provided for the following connection types:
953
999
  * ELASTICSEARCH, KAFKA, MICROSOFT_SQLSERVER, MYSQL, POSTGRESQL, REDIS
954
1000
  * JAVA_MESSAGE_SERVICE - If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
@@ -961,7 +1007,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
961
1007
  :param str ssl_mode: SSL mode to be provided for the following connection types: MYSQL, POSTGRESQL.
962
1008
  :param str state: A filter to return only connections having the 'lifecycleState' given.
963
1009
  :param str stream_pool_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
964
- :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1010
+ :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
965
1011
  :param Mapping[str, Any] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
966
1012
  :param str technology_type: The array of technology types.
967
1013
  :param str tenancy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
@@ -1019,6 +1065,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1019
1065
  pulumi.set(__self__, "producer_properties", producer_properties)
1020
1066
  pulumi.set(__self__, "public_key_fingerprint", public_key_fingerprint)
1021
1067
  pulumi.set(__self__, "region", region)
1068
+ pulumi.set(__self__, "routing_method", routing_method)
1022
1069
  pulumi.set(__self__, "sas_token", sas_token)
1023
1070
  pulumi.set(__self__, "secret_access_key", secret_access_key)
1024
1071
  pulumi.set(__self__, "security_protocol", security_protocol)
@@ -1362,6 +1409,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1362
1409
  @pulumi.getter(name="privateIp")
1363
1410
  def private_ip(self) -> str:
1364
1411
  """
1412
+ Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
1365
1413
  The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
1366
1414
  """
1367
1415
  return pulumi.get(self, "private_ip")
@@ -1394,6 +1442,14 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1394
1442
  """
1395
1443
  return pulumi.get(self, "region")
1396
1444
 
1445
+ @property
1446
+ @pulumi.getter(name="routingMethod")
1447
+ def routing_method(self) -> str:
1448
+ """
1449
+ Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
1450
+ """
1451
+ return pulumi.get(self, "routing_method")
1452
+
1397
1453
  @property
1398
1454
  @pulumi.getter(name="sasToken")
1399
1455
  def sas_token(self) -> str:
@@ -1508,7 +1564,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1508
1564
  @pulumi.getter(name="subnetId")
1509
1565
  def subnet_id(self) -> str:
1510
1566
  """
1511
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1567
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
1512
1568
  """
1513
1569
  return pulumi.get(self, "subnet_id")
1514
1570
 
@@ -1640,7 +1696,8 @@ class GetConnectionsConnectionCollectionItemBootstrapServerResult(dict):
1640
1696
  In case of Generic connection type it represents the Host and port separated by colon. Example: `"server.example.com:1234"`
1641
1697
  For multiple hosts, provide a comma separated list. Example: `"server1.example.com:1000,server1.example.com:2000"`
1642
1698
  :param int port: The port of an endpoint usually specified for a connection.
1643
- :param str private_ip: The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
1699
+ :param str private_ip: Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
1700
+ The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
1644
1701
  """
1645
1702
  pulumi.set(__self__, "host", host)
1646
1703
  pulumi.set(__self__, "port", port)
@@ -1668,6 +1725,7 @@ class GetConnectionsConnectionCollectionItemBootstrapServerResult(dict):
1668
1725
  @pulumi.getter(name="privateIp")
1669
1726
  def private_ip(self) -> str:
1670
1727
  """
1728
+ Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
1671
1729
  The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
1672
1730
  """
1673
1731
  return pulumi.get(self, "private_ip")
@@ -1784,7 +1842,7 @@ class GetDatabaseRegistrationsDatabaseRegistrationCollectionItemResult(dict):
1784
1842
  :param str secret_id: The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
1785
1843
  :param str session_mode: The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
1786
1844
  :param str state: A filter to return only the resources that match the 'lifecycleState' given.
1787
- :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1845
+ :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
1788
1846
  :param Mapping[str, Any] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
1789
1847
  :param str time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
1790
1848
  :param str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
@@ -1971,7 +2029,7 @@ class GetDatabaseRegistrationsDatabaseRegistrationCollectionItemResult(dict):
1971
2029
  @pulumi.getter(name="subnetId")
1972
2030
  def subnet_id(self) -> str:
1973
2031
  """
1974
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
2032
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
1975
2033
  """
1976
2034
  return pulumi.get(self, "subnet_id")
1977
2035
 
@@ -2601,6 +2659,24 @@ class GetDeploymentDeploymentDiagnosticDataResult(dict):
2601
2659
  return pulumi.get(self, "time_diagnostic_start")
2602
2660
 
2603
2661
 
2662
+ @pulumi.output_type
2663
+ class GetDeploymentIngressIpResult(dict):
2664
+ def __init__(__self__, *,
2665
+ ingress_ip: str):
2666
+ """
2667
+ :param str ingress_ip: A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
2668
+ """
2669
+ pulumi.set(__self__, "ingress_ip", ingress_ip)
2670
+
2671
+ @property
2672
+ @pulumi.getter(name="ingressIp")
2673
+ def ingress_ip(self) -> str:
2674
+ """
2675
+ A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
2676
+ """
2677
+ return pulumi.get(self, "ingress_ip")
2678
+
2679
+
2604
2680
  @pulumi.output_type
2605
2681
  class GetDeploymentMaintenanceConfigurationResult(dict):
2606
2682
  def __init__(__self__, *,
@@ -3528,6 +3604,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3528
3604
  fqdn: str,
3529
3605
  freeform_tags: Mapping[str, Any],
3530
3606
  id: str,
3607
+ ingress_ips: Sequence['outputs.GetDeploymentsDeploymentCollectionItemIngressIpResult'],
3531
3608
  is_auto_scaling_enabled: bool,
3532
3609
  is_healthy: bool,
3533
3610
  is_latest_version: bool,
@@ -3536,6 +3613,8 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3536
3613
  license_model: str,
3537
3614
  lifecycle_details: str,
3538
3615
  lifecycle_sub_state: str,
3616
+ load_balancer_id: str,
3617
+ load_balancer_subnet_id: str,
3539
3618
  maintenance_configurations: Sequence['outputs.GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationResult'],
3540
3619
  maintenance_windows: Sequence['outputs.GetDeploymentsDeploymentCollectionItemMaintenanceWindowResult'],
3541
3620
  next_maintenance_action_type: str,
@@ -3566,6 +3645,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3566
3645
  :param str fqdn: A filter to return only the resources that match the 'fqdn' given.
3567
3646
  :param Mapping[str, Any] freeform_tags: A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
3568
3647
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
3648
+ :param Sequence['GetDeploymentsDeploymentCollectionItemIngressIpArgs'] ingress_ips: List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
3569
3649
  :param bool is_auto_scaling_enabled: Indicates if auto scaling is enabled for the Deployment's CPU core count.
3570
3650
  :param bool is_healthy: True if all of the aggregate resources are working correctly.
3571
3651
  :param bool is_latest_version: Indicates if the resource is the the latest available version.
@@ -3574,6 +3654,8 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3574
3654
  :param str license_model: The Oracle license model that applies to a Deployment.
3575
3655
  :param str lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
3576
3656
  :param str lifecycle_sub_state: A filter to return only the resources that match the 'lifecycleSubState' given.
3657
+ :param str load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
3658
+ :param str load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
3577
3659
  :param Sequence['GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationArgs'] maintenance_configurations: Attributes for configuring automatic deployment maintenance.
3578
3660
  :param Sequence['GetDeploymentsDeploymentCollectionItemMaintenanceWindowArgs'] maintenance_windows: Defines the maintenance window, when automatic actions can be performed.
3579
3661
  :param str next_maintenance_action_type: Type of the next maintenance.
@@ -3584,7 +3666,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3584
3666
  :param str public_ip_address: The public IP address representing the access point for the Deployment.
3585
3667
  :param str state: A filter to return only the resources that match the 'lifecycleState' given.
3586
3668
  :param str storage_utilization_in_bytes: The amount of storage being utilized (in bytes)
3587
- :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
3669
+ :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
3588
3670
  :param Mapping[str, Any] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
3589
3671
  :param str time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
3590
3672
  :param str time_of_next_maintenance: The time of next maintenance schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
@@ -3604,6 +3686,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3604
3686
  pulumi.set(__self__, "fqdn", fqdn)
3605
3687
  pulumi.set(__self__, "freeform_tags", freeform_tags)
3606
3688
  pulumi.set(__self__, "id", id)
3689
+ pulumi.set(__self__, "ingress_ips", ingress_ips)
3607
3690
  pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
3608
3691
  pulumi.set(__self__, "is_healthy", is_healthy)
3609
3692
  pulumi.set(__self__, "is_latest_version", is_latest_version)
@@ -3612,6 +3695,8 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3612
3695
  pulumi.set(__self__, "license_model", license_model)
3613
3696
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
3614
3697
  pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
3698
+ pulumi.set(__self__, "load_balancer_id", load_balancer_id)
3699
+ pulumi.set(__self__, "load_balancer_subnet_id", load_balancer_subnet_id)
3615
3700
  pulumi.set(__self__, "maintenance_configurations", maintenance_configurations)
3616
3701
  pulumi.set(__self__, "maintenance_windows", maintenance_windows)
3617
3702
  pulumi.set(__self__, "next_maintenance_action_type", next_maintenance_action_type)
@@ -3726,6 +3811,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3726
3811
  """
3727
3812
  return pulumi.get(self, "id")
3728
3813
 
3814
+ @property
3815
+ @pulumi.getter(name="ingressIps")
3816
+ def ingress_ips(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemIngressIpResult']:
3817
+ """
3818
+ List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
3819
+ """
3820
+ return pulumi.get(self, "ingress_ips")
3821
+
3729
3822
  @property
3730
3823
  @pulumi.getter(name="isAutoScalingEnabled")
3731
3824
  def is_auto_scaling_enabled(self) -> bool:
@@ -3790,6 +3883,22 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3790
3883
  """
3791
3884
  return pulumi.get(self, "lifecycle_sub_state")
3792
3885
 
3886
+ @property
3887
+ @pulumi.getter(name="loadBalancerId")
3888
+ def load_balancer_id(self) -> str:
3889
+ """
3890
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
3891
+ """
3892
+ return pulumi.get(self, "load_balancer_id")
3893
+
3894
+ @property
3895
+ @pulumi.getter(name="loadBalancerSubnetId")
3896
+ def load_balancer_subnet_id(self) -> str:
3897
+ """
3898
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
3899
+ """
3900
+ return pulumi.get(self, "load_balancer_subnet_id")
3901
+
3793
3902
  @property
3794
3903
  @pulumi.getter(name="maintenanceConfigurations")
3795
3904
  def maintenance_configurations(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationResult']:
@@ -3874,7 +3983,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
3874
3983
  @pulumi.getter(name="subnetId")
3875
3984
  def subnet_id(self) -> str:
3876
3985
  """
3877
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
3986
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
3878
3987
  """
3879
3988
  return pulumi.get(self, "subnet_id")
3880
3989
 
@@ -4000,6 +4109,24 @@ class GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataResult(dict)
4000
4109
  return pulumi.get(self, "time_diagnostic_start")
4001
4110
 
4002
4111
 
4112
+ @pulumi.output_type
4113
+ class GetDeploymentsDeploymentCollectionItemIngressIpResult(dict):
4114
+ def __init__(__self__, *,
4115
+ ingress_ip: str):
4116
+ """
4117
+ :param str ingress_ip: A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
4118
+ """
4119
+ pulumi.set(__self__, "ingress_ip", ingress_ip)
4120
+
4121
+ @property
4122
+ @pulumi.getter(name="ingressIp")
4123
+ def ingress_ip(self) -> str:
4124
+ """
4125
+ A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
4126
+ """
4127
+ return pulumi.get(self, "ingress_ip")
4128
+
4129
+
4003
4130
  @pulumi.output_type
4004
4131
  class GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationResult(dict):
4005
4132
  def __init__(__self__, *,
@@ -30,6 +30,7 @@ from .domains_customer_secret_key import *
30
30
  from .domains_dynamic_resource_group import *
31
31
  from .domains_grant import *
32
32
  from .domains_group import *
33
+ from .domains_identity_propagation_trust import *
33
34
  from .domains_identity_provider import *
34
35
  from .domains_identity_setting import *
35
36
  from .domains_kmsi_setting import *
@@ -108,6 +109,8 @@ from .get_domains_grant import *
108
109
  from .get_domains_grants import *
109
110
  from .get_domains_group import *
110
111
  from .get_domains_groups import *
112
+ from .get_domains_identity_propagation_trust import *
113
+ from .get_domains_identity_propagation_trusts import *
111
114
  from .get_domains_identity_provider import *
112
115
  from .get_domains_identity_providers import *
113
116
  from .get_domains_identity_setting import *