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
@@ -29,19 +29,19 @@ class SqlFirewallPolicyArgs:
29
29
  violation_audit: Optional[pulumi.Input[str]] = None):
30
30
  """
31
31
  The set of arguments for constructing a SqlFirewallPolicy resource.
32
- :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL firewall policy resource.
33
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL firewall policy.
34
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL firewall policy.
35
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL firewall policy.
36
- :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL firewall policy.
32
+ :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL Firewall policy resource.
33
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL Firewall policy.
34
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL Firewall policy.
35
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL Firewall policy.
36
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL Firewall policy.
37
37
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
38
- :param pulumi.Input[str] description: (Updatable) The description of the SQL firewall policy.
39
- :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
40
- :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL firewall policy enforcement option.
38
+ :param pulumi.Input[str] description: (Updatable) The description of the SQL Firewall policy.
39
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL Firewall policy. The name does not have to be unique, and it is changeable.
40
+ :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL Firewall policy enforcement option.
41
41
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) 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"}`
42
- :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
43
- :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
44
- :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
42
+ :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL Firewall policy is enabled or disabled.
43
+ :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL Firewall action based on detection of SQL Firewall violations.
44
+ :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.
45
45
 
46
46
 
47
47
  ** IMPORTANT **
@@ -77,7 +77,7 @@ class SqlFirewallPolicyArgs:
77
77
  @pulumi.getter(name="sqlFirewallPolicyId")
78
78
  def sql_firewall_policy_id(self) -> pulumi.Input[str]:
79
79
  """
80
- The OCID of the SQL firewall policy resource.
80
+ The OCID of the SQL Firewall policy resource.
81
81
  """
82
82
  return pulumi.get(self, "sql_firewall_policy_id")
83
83
 
@@ -89,7 +89,7 @@ class SqlFirewallPolicyArgs:
89
89
  @pulumi.getter(name="allowedClientIps")
90
90
  def allowed_client_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
91
91
  """
92
- (Updatable) List of allowed ip addresses for the SQL firewall policy.
92
+ (Updatable) List of allowed ip addresses for the SQL Firewall policy.
93
93
  """
94
94
  return pulumi.get(self, "allowed_client_ips")
95
95
 
@@ -101,7 +101,7 @@ class SqlFirewallPolicyArgs:
101
101
  @pulumi.getter(name="allowedClientOsUsernames")
102
102
  def allowed_client_os_usernames(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
103
103
  """
104
- (Updatable) List of allowed operating system user names for the SQL firewall policy.
104
+ (Updatable) List of allowed operating system user names for the SQL Firewall policy.
105
105
  """
106
106
  return pulumi.get(self, "allowed_client_os_usernames")
107
107
 
@@ -113,7 +113,7 @@ class SqlFirewallPolicyArgs:
113
113
  @pulumi.getter(name="allowedClientPrograms")
114
114
  def allowed_client_programs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
115
115
  """
116
- (Updatable) List of allowed client programs for the SQL firewall policy.
116
+ (Updatable) List of allowed client programs for the SQL Firewall policy.
117
117
  """
118
118
  return pulumi.get(self, "allowed_client_programs")
119
119
 
@@ -125,7 +125,7 @@ class SqlFirewallPolicyArgs:
125
125
  @pulumi.getter(name="compartmentId")
126
126
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
127
127
  """
128
- (Updatable) The OCID of the compartment containing the SQL firewall policy.
128
+ (Updatable) The OCID of the compartment containing the SQL Firewall policy.
129
129
  """
130
130
  return pulumi.get(self, "compartment_id")
131
131
 
@@ -149,7 +149,7 @@ class SqlFirewallPolicyArgs:
149
149
  @pulumi.getter
150
150
  def description(self) -> Optional[pulumi.Input[str]]:
151
151
  """
152
- (Updatable) The description of the SQL firewall policy.
152
+ (Updatable) The description of the SQL Firewall policy.
153
153
  """
154
154
  return pulumi.get(self, "description")
155
155
 
@@ -161,7 +161,7 @@ class SqlFirewallPolicyArgs:
161
161
  @pulumi.getter(name="displayName")
162
162
  def display_name(self) -> Optional[pulumi.Input[str]]:
163
163
  """
164
- (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
164
+ (Updatable) The display name of the SQL Firewall policy. The name does not have to be unique, and it is changeable.
165
165
  """
166
166
  return pulumi.get(self, "display_name")
167
167
 
@@ -173,7 +173,7 @@ class SqlFirewallPolicyArgs:
173
173
  @pulumi.getter(name="enforcementScope")
174
174
  def enforcement_scope(self) -> Optional[pulumi.Input[str]]:
175
175
  """
176
- (Updatable) Specifies the SQL firewall policy enforcement option.
176
+ (Updatable) Specifies the SQL Firewall policy enforcement option.
177
177
  """
178
178
  return pulumi.get(self, "enforcement_scope")
179
179
 
@@ -197,7 +197,7 @@ class SqlFirewallPolicyArgs:
197
197
  @pulumi.getter
198
198
  def status(self) -> Optional[pulumi.Input[str]]:
199
199
  """
200
- (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
200
+ (Updatable) Specifies whether the SQL Firewall policy is enabled or disabled.
201
201
  """
202
202
  return pulumi.get(self, "status")
203
203
 
@@ -209,7 +209,7 @@ class SqlFirewallPolicyArgs:
209
209
  @pulumi.getter(name="violationAction")
210
210
  def violation_action(self) -> Optional[pulumi.Input[str]]:
211
211
  """
212
- (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
212
+ (Updatable) Specifies the SQL Firewall action based on detection of SQL Firewall violations.
213
213
  """
214
214
  return pulumi.get(self, "violation_action")
215
215
 
@@ -221,7 +221,7 @@ class SqlFirewallPolicyArgs:
221
221
  @pulumi.getter(name="violationAudit")
222
222
  def violation_audit(self) -> Optional[pulumi.Input[str]]:
223
223
  """
224
- (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
224
+ (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.
225
225
 
226
226
 
227
227
  ** IMPORTANT **
@@ -260,27 +260,27 @@ class _SqlFirewallPolicyState:
260
260
  violation_audit: Optional[pulumi.Input[str]] = None):
261
261
  """
262
262
  Input properties used for looking up and filtering SqlFirewallPolicy resources.
263
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL firewall policy.
264
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL firewall policy.
265
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL firewall policy.
266
- :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL firewall policy.
263
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL Firewall policy.
264
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL Firewall policy.
265
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL Firewall policy.
266
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL Firewall policy.
267
267
  :param pulumi.Input[str] db_user_name: The database user name.
268
268
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
269
- :param pulumi.Input[str] description: (Updatable) The description of the SQL firewall policy.
270
- :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
271
- :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL firewall policy enforcement option.
269
+ :param pulumi.Input[str] description: (Updatable) The description of the SQL Firewall policy.
270
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL Firewall policy. The name does not have to be unique, and it is changeable.
271
+ :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL Firewall policy enforcement option.
272
272
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) 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"}`
273
- :param pulumi.Input[str] lifecycle_details: Details about the current state of the SQL firewall policy in Data Safe.
274
- :param pulumi.Input[str] security_policy_id: The OCID of the security policy corresponding to the SQL firewall policy.
275
- :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL firewall policy resource.
276
- :param pulumi.Input[str] sql_level: Specifies the level of SQL included for this SQL firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
277
- :param pulumi.Input[str] state: The current state of the SQL firewall policy.
278
- :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
273
+ :param pulumi.Input[str] lifecycle_details: Details about the current state of the SQL Firewall policy in Data Safe.
274
+ :param pulumi.Input[str] security_policy_id: The OCID of the security policy corresponding to the SQL Firewall policy.
275
+ :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL Firewall policy resource.
276
+ :param pulumi.Input[str] sql_level: Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
277
+ :param pulumi.Input[str] state: The current state of the SQL Firewall policy.
278
+ :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL Firewall policy is enabled or disabled.
279
279
  :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
280
- :param pulumi.Input[str] time_created: The time that the SQL firewall policy was created, in the format defined by RFC3339.
281
- :param pulumi.Input[str] time_updated: The date and time the SQL firewall policy was last updated, in the format defined by RFC3339.
282
- :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
283
- :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
280
+ :param pulumi.Input[str] time_created: The time that the SQL Firewall policy was created, in the format defined by RFC3339.
281
+ :param pulumi.Input[str] time_updated: The date and time the SQL Firewall policy was last updated, in the format defined by RFC3339.
282
+ :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL Firewall action based on detection of SQL Firewall violations.
283
+ :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.
284
284
 
285
285
 
286
286
  ** IMPORTANT **
@@ -333,7 +333,7 @@ class _SqlFirewallPolicyState:
333
333
  @pulumi.getter(name="allowedClientIps")
334
334
  def allowed_client_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
335
335
  """
336
- (Updatable) List of allowed ip addresses for the SQL firewall policy.
336
+ (Updatable) List of allowed ip addresses for the SQL Firewall policy.
337
337
  """
338
338
  return pulumi.get(self, "allowed_client_ips")
339
339
 
@@ -345,7 +345,7 @@ class _SqlFirewallPolicyState:
345
345
  @pulumi.getter(name="allowedClientOsUsernames")
346
346
  def allowed_client_os_usernames(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
347
347
  """
348
- (Updatable) List of allowed operating system user names for the SQL firewall policy.
348
+ (Updatable) List of allowed operating system user names for the SQL Firewall policy.
349
349
  """
350
350
  return pulumi.get(self, "allowed_client_os_usernames")
351
351
 
@@ -357,7 +357,7 @@ class _SqlFirewallPolicyState:
357
357
  @pulumi.getter(name="allowedClientPrograms")
358
358
  def allowed_client_programs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
359
359
  """
360
- (Updatable) List of allowed client programs for the SQL firewall policy.
360
+ (Updatable) List of allowed client programs for the SQL Firewall policy.
361
361
  """
362
362
  return pulumi.get(self, "allowed_client_programs")
363
363
 
@@ -369,7 +369,7 @@ class _SqlFirewallPolicyState:
369
369
  @pulumi.getter(name="compartmentId")
370
370
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
371
371
  """
372
- (Updatable) The OCID of the compartment containing the SQL firewall policy.
372
+ (Updatable) The OCID of the compartment containing the SQL Firewall policy.
373
373
  """
374
374
  return pulumi.get(self, "compartment_id")
375
375
 
@@ -405,7 +405,7 @@ class _SqlFirewallPolicyState:
405
405
  @pulumi.getter
406
406
  def description(self) -> Optional[pulumi.Input[str]]:
407
407
  """
408
- (Updatable) The description of the SQL firewall policy.
408
+ (Updatable) The description of the SQL Firewall policy.
409
409
  """
410
410
  return pulumi.get(self, "description")
411
411
 
@@ -417,7 +417,7 @@ class _SqlFirewallPolicyState:
417
417
  @pulumi.getter(name="displayName")
418
418
  def display_name(self) -> Optional[pulumi.Input[str]]:
419
419
  """
420
- (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
420
+ (Updatable) The display name of the SQL Firewall policy. The name does not have to be unique, and it is changeable.
421
421
  """
422
422
  return pulumi.get(self, "display_name")
423
423
 
@@ -429,7 +429,7 @@ class _SqlFirewallPolicyState:
429
429
  @pulumi.getter(name="enforcementScope")
430
430
  def enforcement_scope(self) -> Optional[pulumi.Input[str]]:
431
431
  """
432
- (Updatable) Specifies the SQL firewall policy enforcement option.
432
+ (Updatable) Specifies the SQL Firewall policy enforcement option.
433
433
  """
434
434
  return pulumi.get(self, "enforcement_scope")
435
435
 
@@ -453,7 +453,7 @@ class _SqlFirewallPolicyState:
453
453
  @pulumi.getter(name="lifecycleDetails")
454
454
  def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
455
455
  """
456
- Details about the current state of the SQL firewall policy in Data Safe.
456
+ Details about the current state of the SQL Firewall policy in Data Safe.
457
457
  """
458
458
  return pulumi.get(self, "lifecycle_details")
459
459
 
@@ -465,7 +465,7 @@ class _SqlFirewallPolicyState:
465
465
  @pulumi.getter(name="securityPolicyId")
466
466
  def security_policy_id(self) -> Optional[pulumi.Input[str]]:
467
467
  """
468
- The OCID of the security policy corresponding to the SQL firewall policy.
468
+ The OCID of the security policy corresponding to the SQL Firewall policy.
469
469
  """
470
470
  return pulumi.get(self, "security_policy_id")
471
471
 
@@ -477,7 +477,7 @@ class _SqlFirewallPolicyState:
477
477
  @pulumi.getter(name="sqlFirewallPolicyId")
478
478
  def sql_firewall_policy_id(self) -> Optional[pulumi.Input[str]]:
479
479
  """
480
- The OCID of the SQL firewall policy resource.
480
+ The OCID of the SQL Firewall policy resource.
481
481
  """
482
482
  return pulumi.get(self, "sql_firewall_policy_id")
483
483
 
@@ -489,7 +489,7 @@ class _SqlFirewallPolicyState:
489
489
  @pulumi.getter(name="sqlLevel")
490
490
  def sql_level(self) -> Optional[pulumi.Input[str]]:
491
491
  """
492
- Specifies the level of SQL included for this SQL firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
492
+ Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
493
493
  """
494
494
  return pulumi.get(self, "sql_level")
495
495
 
@@ -501,7 +501,7 @@ class _SqlFirewallPolicyState:
501
501
  @pulumi.getter
502
502
  def state(self) -> Optional[pulumi.Input[str]]:
503
503
  """
504
- The current state of the SQL firewall policy.
504
+ The current state of the SQL Firewall policy.
505
505
  """
506
506
  return pulumi.get(self, "state")
507
507
 
@@ -513,7 +513,7 @@ class _SqlFirewallPolicyState:
513
513
  @pulumi.getter
514
514
  def status(self) -> Optional[pulumi.Input[str]]:
515
515
  """
516
- (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
516
+ (Updatable) Specifies whether the SQL Firewall policy is enabled or disabled.
517
517
  """
518
518
  return pulumi.get(self, "status")
519
519
 
@@ -537,7 +537,7 @@ class _SqlFirewallPolicyState:
537
537
  @pulumi.getter(name="timeCreated")
538
538
  def time_created(self) -> Optional[pulumi.Input[str]]:
539
539
  """
540
- The time that the SQL firewall policy was created, in the format defined by RFC3339.
540
+ The time that the SQL Firewall policy was created, in the format defined by RFC3339.
541
541
  """
542
542
  return pulumi.get(self, "time_created")
543
543
 
@@ -549,7 +549,7 @@ class _SqlFirewallPolicyState:
549
549
  @pulumi.getter(name="timeUpdated")
550
550
  def time_updated(self) -> Optional[pulumi.Input[str]]:
551
551
  """
552
- The date and time the SQL firewall policy was last updated, in the format defined by RFC3339.
552
+ The date and time the SQL Firewall policy was last updated, in the format defined by RFC3339.
553
553
  """
554
554
  return pulumi.get(self, "time_updated")
555
555
 
@@ -561,7 +561,7 @@ class _SqlFirewallPolicyState:
561
561
  @pulumi.getter(name="violationAction")
562
562
  def violation_action(self) -> Optional[pulumi.Input[str]]:
563
563
  """
564
- (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
564
+ (Updatable) Specifies the SQL Firewall action based on detection of SQL Firewall violations.
565
565
  """
566
566
  return pulumi.get(self, "violation_action")
567
567
 
@@ -573,7 +573,7 @@ class _SqlFirewallPolicyState:
573
573
  @pulumi.getter(name="violationAudit")
574
574
  def violation_audit(self) -> Optional[pulumi.Input[str]]:
575
575
  """
576
- (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
576
+ (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.
577
577
 
578
578
 
579
579
  ** IMPORTANT **
@@ -608,7 +608,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
608
608
  """
609
609
  This resource provides the Sql Firewall Policy resource in Oracle Cloud Infrastructure Data Safe service.
610
610
 
611
- Updates the SQL firewall policy.
611
+ Updates the SQL Firewall policy.
612
612
 
613
613
  ## Import
614
614
 
@@ -620,19 +620,19 @@ class SqlFirewallPolicy(pulumi.CustomResource):
620
620
 
621
621
  :param str resource_name: The name of the resource.
622
622
  :param pulumi.ResourceOptions opts: Options for the resource.
623
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL firewall policy.
624
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL firewall policy.
625
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL firewall policy.
626
- :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL firewall policy.
623
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL Firewall policy.
624
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL Firewall policy.
625
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL Firewall policy.
626
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL Firewall policy.
627
627
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
628
- :param pulumi.Input[str] description: (Updatable) The description of the SQL firewall policy.
629
- :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
630
- :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL firewall policy enforcement option.
628
+ :param pulumi.Input[str] description: (Updatable) The description of the SQL Firewall policy.
629
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL Firewall policy. The name does not have to be unique, and it is changeable.
630
+ :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL Firewall policy enforcement option.
631
631
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) 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"}`
632
- :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL firewall policy resource.
633
- :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
634
- :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
635
- :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
632
+ :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL Firewall policy resource.
633
+ :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL Firewall policy is enabled or disabled.
634
+ :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL Firewall action based on detection of SQL Firewall violations.
635
+ :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.
636
636
 
637
637
 
638
638
  ** IMPORTANT **
@@ -647,7 +647,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
647
647
  """
648
648
  This resource provides the Sql Firewall Policy resource in Oracle Cloud Infrastructure Data Safe service.
649
649
 
650
- Updates the SQL firewall policy.
650
+ Updates the SQL Firewall policy.
651
651
 
652
652
  ## Import
653
653
 
@@ -755,27 +755,27 @@ class SqlFirewallPolicy(pulumi.CustomResource):
755
755
  :param str resource_name: The unique name of the resulting resource.
756
756
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
757
757
  :param pulumi.ResourceOptions opts: Options for the resource.
758
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL firewall policy.
759
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL firewall policy.
760
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL firewall policy.
761
- :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL firewall policy.
758
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL Firewall policy.
759
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL Firewall policy.
760
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL Firewall policy.
761
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL Firewall policy.
762
762
  :param pulumi.Input[str] db_user_name: The database user name.
763
763
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
764
- :param pulumi.Input[str] description: (Updatable) The description of the SQL firewall policy.
765
- :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
766
- :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL firewall policy enforcement option.
764
+ :param pulumi.Input[str] description: (Updatable) The description of the SQL Firewall policy.
765
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL Firewall policy. The name does not have to be unique, and it is changeable.
766
+ :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL Firewall policy enforcement option.
767
767
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) 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"}`
768
- :param pulumi.Input[str] lifecycle_details: Details about the current state of the SQL firewall policy in Data Safe.
769
- :param pulumi.Input[str] security_policy_id: The OCID of the security policy corresponding to the SQL firewall policy.
770
- :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL firewall policy resource.
771
- :param pulumi.Input[str] sql_level: Specifies the level of SQL included for this SQL firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
772
- :param pulumi.Input[str] state: The current state of the SQL firewall policy.
773
- :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
768
+ :param pulumi.Input[str] lifecycle_details: Details about the current state of the SQL Firewall policy in Data Safe.
769
+ :param pulumi.Input[str] security_policy_id: The OCID of the security policy corresponding to the SQL Firewall policy.
770
+ :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL Firewall policy resource.
771
+ :param pulumi.Input[str] sql_level: Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
772
+ :param pulumi.Input[str] state: The current state of the SQL Firewall policy.
773
+ :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL Firewall policy is enabled or disabled.
774
774
  :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
775
- :param pulumi.Input[str] time_created: The time that the SQL firewall policy was created, in the format defined by RFC3339.
776
- :param pulumi.Input[str] time_updated: The date and time the SQL firewall policy was last updated, in the format defined by RFC3339.
777
- :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
778
- :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
775
+ :param pulumi.Input[str] time_created: The time that the SQL Firewall policy was created, in the format defined by RFC3339.
776
+ :param pulumi.Input[str] time_updated: The date and time the SQL Firewall policy was last updated, in the format defined by RFC3339.
777
+ :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL Firewall action based on detection of SQL Firewall violations.
778
+ :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.
779
779
 
780
780
 
781
781
  ** IMPORTANT **
@@ -812,7 +812,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
812
812
  @pulumi.getter(name="allowedClientIps")
813
813
  def allowed_client_ips(self) -> pulumi.Output[Sequence[str]]:
814
814
  """
815
- (Updatable) List of allowed ip addresses for the SQL firewall policy.
815
+ (Updatable) List of allowed ip addresses for the SQL Firewall policy.
816
816
  """
817
817
  return pulumi.get(self, "allowed_client_ips")
818
818
 
@@ -820,7 +820,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
820
820
  @pulumi.getter(name="allowedClientOsUsernames")
821
821
  def allowed_client_os_usernames(self) -> pulumi.Output[Sequence[str]]:
822
822
  """
823
- (Updatable) List of allowed operating system user names for the SQL firewall policy.
823
+ (Updatable) List of allowed operating system user names for the SQL Firewall policy.
824
824
  """
825
825
  return pulumi.get(self, "allowed_client_os_usernames")
826
826
 
@@ -828,7 +828,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
828
828
  @pulumi.getter(name="allowedClientPrograms")
829
829
  def allowed_client_programs(self) -> pulumi.Output[Sequence[str]]:
830
830
  """
831
- (Updatable) List of allowed client programs for the SQL firewall policy.
831
+ (Updatable) List of allowed client programs for the SQL Firewall policy.
832
832
  """
833
833
  return pulumi.get(self, "allowed_client_programs")
834
834
 
@@ -836,7 +836,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
836
836
  @pulumi.getter(name="compartmentId")
837
837
  def compartment_id(self) -> pulumi.Output[str]:
838
838
  """
839
- (Updatable) The OCID of the compartment containing the SQL firewall policy.
839
+ (Updatable) The OCID of the compartment containing the SQL Firewall policy.
840
840
  """
841
841
  return pulumi.get(self, "compartment_id")
842
842
 
@@ -860,7 +860,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
860
860
  @pulumi.getter
861
861
  def description(self) -> pulumi.Output[str]:
862
862
  """
863
- (Updatable) The description of the SQL firewall policy.
863
+ (Updatable) The description of the SQL Firewall policy.
864
864
  """
865
865
  return pulumi.get(self, "description")
866
866
 
@@ -868,7 +868,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
868
868
  @pulumi.getter(name="displayName")
869
869
  def display_name(self) -> pulumi.Output[str]:
870
870
  """
871
- (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
871
+ (Updatable) The display name of the SQL Firewall policy. The name does not have to be unique, and it is changeable.
872
872
  """
873
873
  return pulumi.get(self, "display_name")
874
874
 
@@ -876,7 +876,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
876
876
  @pulumi.getter(name="enforcementScope")
877
877
  def enforcement_scope(self) -> pulumi.Output[str]:
878
878
  """
879
- (Updatable) Specifies the SQL firewall policy enforcement option.
879
+ (Updatable) Specifies the SQL Firewall policy enforcement option.
880
880
  """
881
881
  return pulumi.get(self, "enforcement_scope")
882
882
 
@@ -892,7 +892,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
892
892
  @pulumi.getter(name="lifecycleDetails")
893
893
  def lifecycle_details(self) -> pulumi.Output[str]:
894
894
  """
895
- Details about the current state of the SQL firewall policy in Data Safe.
895
+ Details about the current state of the SQL Firewall policy in Data Safe.
896
896
  """
897
897
  return pulumi.get(self, "lifecycle_details")
898
898
 
@@ -900,7 +900,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
900
900
  @pulumi.getter(name="securityPolicyId")
901
901
  def security_policy_id(self) -> pulumi.Output[str]:
902
902
  """
903
- The OCID of the security policy corresponding to the SQL firewall policy.
903
+ The OCID of the security policy corresponding to the SQL Firewall policy.
904
904
  """
905
905
  return pulumi.get(self, "security_policy_id")
906
906
 
@@ -908,7 +908,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
908
908
  @pulumi.getter(name="sqlFirewallPolicyId")
909
909
  def sql_firewall_policy_id(self) -> pulumi.Output[str]:
910
910
  """
911
- The OCID of the SQL firewall policy resource.
911
+ The OCID of the SQL Firewall policy resource.
912
912
  """
913
913
  return pulumi.get(self, "sql_firewall_policy_id")
914
914
 
@@ -916,7 +916,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
916
916
  @pulumi.getter(name="sqlLevel")
917
917
  def sql_level(self) -> pulumi.Output[str]:
918
918
  """
919
- Specifies the level of SQL included for this SQL firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
919
+ Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
920
920
  """
921
921
  return pulumi.get(self, "sql_level")
922
922
 
@@ -924,7 +924,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
924
924
  @pulumi.getter
925
925
  def state(self) -> pulumi.Output[str]:
926
926
  """
927
- The current state of the SQL firewall policy.
927
+ The current state of the SQL Firewall policy.
928
928
  """
929
929
  return pulumi.get(self, "state")
930
930
 
@@ -932,7 +932,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
932
932
  @pulumi.getter
933
933
  def status(self) -> pulumi.Output[str]:
934
934
  """
935
- (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
935
+ (Updatable) Specifies whether the SQL Firewall policy is enabled or disabled.
936
936
  """
937
937
  return pulumi.get(self, "status")
938
938
 
@@ -948,7 +948,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
948
948
  @pulumi.getter(name="timeCreated")
949
949
  def time_created(self) -> pulumi.Output[str]:
950
950
  """
951
- The time that the SQL firewall policy was created, in the format defined by RFC3339.
951
+ The time that the SQL Firewall policy was created, in the format defined by RFC3339.
952
952
  """
953
953
  return pulumi.get(self, "time_created")
954
954
 
@@ -956,7 +956,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
956
956
  @pulumi.getter(name="timeUpdated")
957
957
  def time_updated(self) -> pulumi.Output[str]:
958
958
  """
959
- The date and time the SQL firewall policy was last updated, in the format defined by RFC3339.
959
+ The date and time the SQL Firewall policy was last updated, in the format defined by RFC3339.
960
960
  """
961
961
  return pulumi.get(self, "time_updated")
962
962
 
@@ -964,7 +964,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
964
964
  @pulumi.getter(name="violationAction")
965
965
  def violation_action(self) -> pulumi.Output[str]:
966
966
  """
967
- (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
967
+ (Updatable) Specifies the SQL Firewall action based on detection of SQL Firewall violations.
968
968
  """
969
969
  return pulumi.get(self, "violation_action")
970
970
 
@@ -972,7 +972,7 @@ class SqlFirewallPolicy(pulumi.CustomResource):
972
972
  @pulumi.getter(name="violationAudit")
973
973
  def violation_audit(self) -> pulumi.Output[str]:
974
974
  """
975
- (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
975
+ (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.
976
976
 
977
977
 
978
978
  ** IMPORTANT **
@@ -14,6 +14,7 @@ __all__ = [
14
14
  'ConnectionBootstrapServerArgs',
15
15
  'ConnectionIngressIpArgs',
16
16
  'DeploymentDeploymentDiagnosticDataArgs',
17
+ 'DeploymentIngressIpArgs',
17
18
  'DeploymentMaintenanceConfigurationArgs',
18
19
  'DeploymentMaintenanceWindowArgs',
19
20
  'DeploymentOggDataArgs',
@@ -80,7 +81,8 @@ class ConnectionBootstrapServerArgs:
80
81
  :param pulumi.Input[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"`
81
82
  For multiple hosts, provide a comma separated list. Example: `"server1.example.com:1000,server1.example.com:2000"`
82
83
  :param pulumi.Input[int] port: (Updatable) The port of an endpoint usually specified for a connection.
83
- :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.
84
+ :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.
85
+ 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.
84
86
  """
85
87
  if host is not None:
86
88
  pulumi.set(__self__, "host", host)
@@ -118,7 +120,8 @@ class ConnectionBootstrapServerArgs:
118
120
  @pulumi.getter(name="privateIp")
119
121
  def private_ip(self) -> Optional[pulumi.Input[str]]:
120
122
  """
121
- (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.
123
+ (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.
124
+ 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.
122
125
  """
123
126
  return pulumi.get(self, "private_ip")
124
127
 
@@ -253,6 +256,29 @@ class DeploymentDeploymentDiagnosticDataArgs:
253
256
  pulumi.set(self, "time_diagnostic_start", value)
254
257
 
255
258
 
259
+ @pulumi.input_type
260
+ class DeploymentIngressIpArgs:
261
+ def __init__(__self__, *,
262
+ ingress_ip: Optional[pulumi.Input[str]] = None):
263
+ """
264
+ :param pulumi.Input[str] ingress_ip: A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
265
+ """
266
+ if ingress_ip is not None:
267
+ pulumi.set(__self__, "ingress_ip", ingress_ip)
268
+
269
+ @property
270
+ @pulumi.getter(name="ingressIp")
271
+ def ingress_ip(self) -> Optional[pulumi.Input[str]]:
272
+ """
273
+ A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
274
+ """
275
+ return pulumi.get(self, "ingress_ip")
276
+
277
+ @ingress_ip.setter
278
+ def ingress_ip(self, value: Optional[pulumi.Input[str]]):
279
+ pulumi.set(self, "ingress_ip", value)
280
+
281
+
256
282
  @pulumi.input_type
257
283
  class DeploymentMaintenanceConfigurationArgs:
258
284
  def __init__(__self__, *,