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
@@ -61,6 +61,7 @@ class ConnectionArgs:
61
61
  producer_properties: Optional[pulumi.Input[str]] = None,
62
62
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
63
63
  region: Optional[pulumi.Input[str]] = None,
64
+ routing_method: Optional[pulumi.Input[str]] = None,
64
65
  sas_token: Optional[pulumi.Input[str]] = None,
65
66
  secret_access_key: Optional[pulumi.Input[str]] = None,
66
67
  security_protocol: Optional[pulumi.Input[str]] = None,
@@ -127,12 +128,14 @@ class ConnectionArgs:
127
128
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
128
129
  :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
129
130
  :param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
130
- :param pulumi.Input[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.
131
- :param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of private key file in PEM format.
131
+ :param pulumi.Input[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.
132
+ 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.
133
+ :param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
132
134
  :param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
133
135
  :param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
134
136
  :param pulumi.Input[str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
135
137
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
138
+ :param pulumi.Input[str] routing_method: (Updatable) 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.
136
139
  :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
137
140
  :param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
138
141
  :param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
@@ -148,7 +151,7 @@ class ConnectionArgs:
148
151
  :param pulumi.Input[str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
149
152
  :param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
150
153
  :param pulumi.Input[str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
151
- :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
154
+ :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
152
155
  :param pulumi.Input[str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
153
156
  :param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
154
157
  :param pulumi.Input[str] trust_store_password: (Updatable) The TrustStore password.
@@ -247,6 +250,8 @@ class ConnectionArgs:
247
250
  pulumi.set(__self__, "public_key_fingerprint", public_key_fingerprint)
248
251
  if region is not None:
249
252
  pulumi.set(__self__, "region", region)
253
+ if routing_method is not None:
254
+ pulumi.set(__self__, "routing_method", routing_method)
250
255
  if sas_token is not None:
251
256
  pulumi.set(__self__, "sas_token", sas_token)
252
257
  if secret_access_key is not None:
@@ -769,7 +774,8 @@ class ConnectionArgs:
769
774
  @pulumi.getter(name="privateIp")
770
775
  def private_ip(self) -> Optional[pulumi.Input[str]]:
771
776
  """
772
- (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.
777
+ (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.
778
+ 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.
773
779
  """
774
780
  return pulumi.get(self, "private_ip")
775
781
 
@@ -781,7 +787,7 @@ class ConnectionArgs:
781
787
  @pulumi.getter(name="privateKeyFile")
782
788
  def private_key_file(self) -> Optional[pulumi.Input[str]]:
783
789
  """
784
- (Updatable) The base64 encoded content of private key file in PEM format.
790
+ (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
785
791
  """
786
792
  return pulumi.get(self, "private_key_file")
787
793
 
@@ -837,6 +843,18 @@ class ConnectionArgs:
837
843
  def region(self, value: Optional[pulumi.Input[str]]):
838
844
  pulumi.set(self, "region", value)
839
845
 
846
+ @property
847
+ @pulumi.getter(name="routingMethod")
848
+ def routing_method(self) -> Optional[pulumi.Input[str]]:
849
+ """
850
+ (Updatable) 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.
851
+ """
852
+ return pulumi.get(self, "routing_method")
853
+
854
+ @routing_method.setter
855
+ def routing_method(self, value: Optional[pulumi.Input[str]]):
856
+ pulumi.set(self, "routing_method", value)
857
+
840
858
  @property
841
859
  @pulumi.getter(name="sasToken")
842
860
  def sas_token(self) -> Optional[pulumi.Input[str]]:
@@ -1021,7 +1039,7 @@ class ConnectionArgs:
1021
1039
  @pulumi.getter(name="subnetId")
1022
1040
  def subnet_id(self) -> Optional[pulumi.Input[str]]:
1023
1041
  """
1024
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1042
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
1025
1043
  """
1026
1044
  return pulumi.get(self, "subnet_id")
1027
1045
 
@@ -1178,6 +1196,7 @@ class _ConnectionState:
1178
1196
  producer_properties: Optional[pulumi.Input[str]] = None,
1179
1197
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
1180
1198
  region: Optional[pulumi.Input[str]] = None,
1199
+ routing_method: Optional[pulumi.Input[str]] = None,
1181
1200
  sas_token: Optional[pulumi.Input[str]] = None,
1182
1201
  secret_access_key: Optional[pulumi.Input[str]] = None,
1183
1202
  security_protocol: Optional[pulumi.Input[str]] = None,
@@ -1250,12 +1269,14 @@ class _ConnectionState:
1250
1269
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
1251
1270
  :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
1252
1271
  :param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
1253
- :param pulumi.Input[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.
1254
- :param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of private key file in PEM format.
1272
+ :param pulumi.Input[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.
1273
+ 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.
1274
+ :param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
1255
1275
  :param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
1256
1276
  :param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
1257
1277
  :param pulumi.Input[str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
1258
1278
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
1279
+ :param pulumi.Input[str] routing_method: (Updatable) 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.
1259
1280
  :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
1260
1281
  :param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
1261
1282
  :param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
@@ -1272,7 +1293,7 @@ class _ConnectionState:
1272
1293
  :param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
1273
1294
  :param pulumi.Input[str] state: Possible lifecycle states for connection.
1274
1295
  :param pulumi.Input[str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
1275
- :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1296
+ :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
1276
1297
  :param pulumi.Input[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}}`
1277
1298
  :param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
1278
1299
  :param pulumi.Input[str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
@@ -1381,6 +1402,8 @@ class _ConnectionState:
1381
1402
  pulumi.set(__self__, "public_key_fingerprint", public_key_fingerprint)
1382
1403
  if region is not None:
1383
1404
  pulumi.set(__self__, "region", region)
1405
+ if routing_method is not None:
1406
+ pulumi.set(__self__, "routing_method", routing_method)
1384
1407
  if sas_token is not None:
1385
1408
  pulumi.set(__self__, "sas_token", sas_token)
1386
1409
  if secret_access_key is not None:
@@ -1925,7 +1948,8 @@ class _ConnectionState:
1925
1948
  @pulumi.getter(name="privateIp")
1926
1949
  def private_ip(self) -> Optional[pulumi.Input[str]]:
1927
1950
  """
1928
- (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.
1951
+ (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.
1952
+ 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.
1929
1953
  """
1930
1954
  return pulumi.get(self, "private_ip")
1931
1955
 
@@ -1937,7 +1961,7 @@ class _ConnectionState:
1937
1961
  @pulumi.getter(name="privateKeyFile")
1938
1962
  def private_key_file(self) -> Optional[pulumi.Input[str]]:
1939
1963
  """
1940
- (Updatable) The base64 encoded content of private key file in PEM format.
1964
+ (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
1941
1965
  """
1942
1966
  return pulumi.get(self, "private_key_file")
1943
1967
 
@@ -1993,6 +2017,18 @@ class _ConnectionState:
1993
2017
  def region(self, value: Optional[pulumi.Input[str]]):
1994
2018
  pulumi.set(self, "region", value)
1995
2019
 
2020
+ @property
2021
+ @pulumi.getter(name="routingMethod")
2022
+ def routing_method(self) -> Optional[pulumi.Input[str]]:
2023
+ """
2024
+ (Updatable) 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.
2025
+ """
2026
+ return pulumi.get(self, "routing_method")
2027
+
2028
+ @routing_method.setter
2029
+ def routing_method(self, value: Optional[pulumi.Input[str]]):
2030
+ pulumi.set(self, "routing_method", value)
2031
+
1996
2032
  @property
1997
2033
  @pulumi.getter(name="sasToken")
1998
2034
  def sas_token(self) -> Optional[pulumi.Input[str]]:
@@ -2189,7 +2225,7 @@ class _ConnectionState:
2189
2225
  @pulumi.getter(name="subnetId")
2190
2226
  def subnet_id(self) -> Optional[pulumi.Input[str]]:
2191
2227
  """
2192
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
2228
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
2193
2229
  """
2194
2230
  return pulumi.get(self, "subnet_id")
2195
2231
 
@@ -2394,6 +2430,7 @@ class Connection(pulumi.CustomResource):
2394
2430
  producer_properties: Optional[pulumi.Input[str]] = None,
2395
2431
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
2396
2432
  region: Optional[pulumi.Input[str]] = None,
2433
+ routing_method: Optional[pulumi.Input[str]] = None,
2397
2434
  sas_token: Optional[pulumi.Input[str]] = None,
2398
2435
  secret_access_key: Optional[pulumi.Input[str]] = None,
2399
2436
  security_protocol: Optional[pulumi.Input[str]] = None,
@@ -2488,6 +2525,7 @@ class Connection(pulumi.CustomResource):
2488
2525
  producer_properties=var["connection_producer_properties"],
2489
2526
  public_key_fingerprint=var["connection_public_key_fingerprint"],
2490
2527
  region=var["connection_region"],
2528
+ routing_method=var["connection_routing_method"],
2491
2529
  sas_token=var["connection_sas_token"],
2492
2530
  secret_access_key=var["connection_secret_access_key"],
2493
2531
  security_protocol=var["connection_security_protocol"],
@@ -2563,12 +2601,14 @@ class Connection(pulumi.CustomResource):
2563
2601
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
2564
2602
  :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
2565
2603
  :param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
2566
- :param pulumi.Input[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.
2567
- :param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of private key file in PEM format.
2604
+ :param pulumi.Input[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.
2605
+ 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.
2606
+ :param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
2568
2607
  :param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
2569
2608
  :param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
2570
2609
  :param pulumi.Input[str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
2571
2610
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
2611
+ :param pulumi.Input[str] routing_method: (Updatable) 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.
2572
2612
  :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
2573
2613
  :param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
2574
2614
  :param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
@@ -2584,7 +2624,7 @@ class Connection(pulumi.CustomResource):
2584
2624
  :param pulumi.Input[str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
2585
2625
  :param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
2586
2626
  :param pulumi.Input[str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
2587
- :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
2627
+ :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
2588
2628
  :param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
2589
2629
  :param pulumi.Input[str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
2590
2630
  :param pulumi.Input[str] trust_store: (Updatable) The base64 encoded content of the TrustStore file.
@@ -2672,6 +2712,7 @@ class Connection(pulumi.CustomResource):
2672
2712
  producer_properties=var["connection_producer_properties"],
2673
2713
  public_key_fingerprint=var["connection_public_key_fingerprint"],
2674
2714
  region=var["connection_region"],
2715
+ routing_method=var["connection_routing_method"],
2675
2716
  sas_token=var["connection_sas_token"],
2676
2717
  secret_access_key=var["connection_secret_access_key"],
2677
2718
  security_protocol=var["connection_security_protocol"],
@@ -2765,6 +2806,7 @@ class Connection(pulumi.CustomResource):
2765
2806
  producer_properties: Optional[pulumi.Input[str]] = None,
2766
2807
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
2767
2808
  region: Optional[pulumi.Input[str]] = None,
2809
+ routing_method: Optional[pulumi.Input[str]] = None,
2768
2810
  sas_token: Optional[pulumi.Input[str]] = None,
2769
2811
  secret_access_key: Optional[pulumi.Input[str]] = None,
2770
2812
  security_protocol: Optional[pulumi.Input[str]] = None,
@@ -2849,6 +2891,7 @@ class Connection(pulumi.CustomResource):
2849
2891
  __props__.__dict__["producer_properties"] = producer_properties
2850
2892
  __props__.__dict__["public_key_fingerprint"] = public_key_fingerprint
2851
2893
  __props__.__dict__["region"] = region
2894
+ __props__.__dict__["routing_method"] = routing_method
2852
2895
  __props__.__dict__["sas_token"] = sas_token
2853
2896
  __props__.__dict__["secret_access_key"] = secret_access_key
2854
2897
  __props__.__dict__["security_protocol"] = security_protocol
@@ -2940,6 +2983,7 @@ class Connection(pulumi.CustomResource):
2940
2983
  producer_properties: Optional[pulumi.Input[str]] = None,
2941
2984
  public_key_fingerprint: Optional[pulumi.Input[str]] = None,
2942
2985
  region: Optional[pulumi.Input[str]] = None,
2986
+ routing_method: Optional[pulumi.Input[str]] = None,
2943
2987
  sas_token: Optional[pulumi.Input[str]] = None,
2944
2988
  secret_access_key: Optional[pulumi.Input[str]] = None,
2945
2989
  security_protocol: Optional[pulumi.Input[str]] = None,
@@ -3017,12 +3061,14 @@ class Connection(pulumi.CustomResource):
3017
3061
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
3018
3062
  :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
3019
3063
  :param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
3020
- :param pulumi.Input[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.
3021
- :param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of private key file in PEM format.
3064
+ :param pulumi.Input[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.
3065
+ 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.
3066
+ :param pulumi.Input[str] private_key_file: (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
3022
3067
  :param pulumi.Input[str] private_key_passphrase: (Updatable) Password if the private key file is encrypted.
3023
3068
  :param pulumi.Input[str] producer_properties: (Updatable) The base64 encoded content of the producer.properties file.
3024
3069
  :param pulumi.Input[str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
3025
3070
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
3071
+ :param pulumi.Input[str] routing_method: (Updatable) 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.
3026
3072
  :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
3027
3073
  :param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
3028
3074
  :param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
@@ -3039,7 +3085,7 @@ class Connection(pulumi.CustomResource):
3039
3085
  :param pulumi.Input[str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
3040
3086
  :param pulumi.Input[str] state: Possible lifecycle states for connection.
3041
3087
  :param pulumi.Input[str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
3042
- :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
3088
+ :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
3043
3089
  :param pulumi.Input[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}}`
3044
3090
  :param pulumi.Input[str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
3045
3091
  :param pulumi.Input[str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
@@ -3106,6 +3152,7 @@ class Connection(pulumi.CustomResource):
3106
3152
  __props__.__dict__["producer_properties"] = producer_properties
3107
3153
  __props__.__dict__["public_key_fingerprint"] = public_key_fingerprint
3108
3154
  __props__.__dict__["region"] = region
3155
+ __props__.__dict__["routing_method"] = routing_method
3109
3156
  __props__.__dict__["sas_token"] = sas_token
3110
3157
  __props__.__dict__["secret_access_key"] = secret_access_key
3111
3158
  __props__.__dict__["security_protocol"] = security_protocol
@@ -3462,7 +3509,8 @@ class Connection(pulumi.CustomResource):
3462
3509
  @pulumi.getter(name="privateIp")
3463
3510
  def private_ip(self) -> pulumi.Output[str]:
3464
3511
  """
3465
- (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.
3512
+ (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.
3513
+ 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.
3466
3514
  """
3467
3515
  return pulumi.get(self, "private_ip")
3468
3516
 
@@ -3470,7 +3518,7 @@ class Connection(pulumi.CustomResource):
3470
3518
  @pulumi.getter(name="privateKeyFile")
3471
3519
  def private_key_file(self) -> pulumi.Output[str]:
3472
3520
  """
3473
- (Updatable) The base64 encoded content of private key file in PEM format.
3521
+ (Updatable) The base64 encoded content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
3474
3522
  """
3475
3523
  return pulumi.get(self, "private_key_file")
3476
3524
 
@@ -3506,6 +3554,14 @@ class Connection(pulumi.CustomResource):
3506
3554
  """
3507
3555
  return pulumi.get(self, "region")
3508
3556
 
3557
+ @property
3558
+ @pulumi.getter(name="routingMethod")
3559
+ def routing_method(self) -> pulumi.Output[str]:
3560
+ """
3561
+ (Updatable) 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.
3562
+ """
3563
+ return pulumi.get(self, "routing_method")
3564
+
3509
3565
  @property
3510
3566
  @pulumi.getter(name="sasToken")
3511
3567
  def sas_token(self) -> pulumi.Output[str]:
@@ -3638,7 +3694,7 @@ class Connection(pulumi.CustomResource):
3638
3694
  @pulumi.getter(name="subnetId")
3639
3695
  def subnet_id(self) -> pulumi.Output[str]:
3640
3696
  """
3641
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
3697
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
3642
3698
  """
3643
3699
  return pulumi.get(self, "subnet_id")
3644
3700
 
@@ -49,7 +49,7 @@ class DatabaseRegistrationArgs:
49
49
  :param pulumi.Input[str] key_id: Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
50
50
  :param pulumi.Input[str] secret_compartment_id: The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
51
51
  :param pulumi.Input[str] session_mode: (Updatable) 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.
52
- :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
52
+ :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
53
53
  :param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
54
54
  :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
55
55
 
@@ -272,7 +272,7 @@ class DatabaseRegistrationArgs:
272
272
  @pulumi.getter(name="subnetId")
273
273
  def subnet_id(self) -> Optional[pulumi.Input[str]]:
274
274
  """
275
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
275
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
276
276
  """
277
277
  return pulumi.get(self, "subnet_id")
278
278
 
@@ -357,7 +357,7 @@ class _DatabaseRegistrationState:
357
357
  :param pulumi.Input[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.
358
358
  :param pulumi.Input[str] session_mode: (Updatable) 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.
359
359
  :param pulumi.Input[str] state: Possible lifecycle states.
360
- :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
360
+ :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
361
361
  :param pulumi.Input[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}}`
362
362
  :param pulumi.Input[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`.
363
363
  :param pulumi.Input[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`.
@@ -640,7 +640,7 @@ class _DatabaseRegistrationState:
640
640
  @pulumi.getter(name="subnetId")
641
641
  def subnet_id(self) -> Optional[pulumi.Input[str]]:
642
642
  """
643
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
643
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
644
644
  """
645
645
  return pulumi.get(self, "subnet_id")
646
646
 
@@ -810,7 +810,7 @@ class DatabaseRegistration(pulumi.CustomResource):
810
810
  :param pulumi.Input[str] password: (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
811
811
  :param pulumi.Input[str] secret_compartment_id: The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
812
812
  :param pulumi.Input[str] session_mode: (Updatable) 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.
813
- :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
813
+ :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
814
814
  :param pulumi.Input[str] username: (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
815
815
  :param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
816
816
  :param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
@@ -1011,7 +1011,7 @@ class DatabaseRegistration(pulumi.CustomResource):
1011
1011
  :param pulumi.Input[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.
1012
1012
  :param pulumi.Input[str] session_mode: (Updatable) 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.
1013
1013
  :param pulumi.Input[str] state: Possible lifecycle states.
1014
- :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1014
+ :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
1015
1015
  :param pulumi.Input[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}}`
1016
1016
  :param pulumi.Input[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`.
1017
1017
  :param pulumi.Input[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`.
@@ -1202,7 +1202,7 @@ class DatabaseRegistration(pulumi.CustomResource):
1202
1202
  @pulumi.getter(name="subnetId")
1203
1203
  def subnet_id(self) -> pulumi.Output[str]:
1204
1204
  """
1205
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
1205
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
1206
1206
  """
1207
1207
  return pulumi.get(self, "subnet_id")
1208
1208