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
@@ -1303,6 +1303,7 @@ class LibraryMasingFormatFormatEntryArgs:
1303
1303
  grouping_columns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1304
1304
  length: Optional[pulumi.Input[int]] = None,
1305
1305
  library_masking_format_id: Optional[pulumi.Input[str]] = None,
1306
+ pattern: Optional[pulumi.Input[str]] = None,
1306
1307
  post_processing_function: Optional[pulumi.Input[str]] = None,
1307
1308
  random_lists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1308
1309
  regular_expression: Optional[pulumi.Input[str]] = None,
@@ -1327,6 +1328,7 @@ class LibraryMasingFormatFormatEntryArgs:
1327
1328
  :param pulumi.Input[Sequence[pulumi.Input[str]]] grouping_columns: (Updatable) One or more reference columns to be used to group column values so that they can be shuffled within their own group. The grouping columns and the column to be masked must belong to the same table.
1328
1329
  :param pulumi.Input[int] length: (Updatable) The number of characters that should be there in the substring. It should be an integer and greater than zero.
1329
1330
  :param pulumi.Input[str] library_masking_format_id: (Updatable) The OCID of the library masking format.
1331
+ :param pulumi.Input[str] pattern: (Updatable) The pattern that should be used to mask data.
1330
1332
  :param pulumi.Input[str] post_processing_function: (Updatable) The post processing function in SCHEMA_NAME.PACKAGE_NAME.FUNCTION_NAME format. It can be a standalone or packaged function, so PACKAGE_NAME is optional.
1331
1333
  :param pulumi.Input[Sequence[pulumi.Input[str]]] random_lists: (Updatable) A comma-separated list of values to be used to replace column values. The list can be of strings, numbers, or dates. The data type of each value in the list must be compatible with the data type of the column. The number of entries in the list cannot be more than 999.
1332
1334
  :param pulumi.Input[str] regular_expression: (Updatable) The regular expression to be used for masking. For data with characters in the ASCII character set, providing a regular expression is optional. However, it is required if the data contains multi-byte characters. If not provided, an error is returned when a multi-byte character is found.
@@ -1365,6 +1367,8 @@ class LibraryMasingFormatFormatEntryArgs:
1365
1367
  pulumi.set(__self__, "length", length)
1366
1368
  if library_masking_format_id is not None:
1367
1369
  pulumi.set(__self__, "library_masking_format_id", library_masking_format_id)
1370
+ if pattern is not None:
1371
+ pulumi.set(__self__, "pattern", pattern)
1368
1372
  if post_processing_function is not None:
1369
1373
  pulumi.set(__self__, "post_processing_function", post_processing_function)
1370
1374
  if random_lists is not None:
@@ -1522,6 +1526,18 @@ class LibraryMasingFormatFormatEntryArgs:
1522
1526
  def library_masking_format_id(self, value: Optional[pulumi.Input[str]]):
1523
1527
  pulumi.set(self, "library_masking_format_id", value)
1524
1528
 
1529
+ @property
1530
+ @pulumi.getter
1531
+ def pattern(self) -> Optional[pulumi.Input[str]]:
1532
+ """
1533
+ (Updatable) The pattern that should be used to mask data.
1534
+ """
1535
+ return pulumi.get(self, "pattern")
1536
+
1537
+ @pattern.setter
1538
+ def pattern(self, value: Optional[pulumi.Input[str]]):
1539
+ pulumi.set(self, "pattern", value)
1540
+
1525
1541
  @property
1526
1542
  @pulumi.getter(name="postProcessingFunction")
1527
1543
  def post_processing_function(self) -> Optional[pulumi.Input[str]]:
@@ -1739,6 +1755,7 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntryArgs:
1739
1755
  grouping_columns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1740
1756
  length: Optional[pulumi.Input[int]] = None,
1741
1757
  library_masking_format_id: Optional[pulumi.Input[str]] = None,
1758
+ pattern: Optional[pulumi.Input[str]] = None,
1742
1759
  post_processing_function: Optional[pulumi.Input[str]] = None,
1743
1760
  random_lists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1744
1761
  regular_expression: Optional[pulumi.Input[str]] = None,
@@ -1763,6 +1780,7 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntryArgs:
1763
1780
  :param pulumi.Input[Sequence[pulumi.Input[str]]] grouping_columns: (Updatable) One or more reference columns to be used to group column values so that they can be shuffled within their own group. The grouping columns and the column to be masked must belong to the same table.
1764
1781
  :param pulumi.Input[int] length: (Updatable) The number of characters that should be there in the substring. It should be an integer and greater than zero.
1765
1782
  :param pulumi.Input[str] library_masking_format_id: (Updatable) The OCID of the library masking format.
1783
+ :param pulumi.Input[str] pattern: (Updatable) The pattern that should be used to mask data.
1766
1784
  :param pulumi.Input[str] post_processing_function: (Updatable) The post processing function in SCHEMA_NAME.PACKAGE_NAME.FUNCTION_NAME format. It can be a standalone or packaged function, so PACKAGE_NAME is optional.
1767
1785
  :param pulumi.Input[Sequence[pulumi.Input[str]]] random_lists: (Updatable) A comma-separated list of values to be used to replace column values. The list can be of strings, numbers, or dates. The data type of each value in the list must be compatible with the data type of the column. The number of entries in the list cannot be more than 999.
1768
1786
  :param pulumi.Input[str] regular_expression: (Updatable) The regular expression to be used for masking. For data with characters in the ASCII character set, providing a regular expression is optional. However, it is required if the data contains multi-byte characters. If not provided, an error is returned when a multi-byte character is found.
@@ -1801,6 +1819,8 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntryArgs:
1801
1819
  pulumi.set(__self__, "length", length)
1802
1820
  if library_masking_format_id is not None:
1803
1821
  pulumi.set(__self__, "library_masking_format_id", library_masking_format_id)
1822
+ if pattern is not None:
1823
+ pulumi.set(__self__, "pattern", pattern)
1804
1824
  if post_processing_function is not None:
1805
1825
  pulumi.set(__self__, "post_processing_function", post_processing_function)
1806
1826
  if random_lists is not None:
@@ -1958,6 +1978,18 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntryArgs:
1958
1978
  def library_masking_format_id(self, value: Optional[pulumi.Input[str]]):
1959
1979
  pulumi.set(self, "library_masking_format_id", value)
1960
1980
 
1981
+ @property
1982
+ @pulumi.getter
1983
+ def pattern(self) -> Optional[pulumi.Input[str]]:
1984
+ """
1985
+ (Updatable) The pattern that should be used to mask data.
1986
+ """
1987
+ return pulumi.get(self, "pattern")
1988
+
1989
+ @pattern.setter
1990
+ def pattern(self, value: Optional[pulumi.Input[str]]):
1991
+ pulumi.set(self, "pattern", value)
1992
+
1961
1993
  @property
1962
1994
  @pulumi.getter(name="postProcessingFunction")
1963
1995
  def post_processing_function(self) -> Optional[pulumi.Input[str]]:
@@ -37,7 +37,7 @@ class DatabaseSecurityConfigArgs:
37
37
 
38
38
  ** IMPORTANT **
39
39
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
40
- :param pulumi.Input['DatabaseSecurityConfigSqlFirewallConfigArgs'] sql_firewall_config: (Updatable) Details to update the SQL firewall config.
40
+ :param pulumi.Input['DatabaseSecurityConfigSqlFirewallConfigArgs'] sql_firewall_config: (Updatable) Details to update the SQL Firewall config.
41
41
  """
42
42
  pulumi.set(__self__, "database_security_config_id", database_security_config_id)
43
43
  if compartment_id is not None:
@@ -147,7 +147,7 @@ class DatabaseSecurityConfigArgs:
147
147
  @pulumi.getter(name="sqlFirewallConfig")
148
148
  def sql_firewall_config(self) -> Optional[pulumi.Input['DatabaseSecurityConfigSqlFirewallConfigArgs']]:
149
149
  """
150
- (Updatable) Details to update the SQL firewall config.
150
+ (Updatable) Details to update the SQL Firewall config.
151
151
  """
152
152
  return pulumi.get(self, "sql_firewall_config")
153
153
 
@@ -188,7 +188,7 @@ class _DatabaseSecurityConfigState:
188
188
 
189
189
  ** IMPORTANT **
190
190
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
191
- :param pulumi.Input['DatabaseSecurityConfigSqlFirewallConfigArgs'] sql_firewall_config: (Updatable) Details to update the SQL firewall config.
191
+ :param pulumi.Input['DatabaseSecurityConfigSqlFirewallConfigArgs'] sql_firewall_config: (Updatable) Details to update the SQL Firewall config.
192
192
  :param pulumi.Input[str] state: The current state of the database security config.
193
193
  :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"}`
194
194
  :param pulumi.Input[str] target_id: The target OCID corresponding to the database security config.
@@ -331,7 +331,7 @@ class _DatabaseSecurityConfigState:
331
331
  @pulumi.getter(name="sqlFirewallConfig")
332
332
  def sql_firewall_config(self) -> Optional[pulumi.Input['DatabaseSecurityConfigSqlFirewallConfigArgs']]:
333
333
  """
334
- (Updatable) Details to update the SQL firewall config.
334
+ (Updatable) Details to update the SQL Firewall config.
335
335
  """
336
336
  return pulumi.get(self, "sql_firewall_config")
337
337
 
@@ -452,7 +452,7 @@ class DatabaseSecurityConfig(pulumi.CustomResource):
452
452
 
453
453
  ** IMPORTANT **
454
454
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
455
- :param pulumi.Input[pulumi.InputType['DatabaseSecurityConfigSqlFirewallConfigArgs']] sql_firewall_config: (Updatable) Details to update the SQL firewall config.
455
+ :param pulumi.Input[pulumi.InputType['DatabaseSecurityConfigSqlFirewallConfigArgs']] sql_firewall_config: (Updatable) Details to update the SQL Firewall config.
456
456
  """
457
457
  ...
458
458
  @overload
@@ -566,7 +566,7 @@ class DatabaseSecurityConfig(pulumi.CustomResource):
566
566
 
567
567
  ** IMPORTANT **
568
568
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
569
- :param pulumi.Input[pulumi.InputType['DatabaseSecurityConfigSqlFirewallConfigArgs']] sql_firewall_config: (Updatable) Details to update the SQL firewall config.
569
+ :param pulumi.Input[pulumi.InputType['DatabaseSecurityConfigSqlFirewallConfigArgs']] sql_firewall_config: (Updatable) Details to update the SQL Firewall config.
570
570
  :param pulumi.Input[str] state: The current state of the database security config.
571
571
  :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"}`
572
572
  :param pulumi.Input[str] target_id: The target OCID corresponding to the database security config.
@@ -667,7 +667,7 @@ class DatabaseSecurityConfig(pulumi.CustomResource):
667
667
  @pulumi.getter(name="sqlFirewallConfig")
668
668
  def sql_firewall_config(self) -> pulumi.Output['outputs.DatabaseSecurityConfigSqlFirewallConfig']:
669
669
  """
670
- (Updatable) Details to update the SQL firewall config.
670
+ (Updatable) Details to update the SQL Firewall config.
671
671
  """
672
672
  return pulumi.get(self, "sql_firewall_config")
673
673
 
@@ -63,7 +63,7 @@ class GetAuditEventsResult:
63
63
  @pulumi.getter(name="compartmentId")
64
64
  def compartment_id(self) -> str:
65
65
  """
66
- The OCID of the compartment containing the audit event. This is the same as that of audit profile of the target database resource compartment.
66
+ The OCID of the compartment containing the audit event. The compartment is the same as that of audit profile of the target database resource.
67
67
  """
68
68
  return pulumi.get(self, "compartment_id")
69
69
 
@@ -23,7 +23,7 @@ class GetDiscoveryAnalyticsResult:
23
23
  """
24
24
  A collection of values returned by getDiscoveryAnalytics.
25
25
  """
26
- def __init__(__self__, compartment_id=None, compartment_id_in_subtree=None, discovery_analytics_collections=None, filters=None, group_by=None, id=None, sensitive_data_model_id=None, target_id=None):
26
+ def __init__(__self__, compartment_id=None, compartment_id_in_subtree=None, discovery_analytics_collections=None, filters=None, group_by=None, id=None, is_common=None, sensitive_data_model_id=None, sensitive_type_id=None, target_id=None):
27
27
  if compartment_id and not isinstance(compartment_id, str):
28
28
  raise TypeError("Expected argument 'compartment_id' to be a str")
29
29
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -42,9 +42,15 @@ class GetDiscoveryAnalyticsResult:
42
42
  if id and not isinstance(id, str):
43
43
  raise TypeError("Expected argument 'id' to be a str")
44
44
  pulumi.set(__self__, "id", id)
45
+ if is_common and not isinstance(is_common, bool):
46
+ raise TypeError("Expected argument 'is_common' to be a bool")
47
+ pulumi.set(__self__, "is_common", is_common)
45
48
  if sensitive_data_model_id and not isinstance(sensitive_data_model_id, str):
46
49
  raise TypeError("Expected argument 'sensitive_data_model_id' to be a str")
47
50
  pulumi.set(__self__, "sensitive_data_model_id", sensitive_data_model_id)
51
+ if sensitive_type_id and not isinstance(sensitive_type_id, str):
52
+ raise TypeError("Expected argument 'sensitive_type_id' to be a str")
53
+ pulumi.set(__self__, "sensitive_type_id", sensitive_type_id)
48
54
  if target_id and not isinstance(target_id, str):
49
55
  raise TypeError("Expected argument 'target_id' to be a str")
50
56
  pulumi.set(__self__, "target_id", target_id)
@@ -85,6 +91,11 @@ class GetDiscoveryAnalyticsResult:
85
91
  """
86
92
  return pulumi.get(self, "id")
87
93
 
94
+ @property
95
+ @pulumi.getter(name="isCommon")
96
+ def is_common(self) -> Optional[bool]:
97
+ return pulumi.get(self, "is_common")
98
+
88
99
  @property
89
100
  @pulumi.getter(name="sensitiveDataModelId")
90
101
  def sensitive_data_model_id(self) -> Optional[str]:
@@ -93,6 +104,14 @@ class GetDiscoveryAnalyticsResult:
93
104
  """
94
105
  return pulumi.get(self, "sensitive_data_model_id")
95
106
 
107
+ @property
108
+ @pulumi.getter(name="sensitiveTypeId")
109
+ def sensitive_type_id(self) -> Optional[str]:
110
+ """
111
+ The OCID of the sensitive type.
112
+ """
113
+ return pulumi.get(self, "sensitive_type_id")
114
+
96
115
  @property
97
116
  @pulumi.getter(name="targetId")
98
117
  def target_id(self) -> Optional[str]:
@@ -114,7 +133,9 @@ class AwaitableGetDiscoveryAnalyticsResult(GetDiscoveryAnalyticsResult):
114
133
  filters=self.filters,
115
134
  group_by=self.group_by,
116
135
  id=self.id,
136
+ is_common=self.is_common,
117
137
  sensitive_data_model_id=self.sensitive_data_model_id,
138
+ sensitive_type_id=self.sensitive_type_id,
118
139
  target_id=self.target_id)
119
140
 
120
141
 
@@ -122,7 +143,9 @@ def get_discovery_analytics(compartment_id: Optional[str] = None,
122
143
  compartment_id_in_subtree: Optional[bool] = None,
123
144
  filters: Optional[Sequence[pulumi.InputType['GetDiscoveryAnalyticsFilterArgs']]] = None,
124
145
  group_by: Optional[str] = None,
146
+ is_common: Optional[bool] = None,
125
147
  sensitive_data_model_id: Optional[str] = None,
148
+ sensitive_type_id: Optional[str] = None,
126
149
  target_id: Optional[str] = None,
127
150
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDiscoveryAnalyticsResult:
128
151
  """
@@ -141,7 +164,9 @@ def get_discovery_analytics(compartment_id: Optional[str] = None,
141
164
  test_discovery_analytics = oci.DataSafe.get_discovery_analytics(compartment_id=var["compartment_id"],
142
165
  compartment_id_in_subtree=var["discovery_analytic_compartment_id_in_subtree"],
143
166
  group_by=var["discovery_analytic_group_by"],
167
+ is_common=var["discovery_analytic_is_common"],
144
168
  sensitive_data_model_id=oci_data_safe_sensitive_data_model["test_sensitive_data_model"]["id"],
169
+ sensitive_type_id=oci_data_safe_sensitive_type["test_sensitive_type"]["id"],
145
170
  target_id=oci_cloud_guard_target["test_target"]["id"])
146
171
  ```
147
172
 
@@ -149,7 +174,9 @@ def get_discovery_analytics(compartment_id: Optional[str] = None,
149
174
  :param str compartment_id: A filter to return only resources that match the specified compartment OCID.
150
175
  :param bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
151
176
  :param str group_by: Attribute by which the discovery analytics data should be grouped.
177
+ :param bool is_common: A filter to return only the common sensitive type resources. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
152
178
  :param str sensitive_data_model_id: A filter to return only the resources that match the specified sensitive data model OCID.
179
+ :param str sensitive_type_id: A filter to return only items related to a specific sensitive type OCID.
153
180
  :param str target_id: A filter to return only items related to a specific target OCID.
154
181
  """
155
182
  __args__ = dict()
@@ -157,7 +184,9 @@ def get_discovery_analytics(compartment_id: Optional[str] = None,
157
184
  __args__['compartmentIdInSubtree'] = compartment_id_in_subtree
158
185
  __args__['filters'] = filters
159
186
  __args__['groupBy'] = group_by
187
+ __args__['isCommon'] = is_common
160
188
  __args__['sensitiveDataModelId'] = sensitive_data_model_id
189
+ __args__['sensitiveTypeId'] = sensitive_type_id
161
190
  __args__['targetId'] = target_id
162
191
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
163
192
  __ret__ = pulumi.runtime.invoke('oci:DataSafe/getDiscoveryAnalytics:getDiscoveryAnalytics', __args__, opts=opts, typ=GetDiscoveryAnalyticsResult).value
@@ -169,7 +198,9 @@ def get_discovery_analytics(compartment_id: Optional[str] = None,
169
198
  filters=pulumi.get(__ret__, 'filters'),
170
199
  group_by=pulumi.get(__ret__, 'group_by'),
171
200
  id=pulumi.get(__ret__, 'id'),
201
+ is_common=pulumi.get(__ret__, 'is_common'),
172
202
  sensitive_data_model_id=pulumi.get(__ret__, 'sensitive_data_model_id'),
203
+ sensitive_type_id=pulumi.get(__ret__, 'sensitive_type_id'),
173
204
  target_id=pulumi.get(__ret__, 'target_id'))
174
205
 
175
206
 
@@ -178,7 +209,9 @@ def get_discovery_analytics_output(compartment_id: Optional[pulumi.Input[str]] =
178
209
  compartment_id_in_subtree: Optional[pulumi.Input[Optional[bool]]] = None,
179
210
  filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetDiscoveryAnalyticsFilterArgs']]]]] = None,
180
211
  group_by: Optional[pulumi.Input[Optional[str]]] = None,
212
+ is_common: Optional[pulumi.Input[Optional[bool]]] = None,
181
213
  sensitive_data_model_id: Optional[pulumi.Input[Optional[str]]] = None,
214
+ sensitive_type_id: Optional[pulumi.Input[Optional[str]]] = None,
182
215
  target_id: Optional[pulumi.Input[Optional[str]]] = None,
183
216
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDiscoveryAnalyticsResult]:
184
217
  """
@@ -197,7 +230,9 @@ def get_discovery_analytics_output(compartment_id: Optional[pulumi.Input[str]] =
197
230
  test_discovery_analytics = oci.DataSafe.get_discovery_analytics(compartment_id=var["compartment_id"],
198
231
  compartment_id_in_subtree=var["discovery_analytic_compartment_id_in_subtree"],
199
232
  group_by=var["discovery_analytic_group_by"],
233
+ is_common=var["discovery_analytic_is_common"],
200
234
  sensitive_data_model_id=oci_data_safe_sensitive_data_model["test_sensitive_data_model"]["id"],
235
+ sensitive_type_id=oci_data_safe_sensitive_type["test_sensitive_type"]["id"],
201
236
  target_id=oci_cloud_guard_target["test_target"]["id"])
202
237
  ```
203
238
 
@@ -205,7 +240,9 @@ def get_discovery_analytics_output(compartment_id: Optional[pulumi.Input[str]] =
205
240
  :param str compartment_id: A filter to return only resources that match the specified compartment OCID.
206
241
  :param bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
207
242
  :param str group_by: Attribute by which the discovery analytics data should be grouped.
243
+ :param bool is_common: A filter to return only the common sensitive type resources. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
208
244
  :param str sensitive_data_model_id: A filter to return only the resources that match the specified sensitive data model OCID.
245
+ :param str sensitive_type_id: A filter to return only items related to a specific sensitive type OCID.
209
246
  :param str target_id: A filter to return only items related to a specific target OCID.
210
247
  """
211
248
  ...
@@ -114,7 +114,7 @@ class GetReportResult:
114
114
  @pulumi.getter(name="mimeType")
115
115
  def mime_type(self) -> str:
116
116
  """
117
- Specifies the format of report to be excel or pdf
117
+ Specifies the format of report to be .xls or .pdf
118
118
  """
119
119
  return pulumi.get(self, "mime_type")
120
120
 
@@ -58,7 +58,7 @@ def get_report_content(report_id: Optional[str] = None,
58
58
  """
59
59
  This data source provides details about a specific Report Content resource in Oracle Cloud Infrastructure Data Safe service.
60
60
 
61
- Downloads the specified report in the form of PDF or XLXS.
61
+ Downloads the specified report in the form of .xls or .pdf.
62
62
 
63
63
  ## Example Usage
64
64
 
@@ -88,7 +88,7 @@ def get_report_content_output(report_id: Optional[pulumi.Input[str]] = None,
88
88
  """
89
89
  This data source provides details about a specific Report Content resource in Oracle Cloud Infrastructure Data Safe service.
90
90
 
91
- Downloads the specified report in the form of PDF or XLXS.
91
+ Downloads the specified report in the form of .xls or .pdf.
92
92
 
93
93
  ## Example Usage
94
94
 
@@ -253,7 +253,7 @@ class GetReportDefinitionResult:
253
253
  @pulumi.getter(name="scheduledReportCompartmentId")
254
254
  def scheduled_report_compartment_id(self) -> str:
255
255
  """
256
- The OCID of the compartment in which the scheduled resource should be created.
256
+ The OCID of the compartment in which the scheduled resource will be created.
257
257
  """
258
258
  return pulumi.get(self, "scheduled_report_compartment_id")
259
259
 
@@ -261,7 +261,7 @@ class GetReportDefinitionResult:
261
261
  @pulumi.getter(name="scheduledReportMimeType")
262
262
  def scheduled_report_mime_type(self) -> str:
263
263
  """
264
- Specifies the format of the report ( either XLS or PDF )
264
+ Specifies the format of the report ( either .xls or .pdf )
265
265
  """
266
266
  return pulumi.get(self, "scheduled_report_mime_type")
267
267
 
@@ -317,7 +317,7 @@ class GetReportDefinitionResult:
317
317
  @pulumi.getter(name="timeCreated")
318
318
  def time_created(self) -> str:
319
319
  """
320
- Specifies the data and time the report definition was created.
320
+ Specifies the date and time the report definition was created.
321
321
  """
322
322
  return pulumi.get(self, "time_created")
323
323
 
@@ -325,7 +325,7 @@ class GetReportDefinitionResult:
325
325
  @pulumi.getter(name="timeUpdated")
326
326
  def time_updated(self) -> str:
327
327
  """
328
- The date and time the report definition was update.
328
+ The date and time the report definition was updated.
329
329
  """
330
330
  return pulumi.get(self, "time_updated")
331
331
 
@@ -66,7 +66,7 @@ class GetSdmMaskingPolicyDifferenceResult:
66
66
  @pulumi.getter(name="compartmentId")
67
67
  def compartment_id(self) -> str:
68
68
  """
69
- The OCID of the compartment that contains the SDM masking policy difference.
69
+ The OCID of the compartment that contains the Sensitive data model and masking policy difference resource.
70
70
  """
71
71
  return pulumi.get(self, "compartment_id")
72
72
 
@@ -106,7 +106,7 @@ class GetSdmMaskingPolicyDifferenceResult:
106
106
  @pulumi.getter
107
107
  def id(self) -> str:
108
108
  """
109
- The OCID of the SDM masking policy difference.
109
+ The OCID of the Sensitive data model and masking policy difference resource.
110
110
  """
111
111
  return pulumi.get(self, "id")
112
112
 
@@ -59,7 +59,7 @@ class GetSdmMaskingPolicyDifferencesResult:
59
59
  @pulumi.getter(name="compartmentId")
60
60
  def compartment_id(self) -> str:
61
61
  """
62
- The OCID of the compartment that contains the SDM masking policy difference.
62
+ The OCID of the compartment that contains the Sensitive data model and masking policy difference resource.
63
63
  """
64
64
  return pulumi.get(self, "compartment_id")
65
65
 
@@ -105,7 +105,7 @@ class GetSecurityAssessmentFindingsResult:
105
105
  @pulumi.getter
106
106
  def severity(self) -> Optional[str]:
107
107
  """
108
- The severity of the finding.
108
+ The severity of the finding as determined by security assessment and is same as oracleDefinedSeverity, unless modified by user.
109
109
  """
110
110
  return pulumi.get(self, "severity")
111
111
 
@@ -21,7 +21,7 @@ class GetSensitiveTypeResult:
21
21
  """
22
22
  A collection of values returned by getSensitiveType.
23
23
  """
24
- def __init__(__self__, comment_pattern=None, compartment_id=None, data_pattern=None, default_masking_format_id=None, defined_tags=None, description=None, display_name=None, entity_type=None, freeform_tags=None, id=None, name_pattern=None, parent_category_id=None, search_type=None, sensitive_type_id=None, short_name=None, source=None, state=None, system_tags=None, time_created=None, time_updated=None):
24
+ def __init__(__self__, comment_pattern=None, compartment_id=None, data_pattern=None, default_masking_format_id=None, defined_tags=None, description=None, display_name=None, entity_type=None, freeform_tags=None, id=None, is_common=None, name_pattern=None, parent_category_id=None, search_type=None, sensitive_type_id=None, short_name=None, source=None, state=None, system_tags=None, time_created=None, time_updated=None):
25
25
  if comment_pattern and not isinstance(comment_pattern, str):
26
26
  raise TypeError("Expected argument 'comment_pattern' to be a str")
27
27
  pulumi.set(__self__, "comment_pattern", comment_pattern)
@@ -52,6 +52,9 @@ class GetSensitiveTypeResult:
52
52
  if id and not isinstance(id, str):
53
53
  raise TypeError("Expected argument 'id' to be a str")
54
54
  pulumi.set(__self__, "id", id)
55
+ if is_common and not isinstance(is_common, bool):
56
+ raise TypeError("Expected argument 'is_common' to be a bool")
57
+ pulumi.set(__self__, "is_common", is_common)
55
58
  if name_pattern and not isinstance(name_pattern, str):
56
59
  raise TypeError("Expected argument 'name_pattern' to be a str")
57
60
  pulumi.set(__self__, "name_pattern", name_pattern)
@@ -163,6 +166,14 @@ class GetSensitiveTypeResult:
163
166
  """
164
167
  return pulumi.get(self, "id")
165
168
 
169
+ @property
170
+ @pulumi.getter(name="isCommon")
171
+ def is_common(self) -> bool:
172
+ """
173
+ Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
174
+ """
175
+ return pulumi.get(self, "is_common")
176
+
166
177
  @property
167
178
  @pulumi.getter(name="namePattern")
168
179
  def name_pattern(self) -> str:
@@ -257,6 +268,7 @@ class AwaitableGetSensitiveTypeResult(GetSensitiveTypeResult):
257
268
  entity_type=self.entity_type,
258
269
  freeform_tags=self.freeform_tags,
259
270
  id=self.id,
271
+ is_common=self.is_common,
260
272
  name_pattern=self.name_pattern,
261
273
  parent_category_id=self.parent_category_id,
262
274
  search_type=self.search_type,
@@ -304,6 +316,7 @@ def get_sensitive_type(sensitive_type_id: Optional[str] = None,
304
316
  entity_type=pulumi.get(__ret__, 'entity_type'),
305
317
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
306
318
  id=pulumi.get(__ret__, 'id'),
319
+ is_common=pulumi.get(__ret__, 'is_common'),
307
320
  name_pattern=pulumi.get(__ret__, 'name_pattern'),
308
321
  parent_category_id=pulumi.get(__ret__, 'parent_category_id'),
309
322
  search_type=pulumi.get(__ret__, 'search_type'),
@@ -23,7 +23,7 @@ class GetSensitiveTypesResult:
23
23
  """
24
24
  A collection of values returned by getSensitiveTypes.
25
25
  """
26
- def __init__(__self__, access_level=None, compartment_id=None, compartment_id_in_subtree=None, default_masking_format_id=None, display_name=None, entity_type=None, filters=None, id=None, parent_category_id=None, sensitive_type_collections=None, sensitive_type_id=None, sensitive_type_source=None, state=None, time_created_greater_than_or_equal_to=None, time_created_less_than=None):
26
+ def __init__(__self__, access_level=None, compartment_id=None, compartment_id_in_subtree=None, default_masking_format_id=None, display_name=None, entity_type=None, filters=None, id=None, is_common=None, parent_category_id=None, sensitive_type_collections=None, sensitive_type_id=None, sensitive_type_source=None, state=None, time_created_greater_than_or_equal_to=None, time_created_less_than=None):
27
27
  if access_level and not isinstance(access_level, str):
28
28
  raise TypeError("Expected argument 'access_level' to be a str")
29
29
  pulumi.set(__self__, "access_level", access_level)
@@ -48,6 +48,9 @@ class GetSensitiveTypesResult:
48
48
  if id and not isinstance(id, str):
49
49
  raise TypeError("Expected argument 'id' to be a str")
50
50
  pulumi.set(__self__, "id", id)
51
+ if is_common and not isinstance(is_common, bool):
52
+ raise TypeError("Expected argument 'is_common' to be a bool")
53
+ pulumi.set(__self__, "is_common", is_common)
51
54
  if parent_category_id and not isinstance(parent_category_id, str):
52
55
  raise TypeError("Expected argument 'parent_category_id' to be a str")
53
56
  pulumi.set(__self__, "parent_category_id", parent_category_id)
@@ -125,6 +128,14 @@ class GetSensitiveTypesResult:
125
128
  """
126
129
  return pulumi.get(self, "id")
127
130
 
131
+ @property
132
+ @pulumi.getter(name="isCommon")
133
+ def is_common(self) -> Optional[bool]:
134
+ """
135
+ Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
136
+ """
137
+ return pulumi.get(self, "is_common")
138
+
128
139
  @property
129
140
  @pulumi.getter(name="parentCategoryId")
130
141
  def parent_category_id(self) -> Optional[str]:
@@ -184,6 +195,7 @@ class AwaitableGetSensitiveTypesResult(GetSensitiveTypesResult):
184
195
  entity_type=self.entity_type,
185
196
  filters=self.filters,
186
197
  id=self.id,
198
+ is_common=self.is_common,
187
199
  parent_category_id=self.parent_category_id,
188
200
  sensitive_type_collections=self.sensitive_type_collections,
189
201
  sensitive_type_id=self.sensitive_type_id,
@@ -200,6 +212,7 @@ def get_sensitive_types(access_level: Optional[str] = None,
200
212
  display_name: Optional[str] = None,
201
213
  entity_type: Optional[str] = None,
202
214
  filters: Optional[Sequence[pulumi.InputType['GetSensitiveTypesFilterArgs']]] = None,
215
+ is_common: Optional[bool] = None,
203
216
  parent_category_id: Optional[str] = None,
204
217
  sensitive_type_id: Optional[str] = None,
205
218
  sensitive_type_source: Optional[str] = None,
@@ -224,6 +237,7 @@ def get_sensitive_types(access_level: Optional[str] = None,
224
237
  default_masking_format_id=oci_data_safe_default_masking_format["test_default_masking_format"]["id"],
225
238
  display_name=var["sensitive_type_display_name"],
226
239
  entity_type=var["sensitive_type_entity_type"],
240
+ is_common=var["sensitive_type_is_common"],
227
241
  parent_category_id=oci_marketplace_category["test_category"]["id"],
228
242
  sensitive_type_id=oci_data_safe_sensitive_type["test_sensitive_type"]["id"],
229
243
  sensitive_type_source=var["sensitive_type_sensitive_type_source"],
@@ -239,6 +253,7 @@ def get_sensitive_types(access_level: Optional[str] = None,
239
253
  :param str default_masking_format_id: A filter to return only the sensitive types that have the default masking format identified by the specified OCID.
240
254
  :param str display_name: A filter to return only resources that match the specified display name.
241
255
  :param str entity_type: A filter to return the sensitive type resources based on the value of their entityType attribute.
256
+ :param bool is_common: A filter to return only the common sensitive type resources. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
242
257
  :param str parent_category_id: A filter to return only the sensitive types that are children of the sensitive category identified by the specified OCID.
243
258
  :param str sensitive_type_id: A filter to return only items related to a specific sensitive type OCID.
244
259
  :param str sensitive_type_source: A filter to return the sensitive type resources based on the value of their source attribute.
@@ -258,6 +273,7 @@ def get_sensitive_types(access_level: Optional[str] = None,
258
273
  __args__['displayName'] = display_name
259
274
  __args__['entityType'] = entity_type
260
275
  __args__['filters'] = filters
276
+ __args__['isCommon'] = is_common
261
277
  __args__['parentCategoryId'] = parent_category_id
262
278
  __args__['sensitiveTypeId'] = sensitive_type_id
263
279
  __args__['sensitiveTypeSource'] = sensitive_type_source
@@ -276,6 +292,7 @@ def get_sensitive_types(access_level: Optional[str] = None,
276
292
  entity_type=pulumi.get(__ret__, 'entity_type'),
277
293
  filters=pulumi.get(__ret__, 'filters'),
278
294
  id=pulumi.get(__ret__, 'id'),
295
+ is_common=pulumi.get(__ret__, 'is_common'),
279
296
  parent_category_id=pulumi.get(__ret__, 'parent_category_id'),
280
297
  sensitive_type_collections=pulumi.get(__ret__, 'sensitive_type_collections'),
281
298
  sensitive_type_id=pulumi.get(__ret__, 'sensitive_type_id'),
@@ -293,6 +310,7 @@ def get_sensitive_types_output(access_level: Optional[pulumi.Input[Optional[str]
293
310
  display_name: Optional[pulumi.Input[Optional[str]]] = None,
294
311
  entity_type: Optional[pulumi.Input[Optional[str]]] = None,
295
312
  filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetSensitiveTypesFilterArgs']]]]] = None,
313
+ is_common: Optional[pulumi.Input[Optional[bool]]] = None,
296
314
  parent_category_id: Optional[pulumi.Input[Optional[str]]] = None,
297
315
  sensitive_type_id: Optional[pulumi.Input[Optional[str]]] = None,
298
316
  sensitive_type_source: Optional[pulumi.Input[Optional[str]]] = None,
@@ -317,6 +335,7 @@ def get_sensitive_types_output(access_level: Optional[pulumi.Input[Optional[str]
317
335
  default_masking_format_id=oci_data_safe_default_masking_format["test_default_masking_format"]["id"],
318
336
  display_name=var["sensitive_type_display_name"],
319
337
  entity_type=var["sensitive_type_entity_type"],
338
+ is_common=var["sensitive_type_is_common"],
320
339
  parent_category_id=oci_marketplace_category["test_category"]["id"],
321
340
  sensitive_type_id=oci_data_safe_sensitive_type["test_sensitive_type"]["id"],
322
341
  sensitive_type_source=var["sensitive_type_sensitive_type_source"],
@@ -332,6 +351,7 @@ def get_sensitive_types_output(access_level: Optional[pulumi.Input[Optional[str]
332
351
  :param str default_masking_format_id: A filter to return only the sensitive types that have the default masking format identified by the specified OCID.
333
352
  :param str display_name: A filter to return only resources that match the specified display name.
334
353
  :param str entity_type: A filter to return the sensitive type resources based on the value of their entityType attribute.
354
+ :param bool is_common: A filter to return only the common sensitive type resources. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
335
355
  :param str parent_category_id: A filter to return only the sensitive types that are children of the sensitive category identified by the specified OCID.
336
356
  :param str sensitive_type_id: A filter to return only items related to a specific sensitive type OCID.
337
357
  :param str sensitive_type_source: A filter to return the sensitive type resources based on the value of their source attribute.
@@ -139,7 +139,7 @@ def get_user_assessment_profile_analytics(access_level: Optional[str] = None,
139
139
  When you perform the ListProfileAnalytics operation, if the parameter compartmentIdInSubtree is set to "true," and if the
140
140
  parameter accessLevel is set to ACCESSIBLE, then the operation returns compartments in which the requestor has INSPECT
141
141
  permissions on at least one resource, directly or indirectly (in subcompartments). If the operation is performed at the
142
- root compartment. If the requestor does not have access to at least one subcompartment of the compartment specified by
142
+ root compartment and the requestor does not have access to at least one subcompartment of the compartment specified by
143
143
  compartmentId, then "Not Authorized" is returned.
144
144
 
145
145
  The parameter compartmentIdInSubtree applies when you perform ListProfileAnalytics on the compartmentId passed and when it is
@@ -212,7 +212,7 @@ def get_user_assessment_profile_analytics_output(access_level: Optional[pulumi.I
212
212
  When you perform the ListProfileAnalytics operation, if the parameter compartmentIdInSubtree is set to "true," and if the
213
213
  parameter accessLevel is set to ACCESSIBLE, then the operation returns compartments in which the requestor has INSPECT
214
214
  permissions on at least one resource, directly or indirectly (in subcompartments). If the operation is performed at the
215
- root compartment. If the requestor does not have access to at least one subcompartment of the compartment specified by
215
+ root compartment and the requestor does not have access to at least one subcompartment of the compartment specified by
216
216
  compartmentId, then "Not Authorized" is returned.
217
217
 
218
218
  The parameter compartmentIdInSubtree applies when you perform ListProfileAnalytics on the compartmentId passed and when it is
@@ -229,7 +229,7 @@ def get_user_assessment_user_analytics(access_level: Optional[str] = None,
229
229
  When you perform the ListUserAnalytics operation, if the parameter compartmentIdInSubtree is set to "true," and if the
230
230
  parameter accessLevel is set to ACCESSIBLE, then the operation returns compartments in which the requestor has INSPECT
231
231
  permissions on at least one resource, directly or indirectly (in subcompartments). If the operation is performed at the
232
- root compartment. If the requestor does not have access to at least one subcompartment of the compartment specified by
232
+ root compartment and the requestor does not have access to at least one subcompartment of the compartment specified by
233
233
  compartmentId, then "Not Authorized" is returned.
234
234
 
235
235
  The parameter compartmentIdInSubtree applies when you perform ListUserAnalytics on the compartmentId passed and when it is
@@ -353,7 +353,7 @@ def get_user_assessment_user_analytics_output(access_level: Optional[pulumi.Inpu
353
353
  When you perform the ListUserAnalytics operation, if the parameter compartmentIdInSubtree is set to "true," and if the
354
354
  parameter accessLevel is set to ACCESSIBLE, then the operation returns compartments in which the requestor has INSPECT
355
355
  permissions on at least one resource, directly or indirectly (in subcompartments). If the operation is performed at the
356
- root compartment. If the requestor does not have access to at least one subcompartment of the compartment specified by
356
+ root compartment and the requestor does not have access to at least one subcompartment of the compartment specified by
357
357
  compartmentId, then "Not Authorized" is returned.
358
358
 
359
359
  The parameter compartmentIdInSubtree applies when you perform ListUserAnalytics on the compartmentId passed and when it is
@@ -506,6 +506,7 @@ class MaskingPoliciesMaskingColumn(pulumi.CustomResource):
506
506
  grouping_columns=var["masking_policies_masking_column_masking_formats_format_entries_grouping_columns"],
507
507
  length=var["masking_policies_masking_column_masking_formats_format_entries_length"],
508
508
  library_masking_format_id=oci_data_safe_library_masking_format["test_library_masking_format"]["id"],
509
+ pattern=var["masking_policies_masking_column_masking_formats_format_entries_pattern"],
509
510
  post_processing_function=var["masking_policies_masking_column_masking_formats_format_entries_post_processing_function"],
510
511
  random_lists=var["masking_policies_masking_column_masking_formats_format_entries_random_list"],
511
512
  regular_expression=var["masking_policies_masking_column_masking_formats_format_entries_regular_expression"],
@@ -606,6 +607,7 @@ class MaskingPoliciesMaskingColumn(pulumi.CustomResource):
606
607
  grouping_columns=var["masking_policies_masking_column_masking_formats_format_entries_grouping_columns"],
607
608
  length=var["masking_policies_masking_column_masking_formats_format_entries_length"],
608
609
  library_masking_format_id=oci_data_safe_library_masking_format["test_library_masking_format"]["id"],
610
+ pattern=var["masking_policies_masking_column_masking_formats_format_entries_pattern"],
609
611
  post_processing_function=var["masking_policies_masking_column_masking_formats_format_entries_post_processing_function"],
610
612
  random_lists=var["masking_policies_masking_column_masking_formats_format_entries_random_list"],
611
613
  regular_expression=var["masking_policies_masking_column_masking_formats_format_entries_regular_expression"],