pulumi-oci 1.19.0a1705693078__py3-none-any.whl → 1.20.0__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 (111) hide show
  1. pulumi_oci/__init__.py +59 -0
  2. pulumi_oci/adm/_inputs.py +99 -18
  3. pulumi_oci/adm/get_remediation_run_application_dependency_recommendations.py +23 -3
  4. pulumi_oci/adm/get_vulnerability_audit.py +31 -5
  5. pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerabilities.py +43 -6
  6. pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerability.py +27 -1
  7. pulumi_oci/adm/get_vulnerability_audits.py +54 -3
  8. pulumi_oci/adm/outputs.py +296 -31
  9. pulumi_oci/adm/remediation_recipe.py +2 -0
  10. pulumi_oci/adm/vulnerability_audit.py +96 -37
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +40 -0
  13. pulumi_oci/database/cloud_vm_cluster.py +22 -1
  14. pulumi_oci/database/get_system_versions.py +173 -0
  15. pulumi_oci/database/outputs.py +88 -0
  16. pulumi_oci/database/vm_cluster.py +22 -1
  17. pulumi_oci/datasafe/__init__.py +22 -0
  18. pulumi_oci/datasafe/_inputs.py +1826 -161
  19. pulumi_oci/datasafe/audit_trail.py +140 -0
  20. pulumi_oci/datasafe/discovery_mod.py +7 -7
  21. pulumi_oci/datasafe/get_audit_trail.py +66 -1
  22. pulumi_oci/datasafe/get_discovery_job.py +1 -1
  23. pulumi_oci/datasafe/get_discovery_jobs_result.py +1 -1
  24. pulumi_oci/datasafe/get_discovery_jobs_results.py +1 -1
  25. pulumi_oci/datasafe/get_masking_policies_masking_column.py +1 -1
  26. pulumi_oci/datasafe/get_masking_policies_masking_columns.py +1 -1
  27. pulumi_oci/datasafe/get_masking_policy.py +1 -1
  28. pulumi_oci/datasafe/get_report.py +1 -1
  29. pulumi_oci/datasafe/get_security_assessment.py +3 -3
  30. pulumi_oci/datasafe/get_security_assessment_comparison.py +5 -5
  31. pulumi_oci/datasafe/get_security_assessment_finding.py +29 -3
  32. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +276 -0
  33. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -7
  34. pulumi_oci/datasafe/get_security_assessment_findings_change_audit_logs.py +309 -0
  35. pulumi_oci/datasafe/get_security_assessment_security_feature_analytics.py +198 -0
  36. pulumi_oci/datasafe/get_security_assessment_security_features.py +377 -0
  37. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  38. pulumi_oci/datasafe/get_security_policies.py +253 -0
  39. pulumi_oci/datasafe/get_security_policy.py +235 -0
  40. pulumi_oci/datasafe/get_security_policy_deployment.py +261 -0
  41. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +165 -0
  42. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +180 -0
  43. pulumi_oci/datasafe/get_security_policy_deployments.py +293 -0
  44. pulumi_oci/datasafe/get_security_policy_report.py +248 -0
  45. pulumi_oci/datasafe/get_security_policy_report_database_table_access_entries.py +158 -0
  46. pulumi_oci/datasafe/get_security_policy_report_database_table_access_entry.py +408 -0
  47. pulumi_oci/datasafe/get_security_policy_report_database_view_access_entries.py +178 -0
  48. pulumi_oci/datasafe/get_security_policy_report_database_view_access_entry.py +382 -0
  49. pulumi_oci/datasafe/get_security_policy_report_role_grant_paths.py +177 -0
  50. pulumi_oci/datasafe/get_security_policy_reports.py +273 -0
  51. pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
  52. pulumi_oci/datasafe/get_target_database.py +27 -4
  53. pulumi_oci/datasafe/get_target_database_peer_target_database.py +263 -0
  54. pulumi_oci/datasafe/get_target_database_peer_target_databases.py +133 -0
  55. pulumi_oci/datasafe/get_target_databases.py +1 -1
  56. pulumi_oci/datasafe/get_user_assessment.py +5 -5
  57. pulumi_oci/datasafe/get_user_assessment_comparison.py +2 -2
  58. pulumi_oci/datasafe/get_user_assessment_user_access_analytics.py +133 -0
  59. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  60. pulumi_oci/datasafe/get_user_assessment_users.py +42 -2
  61. pulumi_oci/datasafe/get_user_assessments.py +2 -2
  62. pulumi_oci/datasafe/masking_policies_masking_column.py +7 -7
  63. pulumi_oci/datasafe/masking_policy.py +9 -9
  64. pulumi_oci/datasafe/outputs.py +16686 -9777
  65. pulumi_oci/datasafe/report.py +559 -0
  66. pulumi_oci/datasafe/security_assessment.py +12 -12
  67. pulumi_oci/datasafe/sensitive_data_model.py +7 -7
  68. pulumi_oci/datasafe/set_security_assessment_baseline.py +7 -7
  69. pulumi_oci/datasafe/set_user_assessment_baseline.py +7 -7
  70. pulumi_oci/datasafe/target_database.py +146 -25
  71. pulumi_oci/datasafe/target_database_peer_target_database.py +634 -0
  72. pulumi_oci/datasafe/user_assessment.py +20 -20
  73. pulumi_oci/generativeai/__init__.py +18 -0
  74. pulumi_oci/generativeai/_inputs.py +534 -0
  75. pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
  76. pulumi_oci/generativeai/endpoint.py +717 -0
  77. pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
  78. pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
  79. pulumi_oci/generativeai/get_endpoint.py +275 -0
  80. pulumi_oci/generativeai/get_endpoints.py +183 -0
  81. pulumi_oci/generativeai/get_model.py +353 -0
  82. pulumi_oci/generativeai/get_models.py +220 -0
  83. pulumi_oci/generativeai/model.py +858 -0
  84. pulumi_oci/generativeai/outputs.py +1721 -0
  85. pulumi_oci/marketplace/get_publication.py +14 -1
  86. pulumi_oci/marketplace/outputs.py +11 -0
  87. pulumi_oci/marketplace/publication.py +28 -0
  88. pulumi_oci/monitoring/__init__.py +3 -0
  89. pulumi_oci/monitoring/_inputs.py +82 -4
  90. pulumi_oci/monitoring/alarm.py +15 -15
  91. pulumi_oci/monitoring/alarm_suppression.py +745 -0
  92. pulumi_oci/monitoring/get_alarm.py +5 -5
  93. pulumi_oci/monitoring/get_alarm_history_collection.py +4 -4
  94. pulumi_oci/monitoring/get_alarm_statuses.py +3 -1
  95. pulumi_oci/monitoring/get_alarm_suppression.py +276 -0
  96. pulumi_oci/monitoring/get_alarm_suppressions.py +192 -0
  97. pulumi_oci/monitoring/get_metric_data.py +12 -8
  98. pulumi_oci/monitoring/get_metrics.py +2 -2
  99. pulumi_oci/monitoring/outputs.py +355 -50
  100. pulumi_oci/networkfirewall/_inputs.py +25 -20
  101. pulumi_oci/networkfirewall/outputs.py +40 -30
  102. pulumi_oci/stackmonitoring/__init__.py +3 -0
  103. pulumi_oci/stackmonitoring/_inputs.py +143 -0
  104. pulumi_oci/stackmonitoring/get_process_set.py +236 -0
  105. pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
  106. pulumi_oci/stackmonitoring/outputs.py +422 -0
  107. pulumi_oci/stackmonitoring/process_set.py +548 -0
  108. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/METADATA +1 -1
  109. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/RECORD +111 -70
  110. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/WHEEL +0 -0
  111. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,133 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+ from ._inputs import *
13
+
14
+ __all__ = [
15
+ 'GetTargetDatabasePeerTargetDatabasesResult',
16
+ 'AwaitableGetTargetDatabasePeerTargetDatabasesResult',
17
+ 'get_target_database_peer_target_databases',
18
+ 'get_target_database_peer_target_databases_output',
19
+ ]
20
+
21
+ @pulumi.output_type
22
+ class GetTargetDatabasePeerTargetDatabasesResult:
23
+ """
24
+ A collection of values returned by getTargetDatabasePeerTargetDatabases.
25
+ """
26
+ def __init__(__self__, filters=None, id=None, peer_target_database_collections=None, target_database_id=None):
27
+ if filters and not isinstance(filters, list):
28
+ raise TypeError("Expected argument 'filters' to be a list")
29
+ pulumi.set(__self__, "filters", filters)
30
+ if id and not isinstance(id, str):
31
+ raise TypeError("Expected argument 'id' to be a str")
32
+ pulumi.set(__self__, "id", id)
33
+ if peer_target_database_collections and not isinstance(peer_target_database_collections, list):
34
+ raise TypeError("Expected argument 'peer_target_database_collections' to be a list")
35
+ pulumi.set(__self__, "peer_target_database_collections", peer_target_database_collections)
36
+ if target_database_id and not isinstance(target_database_id, str):
37
+ raise TypeError("Expected argument 'target_database_id' to be a str")
38
+ pulumi.set(__self__, "target_database_id", target_database_id)
39
+
40
+ @property
41
+ @pulumi.getter
42
+ def filters(self) -> Optional[Sequence['outputs.GetTargetDatabasePeerTargetDatabasesFilterResult']]:
43
+ return pulumi.get(self, "filters")
44
+
45
+ @property
46
+ @pulumi.getter
47
+ def id(self) -> str:
48
+ """
49
+ The provider-assigned unique ID for this managed resource.
50
+ """
51
+ return pulumi.get(self, "id")
52
+
53
+ @property
54
+ @pulumi.getter(name="peerTargetDatabaseCollections")
55
+ def peer_target_database_collections(self) -> Sequence['outputs.GetTargetDatabasePeerTargetDatabasesPeerTargetDatabaseCollectionResult']:
56
+ """
57
+ The list of peer_target_database_collection.
58
+ """
59
+ return pulumi.get(self, "peer_target_database_collections")
60
+
61
+ @property
62
+ @pulumi.getter(name="targetDatabaseId")
63
+ def target_database_id(self) -> str:
64
+ return pulumi.get(self, "target_database_id")
65
+
66
+
67
+ class AwaitableGetTargetDatabasePeerTargetDatabasesResult(GetTargetDatabasePeerTargetDatabasesResult):
68
+ # pylint: disable=using-constant-test
69
+ def __await__(self):
70
+ if False:
71
+ yield self
72
+ return GetTargetDatabasePeerTargetDatabasesResult(
73
+ filters=self.filters,
74
+ id=self.id,
75
+ peer_target_database_collections=self.peer_target_database_collections,
76
+ target_database_id=self.target_database_id)
77
+
78
+
79
+ def get_target_database_peer_target_databases(filters: Optional[Sequence[pulumi.InputType['GetTargetDatabasePeerTargetDatabasesFilterArgs']]] = None,
80
+ target_database_id: Optional[str] = None,
81
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTargetDatabasePeerTargetDatabasesResult:
82
+ """
83
+ This data source provides the list of Target Database Peer Target Databases in Oracle Cloud Infrastructure Data Safe service.
84
+
85
+ Lists all the peer target databases under the primary target database identified by the OCID passed as path parameter.
86
+
87
+ ## Example Usage
88
+
89
+ ```python
90
+ import pulumi
91
+ import pulumi_oci as oci
92
+
93
+ test_target_database_peer_target_databases = oci.DataSafe.get_target_database_peer_target_databases(target_database_id=oci_data_safe_target_database["test_target_database"]["id"])
94
+ ```
95
+
96
+
97
+ :param str target_database_id: The OCID of the Data Safe target database.
98
+ """
99
+ __args__ = dict()
100
+ __args__['filters'] = filters
101
+ __args__['targetDatabaseId'] = target_database_id
102
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
103
+ __ret__ = pulumi.runtime.invoke('oci:DataSafe/getTargetDatabasePeerTargetDatabases:getTargetDatabasePeerTargetDatabases', __args__, opts=opts, typ=GetTargetDatabasePeerTargetDatabasesResult).value
104
+
105
+ return AwaitableGetTargetDatabasePeerTargetDatabasesResult(
106
+ filters=pulumi.get(__ret__, 'filters'),
107
+ id=pulumi.get(__ret__, 'id'),
108
+ peer_target_database_collections=pulumi.get(__ret__, 'peer_target_database_collections'),
109
+ target_database_id=pulumi.get(__ret__, 'target_database_id'))
110
+
111
+
112
+ @_utilities.lift_output_func(get_target_database_peer_target_databases)
113
+ def get_target_database_peer_target_databases_output(filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetTargetDatabasePeerTargetDatabasesFilterArgs']]]]] = None,
114
+ target_database_id: Optional[pulumi.Input[str]] = None,
115
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTargetDatabasePeerTargetDatabasesResult]:
116
+ """
117
+ This data source provides the list of Target Database Peer Target Databases in Oracle Cloud Infrastructure Data Safe service.
118
+
119
+ Lists all the peer target databases under the primary target database identified by the OCID passed as path parameter.
120
+
121
+ ## Example Usage
122
+
123
+ ```python
124
+ import pulumi
125
+ import pulumi_oci as oci
126
+
127
+ test_target_database_peer_target_databases = oci.DataSafe.get_target_database_peer_target_databases(target_database_id=oci_data_safe_target_database["test_target_database"]["id"])
128
+ ```
129
+
130
+
131
+ :param str target_database_id: The OCID of the Data Safe target database.
132
+ """
133
+ ...
@@ -96,7 +96,7 @@ class GetTargetDatabasesResult:
96
96
  @pulumi.getter(name="displayName")
97
97
  def display_name(self) -> Optional[str]:
98
98
  """
99
- The display name of the target database in Data Safe.
99
+ The display name of the peer target database in Data Safe.
100
100
  """
101
101
  return pulumi.get(self, "display_name")
102
102
 
@@ -252,7 +252,7 @@ class GetUserAssessmentResult:
252
252
  @pulumi.getter(name="timeCreated")
253
253
  def time_created(self) -> str:
254
254
  """
255
- The date and time when the user assessment was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
255
+ The date and time the user assessment was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
256
256
  """
257
257
  return pulumi.get(self, "time_created")
258
258
 
@@ -260,7 +260,7 @@ class GetUserAssessmentResult:
260
260
  @pulumi.getter(name="timeLastAssessed")
261
261
  def time_last_assessed(self) -> str:
262
262
  """
263
- The date and time the user assessment was last run, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
263
+ The date and time the user assessment was last executed, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
264
264
  """
265
265
  return pulumi.get(self, "time_last_assessed")
266
266
 
@@ -268,7 +268,7 @@ class GetUserAssessmentResult:
268
268
  @pulumi.getter(name="timeUpdated")
269
269
  def time_updated(self) -> str:
270
270
  """
271
- The last date and time when the user assessment was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
271
+ The date and time the user assessment was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
272
272
  """
273
273
  return pulumi.get(self, "time_updated")
274
274
 
@@ -276,7 +276,7 @@ class GetUserAssessmentResult:
276
276
  @pulumi.getter(name="triggeredBy")
277
277
  def triggered_by(self) -> str:
278
278
  """
279
- Indicates whether the user assessment was created by system or user.
279
+ Indicates whether the user assessment was created by the system or the user.
280
280
  """
281
281
  return pulumi.get(self, "triggered_by")
282
282
 
@@ -284,7 +284,7 @@ class GetUserAssessmentResult:
284
284
  @pulumi.getter
285
285
  def type(self) -> str:
286
286
  """
287
- Type of user assessment. Type can be:
287
+ The type of the user assessment. The possible types are:
288
288
  """
289
289
  return pulumi.get(self, "type")
290
290
 
@@ -105,7 +105,7 @@ def get_user_assessment_comparison(comparison_user_assessment_id: Optional[str]
105
105
  """
106
106
  This data source provides details about a specific User Assessment Comparison resource in Oracle Cloud Infrastructure Data Safe service.
107
107
 
108
- Gets the details of the comparison report for the user assessments provided.
108
+ Gets the details of the comparison report for the user assessments submitted for comparison.
109
109
 
110
110
  ## Example Usage
111
111
 
@@ -143,7 +143,7 @@ def get_user_assessment_comparison_output(comparison_user_assessment_id: Optiona
143
143
  """
144
144
  This data source provides details about a specific User Assessment Comparison resource in Oracle Cloud Infrastructure Data Safe service.
145
145
 
146
- Gets the details of the comparison report for the user assessments provided.
146
+ Gets the details of the comparison report for the user assessments submitted for comparison.
147
147
 
148
148
  ## Example Usage
149
149
 
@@ -0,0 +1,133 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+ from ._inputs import *
13
+
14
+ __all__ = [
15
+ 'GetUserAssessmentUserAccessAnalyticsResult',
16
+ 'AwaitableGetUserAssessmentUserAccessAnalyticsResult',
17
+ 'get_user_assessment_user_access_analytics',
18
+ 'get_user_assessment_user_access_analytics_output',
19
+ ]
20
+
21
+ @pulumi.output_type
22
+ class GetUserAssessmentUserAccessAnalyticsResult:
23
+ """
24
+ A collection of values returned by getUserAssessmentUserAccessAnalytics.
25
+ """
26
+ def __init__(__self__, filters=None, id=None, user_access_analytics_collections=None, user_assessment_id=None):
27
+ if filters and not isinstance(filters, list):
28
+ raise TypeError("Expected argument 'filters' to be a list")
29
+ pulumi.set(__self__, "filters", filters)
30
+ if id and not isinstance(id, str):
31
+ raise TypeError("Expected argument 'id' to be a str")
32
+ pulumi.set(__self__, "id", id)
33
+ if user_access_analytics_collections and not isinstance(user_access_analytics_collections, list):
34
+ raise TypeError("Expected argument 'user_access_analytics_collections' to be a list")
35
+ pulumi.set(__self__, "user_access_analytics_collections", user_access_analytics_collections)
36
+ if user_assessment_id and not isinstance(user_assessment_id, str):
37
+ raise TypeError("Expected argument 'user_assessment_id' to be a str")
38
+ pulumi.set(__self__, "user_assessment_id", user_assessment_id)
39
+
40
+ @property
41
+ @pulumi.getter
42
+ def filters(self) -> Optional[Sequence['outputs.GetUserAssessmentUserAccessAnalyticsFilterResult']]:
43
+ return pulumi.get(self, "filters")
44
+
45
+ @property
46
+ @pulumi.getter
47
+ def id(self) -> str:
48
+ """
49
+ The provider-assigned unique ID for this managed resource.
50
+ """
51
+ return pulumi.get(self, "id")
52
+
53
+ @property
54
+ @pulumi.getter(name="userAccessAnalyticsCollections")
55
+ def user_access_analytics_collections(self) -> Sequence['outputs.GetUserAssessmentUserAccessAnalyticsUserAccessAnalyticsCollectionResult']:
56
+ """
57
+ The list of user_access_analytics_collection.
58
+ """
59
+ return pulumi.get(self, "user_access_analytics_collections")
60
+
61
+ @property
62
+ @pulumi.getter(name="userAssessmentId")
63
+ def user_assessment_id(self) -> str:
64
+ return pulumi.get(self, "user_assessment_id")
65
+
66
+
67
+ class AwaitableGetUserAssessmentUserAccessAnalyticsResult(GetUserAssessmentUserAccessAnalyticsResult):
68
+ # pylint: disable=using-constant-test
69
+ def __await__(self):
70
+ if False:
71
+ yield self
72
+ return GetUserAssessmentUserAccessAnalyticsResult(
73
+ filters=self.filters,
74
+ id=self.id,
75
+ user_access_analytics_collections=self.user_access_analytics_collections,
76
+ user_assessment_id=self.user_assessment_id)
77
+
78
+
79
+ def get_user_assessment_user_access_analytics(filters: Optional[Sequence[pulumi.InputType['GetUserAssessmentUserAccessAnalyticsFilterArgs']]] = None,
80
+ user_assessment_id: Optional[str] = None,
81
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUserAssessmentUserAccessAnalyticsResult:
82
+ """
83
+ This data source provides the list of User Assessment User Access Analytics in Oracle Cloud Infrastructure Data Safe service.
84
+
85
+ Gets a list of aggregated user access analytics in the specified target in a compartment.
86
+
87
+ ## Example Usage
88
+
89
+ ```python
90
+ import pulumi
91
+ import pulumi_oci as oci
92
+
93
+ test_user_assessment_user_access_analytics = oci.DataSafe.get_user_assessment_user_access_analytics(user_assessment_id=oci_data_safe_user_assessment["test_user_assessment"]["id"])
94
+ ```
95
+
96
+
97
+ :param str user_assessment_id: The OCID of the user assessment.
98
+ """
99
+ __args__ = dict()
100
+ __args__['filters'] = filters
101
+ __args__['userAssessmentId'] = user_assessment_id
102
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
103
+ __ret__ = pulumi.runtime.invoke('oci:DataSafe/getUserAssessmentUserAccessAnalytics:getUserAssessmentUserAccessAnalytics', __args__, opts=opts, typ=GetUserAssessmentUserAccessAnalyticsResult).value
104
+
105
+ return AwaitableGetUserAssessmentUserAccessAnalyticsResult(
106
+ filters=pulumi.get(__ret__, 'filters'),
107
+ id=pulumi.get(__ret__, 'id'),
108
+ user_access_analytics_collections=pulumi.get(__ret__, 'user_access_analytics_collections'),
109
+ user_assessment_id=pulumi.get(__ret__, 'user_assessment_id'))
110
+
111
+
112
+ @_utilities.lift_output_func(get_user_assessment_user_access_analytics)
113
+ def get_user_assessment_user_access_analytics_output(filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetUserAssessmentUserAccessAnalyticsFilterArgs']]]]] = None,
114
+ user_assessment_id: Optional[pulumi.Input[str]] = None,
115
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetUserAssessmentUserAccessAnalyticsResult]:
116
+ """
117
+ This data source provides the list of User Assessment User Access Analytics in Oracle Cloud Infrastructure Data Safe service.
118
+
119
+ Gets a list of aggregated user access analytics in the specified target in a compartment.
120
+
121
+ ## Example Usage
122
+
123
+ ```python
124
+ import pulumi
125
+ import pulumi_oci as oci
126
+
127
+ test_user_assessment_user_access_analytics = oci.DataSafe.get_user_assessment_user_access_analytics(user_assessment_id=oci_data_safe_user_assessment["test_user_assessment"]["id"])
128
+ ```
129
+
130
+
131
+ :param str user_assessment_id: The OCID of the user assessment.
132
+ """
133
+ ...
@@ -222,7 +222,7 @@ def get_user_assessment_user_analytics(access_level: Optional[str] = None,
222
222
  """
223
223
  This data source provides the list of User Assessment User Analytics in Oracle Cloud Infrastructure Data Safe service.
224
224
 
225
- Gets a list of aggregated user details from the specified user assessment. This provides information about the overall state
225
+ Gets a list of aggregated user details from the specified user assessment. This provides information about the overall state.
226
226
  of database user security. For example, the user details include how many users have the DBA role and how many users are in
227
227
  the critical category. This data is especially useful content for dashboards or to support analytics.
228
228
 
@@ -346,7 +346,7 @@ def get_user_assessment_user_analytics_output(access_level: Optional[pulumi.Inpu
346
346
  """
347
347
  This data source provides the list of User Assessment User Analytics in Oracle Cloud Infrastructure Data Safe service.
348
348
 
349
- Gets a list of aggregated user details from the specified user assessment. This provides information about the overall state
349
+ Gets a list of aggregated user details from the specified user assessment. This provides information about the overall state.
350
350
  of database user security. For example, the user details include how many users have the DBA role and how many users are in
351
351
  the critical category. This data is especially useful content for dashboards or to support analytics.
352
352
 
@@ -23,13 +23,16 @@ class GetUserAssessmentUsersResult:
23
23
  """
24
24
  A collection of values returned by getUserAssessmentUsers.
25
25
  """
26
- def __init__(__self__, access_level=None, account_status=None, authentication_type=None, compartment_id_in_subtree=None, filters=None, id=None, target_id=None, time_last_login_greater_than_or_equal_to=None, time_last_login_less_than=None, time_password_last_changed_greater_than_or_equal_to=None, time_password_last_changed_less_than=None, time_user_created_greater_than_or_equal_to=None, time_user_created_less_than=None, user_assessment_id=None, user_category=None, user_key=None, user_name=None, user_profile=None, user_role=None, user_type=None, users=None):
26
+ def __init__(__self__, access_level=None, account_status=None, are_all_schemas_accessible=None, authentication_type=None, compartment_id_in_subtree=None, filters=None, id=None, schema_lists=None, target_id=None, time_last_login_greater_than_or_equal_to=None, time_last_login_less_than=None, time_password_last_changed_greater_than_or_equal_to=None, time_password_last_changed_less_than=None, time_user_created_greater_than_or_equal_to=None, time_user_created_less_than=None, user_assessment_id=None, user_category=None, user_key=None, user_name=None, user_profile=None, user_role=None, user_type=None, users=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)
30
30
  if account_status and not isinstance(account_status, str):
31
31
  raise TypeError("Expected argument 'account_status' to be a str")
32
32
  pulumi.set(__self__, "account_status", account_status)
33
+ if are_all_schemas_accessible and not isinstance(are_all_schemas_accessible, bool):
34
+ raise TypeError("Expected argument 'are_all_schemas_accessible' to be a bool")
35
+ pulumi.set(__self__, "are_all_schemas_accessible", are_all_schemas_accessible)
33
36
  if authentication_type and not isinstance(authentication_type, str):
34
37
  raise TypeError("Expected argument 'authentication_type' to be a str")
35
38
  pulumi.set(__self__, "authentication_type", authentication_type)
@@ -42,6 +45,9 @@ class GetUserAssessmentUsersResult:
42
45
  if id and not isinstance(id, str):
43
46
  raise TypeError("Expected argument 'id' to be a str")
44
47
  pulumi.set(__self__, "id", id)
48
+ if schema_lists and not isinstance(schema_lists, list):
49
+ raise TypeError("Expected argument 'schema_lists' to be a list")
50
+ pulumi.set(__self__, "schema_lists", schema_lists)
45
51
  if target_id and not isinstance(target_id, str):
46
52
  raise TypeError("Expected argument 'target_id' to be a str")
47
53
  pulumi.set(__self__, "target_id", target_id)
@@ -97,10 +103,18 @@ class GetUserAssessmentUsersResult:
97
103
  @pulumi.getter(name="accountStatus")
98
104
  def account_status(self) -> Optional[str]:
99
105
  """
100
- The user account status.
106
+ The status of the user account.
101
107
  """
102
108
  return pulumi.get(self, "account_status")
103
109
 
110
+ @property
111
+ @pulumi.getter(name="areAllSchemasAccessible")
112
+ def are_all_schemas_accessible(self) -> Optional[bool]:
113
+ """
114
+ Indicates whether the user has access to all the schemas.
115
+ """
116
+ return pulumi.get(self, "are_all_schemas_accessible")
117
+
104
118
  @property
105
119
  @pulumi.getter(name="authenticationType")
106
120
  def authentication_type(self) -> Optional[str]:
@@ -127,6 +141,14 @@ class GetUserAssessmentUsersResult:
127
141
  """
128
142
  return pulumi.get(self, "id")
129
143
 
144
+ @property
145
+ @pulumi.getter(name="schemaLists")
146
+ def schema_lists(self) -> Optional[Sequence[str]]:
147
+ """
148
+ The list of database schemas current user can access.
149
+ """
150
+ return pulumi.get(self, "schema_lists")
151
+
130
152
  @property
131
153
  @pulumi.getter(name="targetId")
132
154
  def target_id(self) -> Optional[str]:
@@ -226,10 +248,12 @@ class AwaitableGetUserAssessmentUsersResult(GetUserAssessmentUsersResult):
226
248
  return GetUserAssessmentUsersResult(
227
249
  access_level=self.access_level,
228
250
  account_status=self.account_status,
251
+ are_all_schemas_accessible=self.are_all_schemas_accessible,
229
252
  authentication_type=self.authentication_type,
230
253
  compartment_id_in_subtree=self.compartment_id_in_subtree,
231
254
  filters=self.filters,
232
255
  id=self.id,
256
+ schema_lists=self.schema_lists,
233
257
  target_id=self.target_id,
234
258
  time_last_login_greater_than_or_equal_to=self.time_last_login_greater_than_or_equal_to,
235
259
  time_last_login_less_than=self.time_last_login_less_than,
@@ -249,9 +273,11 @@ class AwaitableGetUserAssessmentUsersResult(GetUserAssessmentUsersResult):
249
273
 
250
274
  def get_user_assessment_users(access_level: Optional[str] = None,
251
275
  account_status: Optional[str] = None,
276
+ are_all_schemas_accessible: Optional[bool] = None,
252
277
  authentication_type: Optional[str] = None,
253
278
  compartment_id_in_subtree: Optional[bool] = None,
254
279
  filters: Optional[Sequence[pulumi.InputType['GetUserAssessmentUsersFilterArgs']]] = None,
280
+ schema_lists: Optional[Sequence[str]] = None,
255
281
  target_id: Optional[str] = None,
256
282
  time_last_login_greater_than_or_equal_to: Optional[str] = None,
257
283
  time_last_login_less_than: Optional[str] = None,
@@ -284,8 +310,10 @@ def get_user_assessment_users(access_level: Optional[str] = None,
284
310
  test_user_assessment_users = oci.DataSafe.get_user_assessment_users(user_assessment_id=oci_data_safe_user_assessment["test_user_assessment"]["id"],
285
311
  access_level=var["user_assessment_user_access_level"],
286
312
  account_status=var["user_assessment_user_account_status"],
313
+ are_all_schemas_accessible=var["user_assessment_user_are_all_schemas_accessible"],
287
314
  authentication_type=var["user_assessment_user_authentication_type"],
288
315
  compartment_id_in_subtree=var["user_assessment_user_compartment_id_in_subtree"],
316
+ schema_lists=var["user_assessment_user_schema_list"],
289
317
  target_id=oci_cloud_guard_target["test_target"]["id"],
290
318
  time_last_login_greater_than_or_equal_to=var["user_assessment_user_time_last_login_greater_than_or_equal_to"],
291
319
  time_last_login_less_than=var["user_assessment_user_time_last_login_less_than"],
@@ -304,8 +332,10 @@ def get_user_assessment_users(access_level: Optional[str] = None,
304
332
 
305
333
  :param str access_level: Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
306
334
  :param str account_status: A filter to return only items that match the specified account status.
335
+ :param bool are_all_schemas_accessible: A filter to return only items that match the criteria that all schemas can be accessed by a user.
307
336
  :param str authentication_type: A filter to return only items that match the specified authentication type.
308
337
  :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.
338
+ :param Sequence[str] schema_lists: A filter to return items that contain the specified schema list.
309
339
  :param str target_id: A filter to return only items related to a specific target OCID.
310
340
  :param str time_last_login_greater_than_or_equal_to: A filter to return users whose last login time in the database is greater than or equal to the date and time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
311
341
 
@@ -335,9 +365,11 @@ def get_user_assessment_users(access_level: Optional[str] = None,
335
365
  __args__ = dict()
336
366
  __args__['accessLevel'] = access_level
337
367
  __args__['accountStatus'] = account_status
368
+ __args__['areAllSchemasAccessible'] = are_all_schemas_accessible
338
369
  __args__['authenticationType'] = authentication_type
339
370
  __args__['compartmentIdInSubtree'] = compartment_id_in_subtree
340
371
  __args__['filters'] = filters
372
+ __args__['schemaLists'] = schema_lists
341
373
  __args__['targetId'] = target_id
342
374
  __args__['timeLastLoginGreaterThanOrEqualTo'] = time_last_login_greater_than_or_equal_to
343
375
  __args__['timeLastLoginLessThan'] = time_last_login_less_than
@@ -358,10 +390,12 @@ def get_user_assessment_users(access_level: Optional[str] = None,
358
390
  return AwaitableGetUserAssessmentUsersResult(
359
391
  access_level=pulumi.get(__ret__, 'access_level'),
360
392
  account_status=pulumi.get(__ret__, 'account_status'),
393
+ are_all_schemas_accessible=pulumi.get(__ret__, 'are_all_schemas_accessible'),
361
394
  authentication_type=pulumi.get(__ret__, 'authentication_type'),
362
395
  compartment_id_in_subtree=pulumi.get(__ret__, 'compartment_id_in_subtree'),
363
396
  filters=pulumi.get(__ret__, 'filters'),
364
397
  id=pulumi.get(__ret__, 'id'),
398
+ schema_lists=pulumi.get(__ret__, 'schema_lists'),
365
399
  target_id=pulumi.get(__ret__, 'target_id'),
366
400
  time_last_login_greater_than_or_equal_to=pulumi.get(__ret__, 'time_last_login_greater_than_or_equal_to'),
367
401
  time_last_login_less_than=pulumi.get(__ret__, 'time_last_login_less_than'),
@@ -382,9 +416,11 @@ def get_user_assessment_users(access_level: Optional[str] = None,
382
416
  @_utilities.lift_output_func(get_user_assessment_users)
383
417
  def get_user_assessment_users_output(access_level: Optional[pulumi.Input[Optional[str]]] = None,
384
418
  account_status: Optional[pulumi.Input[Optional[str]]] = None,
419
+ are_all_schemas_accessible: Optional[pulumi.Input[Optional[bool]]] = None,
385
420
  authentication_type: Optional[pulumi.Input[Optional[str]]] = None,
386
421
  compartment_id_in_subtree: Optional[pulumi.Input[Optional[bool]]] = None,
387
422
  filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetUserAssessmentUsersFilterArgs']]]]] = None,
423
+ schema_lists: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
388
424
  target_id: Optional[pulumi.Input[Optional[str]]] = None,
389
425
  time_last_login_greater_than_or_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
390
426
  time_last_login_less_than: Optional[pulumi.Input[Optional[str]]] = None,
@@ -417,8 +453,10 @@ def get_user_assessment_users_output(access_level: Optional[pulumi.Input[Optiona
417
453
  test_user_assessment_users = oci.DataSafe.get_user_assessment_users(user_assessment_id=oci_data_safe_user_assessment["test_user_assessment"]["id"],
418
454
  access_level=var["user_assessment_user_access_level"],
419
455
  account_status=var["user_assessment_user_account_status"],
456
+ are_all_schemas_accessible=var["user_assessment_user_are_all_schemas_accessible"],
420
457
  authentication_type=var["user_assessment_user_authentication_type"],
421
458
  compartment_id_in_subtree=var["user_assessment_user_compartment_id_in_subtree"],
459
+ schema_lists=var["user_assessment_user_schema_list"],
422
460
  target_id=oci_cloud_guard_target["test_target"]["id"],
423
461
  time_last_login_greater_than_or_equal_to=var["user_assessment_user_time_last_login_greater_than_or_equal_to"],
424
462
  time_last_login_less_than=var["user_assessment_user_time_last_login_less_than"],
@@ -437,8 +475,10 @@ def get_user_assessment_users_output(access_level: Optional[pulumi.Input[Optiona
437
475
 
438
476
  :param str access_level: Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
439
477
  :param str account_status: A filter to return only items that match the specified account status.
478
+ :param bool are_all_schemas_accessible: A filter to return only items that match the criteria that all schemas can be accessed by a user.
440
479
  :param str authentication_type: A filter to return only items that match the specified authentication type.
441
480
  :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.
481
+ :param Sequence[str] schema_lists: A filter to return items that contain the specified schema list.
442
482
  :param str target_id: A filter to return only items related to a specific target OCID.
443
483
  :param str time_last_login_greater_than_or_equal_to: A filter to return users whose last login time in the database is greater than or equal to the date and time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
444
484
 
@@ -168,7 +168,7 @@ class GetUserAssessmentsResult:
168
168
  @pulumi.getter(name="triggeredBy")
169
169
  def triggered_by(self) -> Optional[str]:
170
170
  """
171
- Indicates whether the user assessment was created by system or user.
171
+ Indicates whether the user assessment was created by the system or the user.
172
172
  """
173
173
  return pulumi.get(self, "triggered_by")
174
174
 
@@ -176,7 +176,7 @@ class GetUserAssessmentsResult:
176
176
  @pulumi.getter
177
177
  def type(self) -> Optional[str]:
178
178
  """
179
- Type of user assessment. Type can be:
179
+ The type of the user assessment. The possible types are:
180
180
  """
181
181
  return pulumi.get(self, "type")
182
182
 
@@ -31,7 +31,7 @@ class MaskingPoliciesMaskingColumnArgs:
31
31
  :param pulumi.Input[str] masking_policy_id: The OCID of the masking policy.
32
32
  :param pulumi.Input[str] object: The name of the object (table or editioning view) that contains the database column. This attribute cannot be updated for an existing masking column.
33
33
  :param pulumi.Input[str] schema_name: The name of the schema that contains the database column. This attribute cannot be updated for an existing masking column.
34
- :param pulumi.Input[bool] is_masking_enabled: (Updatable) Indicates if data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
34
+ :param pulumi.Input[bool] is_masking_enabled: (Updatable) Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
35
35
  :param pulumi.Input[str] masking_column_group: (Updatable) The group of the masking column. It's a masking group identifier and can be any string of acceptable length. All the columns in a group are masked together to ensure that the masked data across these columns continue to retain the same logical relationship. For more details, check <a href=https://docs.oracle.com/en/cloud/paas/data-safe/udscs/group-masking1.html#GUID-755056B9-9540-48C0-9491-262A44A85037>Group Masking in the Data Safe documentation.</a>
36
36
  :param pulumi.Input[Sequence[pulumi.Input['MaskingPoliciesMaskingColumnMaskingFormatArgs']]] masking_formats: (Updatable) The masking formats to be assigned to the masking column. You can specify a condition as part of each masking format. It enables you to do <a href="https://docs.oracle.com/en/cloud/paas/data-safe/udscs/conditional-masking.html">conditional masking</a> so that you can mask the column data values differently using different masking formats and the associated conditions. A masking format can have one or more format entries. The combined output of all the format entries is used for masking. It provides the flexibility to define a masking format that can generate different parts of a data value separately and then combine them to get the final data value for masking.
37
37
  :param pulumi.Input[str] object_type: (Updatable) The type of the object that contains the database column.
@@ -108,7 +108,7 @@ class MaskingPoliciesMaskingColumnArgs:
108
108
  @pulumi.getter(name="isMaskingEnabled")
109
109
  def is_masking_enabled(self) -> Optional[pulumi.Input[bool]]:
110
110
  """
111
- (Updatable) Indicates if data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
111
+ (Updatable) Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
112
112
  """
113
113
  return pulumi.get(self, "is_masking_enabled")
114
114
 
@@ -193,7 +193,7 @@ class _MaskingPoliciesMaskingColumnState:
193
193
  :param pulumi.Input[Sequence[pulumi.Input[str]]] child_columns: An array of child columns that are in referential relationship with the masking column.
194
194
  :param pulumi.Input[str] column_name: (Updatable) The name of the substitution column.
195
195
  :param pulumi.Input[str] data_type: The data type of the masking column.
196
- :param pulumi.Input[bool] is_masking_enabled: (Updatable) Indicates if data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
196
+ :param pulumi.Input[bool] is_masking_enabled: (Updatable) Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
197
197
  :param pulumi.Input[str] key: The unique key that identifies the masking column. It's numeric and unique within a masking policy.
198
198
  :param pulumi.Input[str] lifecycle_details: Details about the current state of the masking column.
199
199
  :param pulumi.Input[str] masking_column_group: (Updatable) The group of the masking column. It's a masking group identifier and can be any string of acceptable length. All the columns in a group are masked together to ensure that the masked data across these columns continue to retain the same logical relationship. For more details, check <a href=https://docs.oracle.com/en/cloud/paas/data-safe/udscs/group-masking1.html#GUID-755056B9-9540-48C0-9491-262A44A85037>Group Masking in the Data Safe documentation.</a>
@@ -284,7 +284,7 @@ class _MaskingPoliciesMaskingColumnState:
284
284
  @pulumi.getter(name="isMaskingEnabled")
285
285
  def is_masking_enabled(self) -> Optional[pulumi.Input[bool]]:
286
286
  """
287
- (Updatable) Indicates if data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
287
+ (Updatable) Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
288
288
  """
289
289
  return pulumi.get(self, "is_masking_enabled")
290
290
 
@@ -538,7 +538,7 @@ class MaskingPoliciesMaskingColumn(pulumi.CustomResource):
538
538
  :param str resource_name: The name of the resource.
539
539
  :param pulumi.ResourceOptions opts: Options for the resource.
540
540
  :param pulumi.Input[str] column_name: (Updatable) The name of the substitution column.
541
- :param pulumi.Input[bool] is_masking_enabled: (Updatable) Indicates if data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
541
+ :param pulumi.Input[bool] is_masking_enabled: (Updatable) Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
542
542
  :param pulumi.Input[str] masking_column_group: (Updatable) The group of the masking column. It's a masking group identifier and can be any string of acceptable length. All the columns in a group are masked together to ensure that the masked data across these columns continue to retain the same logical relationship. For more details, check <a href=https://docs.oracle.com/en/cloud/paas/data-safe/udscs/group-masking1.html#GUID-755056B9-9540-48C0-9491-262A44A85037>Group Masking in the Data Safe documentation.</a>
543
543
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MaskingPoliciesMaskingColumnMaskingFormatArgs']]]] masking_formats: (Updatable) The masking formats to be assigned to the masking column. You can specify a condition as part of each masking format. It enables you to do <a href="https://docs.oracle.com/en/cloud/paas/data-safe/udscs/conditional-masking.html">conditional masking</a> so that you can mask the column data values differently using different masking formats and the associated conditions. A masking format can have one or more format entries. The combined output of all the format entries is used for masking. It provides the flexibility to define a masking format that can generate different parts of a data value separately and then combine them to get the final data value for masking.
544
544
  :param pulumi.Input[str] masking_policy_id: The OCID of the masking policy.
@@ -729,7 +729,7 @@ class MaskingPoliciesMaskingColumn(pulumi.CustomResource):
729
729
  :param pulumi.Input[Sequence[pulumi.Input[str]]] child_columns: An array of child columns that are in referential relationship with the masking column.
730
730
  :param pulumi.Input[str] column_name: (Updatable) The name of the substitution column.
731
731
  :param pulumi.Input[str] data_type: The data type of the masking column.
732
- :param pulumi.Input[bool] is_masking_enabled: (Updatable) Indicates if data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
732
+ :param pulumi.Input[bool] is_masking_enabled: (Updatable) Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
733
733
  :param pulumi.Input[str] key: The unique key that identifies the masking column. It's numeric and unique within a masking policy.
734
734
  :param pulumi.Input[str] lifecycle_details: Details about the current state of the masking column.
735
735
  :param pulumi.Input[str] masking_column_group: (Updatable) The group of the masking column. It's a masking group identifier and can be any string of acceptable length. All the columns in a group are masked together to ensure that the masked data across these columns continue to retain the same logical relationship. For more details, check <a href=https://docs.oracle.com/en/cloud/paas/data-safe/udscs/group-masking1.html#GUID-755056B9-9540-48C0-9491-262A44A85037>Group Masking in the Data Safe documentation.</a>
@@ -797,7 +797,7 @@ class MaskingPoliciesMaskingColumn(pulumi.CustomResource):
797
797
  @pulumi.getter(name="isMaskingEnabled")
798
798
  def is_masking_enabled(self) -> pulumi.Output[bool]:
799
799
  """
800
- (Updatable) Indicates if data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
800
+ (Updatable) Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.
801
801
  """
802
802
  return pulumi.get(self, "is_masking_enabled")
803
803