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
@@ -1566,6 +1566,7 @@ class LibraryMasingFormatFormatEntry(dict):
1566
1566
  grouping_columns: Optional[Sequence[str]] = None,
1567
1567
  length: Optional[int] = None,
1568
1568
  library_masking_format_id: Optional[str] = None,
1569
+ pattern: Optional[str] = None,
1569
1570
  post_processing_function: Optional[str] = None,
1570
1571
  random_lists: Optional[Sequence[str]] = None,
1571
1572
  regular_expression: Optional[str] = None,
@@ -1590,6 +1591,7 @@ class LibraryMasingFormatFormatEntry(dict):
1590
1591
  :param Sequence[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.
1591
1592
  :param int length: (Updatable) The number of characters that should be there in the substring. It should be an integer and greater than zero.
1592
1593
  :param str library_masking_format_id: (Updatable) The OCID of the library masking format.
1594
+ :param str pattern: (Updatable) The pattern that should be used to mask data.
1593
1595
  :param 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.
1594
1596
  :param Sequence[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.
1595
1597
  :param 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.
@@ -1628,6 +1630,8 @@ class LibraryMasingFormatFormatEntry(dict):
1628
1630
  pulumi.set(__self__, "length", length)
1629
1631
  if library_masking_format_id is not None:
1630
1632
  pulumi.set(__self__, "library_masking_format_id", library_masking_format_id)
1633
+ if pattern is not None:
1634
+ pulumi.set(__self__, "pattern", pattern)
1631
1635
  if post_processing_function is not None:
1632
1636
  pulumi.set(__self__, "post_processing_function", post_processing_function)
1633
1637
  if random_lists is not None:
@@ -1741,6 +1745,14 @@ class LibraryMasingFormatFormatEntry(dict):
1741
1745
  """
1742
1746
  return pulumi.get(self, "library_masking_format_id")
1743
1747
 
1748
+ @property
1749
+ @pulumi.getter
1750
+ def pattern(self) -> Optional[str]:
1751
+ """
1752
+ (Updatable) The pattern that should be used to mask data.
1753
+ """
1754
+ return pulumi.get(self, "pattern")
1755
+
1744
1756
  @property
1745
1757
  @pulumi.getter(name="postProcessingFunction")
1746
1758
  def post_processing_function(self) -> Optional[str]:
@@ -1970,6 +1982,7 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntry(dict):
1970
1982
  grouping_columns: Optional[Sequence[str]] = None,
1971
1983
  length: Optional[int] = None,
1972
1984
  library_masking_format_id: Optional[str] = None,
1985
+ pattern: Optional[str] = None,
1973
1986
  post_processing_function: Optional[str] = None,
1974
1987
  random_lists: Optional[Sequence[str]] = None,
1975
1988
  regular_expression: Optional[str] = None,
@@ -1994,6 +2007,7 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntry(dict):
1994
2007
  :param Sequence[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.
1995
2008
  :param int length: (Updatable) The number of characters that should be there in the substring. It should be an integer and greater than zero.
1996
2009
  :param str library_masking_format_id: (Updatable) The OCID of the library masking format.
2010
+ :param str pattern: (Updatable) The pattern that should be used to mask data.
1997
2011
  :param 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.
1998
2012
  :param Sequence[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.
1999
2013
  :param 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.
@@ -2032,6 +2046,8 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntry(dict):
2032
2046
  pulumi.set(__self__, "length", length)
2033
2047
  if library_masking_format_id is not None:
2034
2048
  pulumi.set(__self__, "library_masking_format_id", library_masking_format_id)
2049
+ if pattern is not None:
2050
+ pulumi.set(__self__, "pattern", pattern)
2035
2051
  if post_processing_function is not None:
2036
2052
  pulumi.set(__self__, "post_processing_function", post_processing_function)
2037
2053
  if random_lists is not None:
@@ -2145,6 +2161,14 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntry(dict):
2145
2161
  """
2146
2162
  return pulumi.get(self, "library_masking_format_id")
2147
2163
 
2164
+ @property
2165
+ @pulumi.getter
2166
+ def pattern(self) -> Optional[str]:
2167
+ """
2168
+ (Updatable) The pattern that should be used to mask data.
2169
+ """
2170
+ return pulumi.get(self, "pattern")
2171
+
2148
2172
  @property
2149
2173
  @pulumi.getter(name="postProcessingFunction")
2150
2174
  def post_processing_function(self) -> Optional[str]:
@@ -5556,7 +5580,7 @@ class GetAuditEventsAuditEventCollectionItemResult(dict):
5556
5580
  time_collected: str):
5557
5581
  """
5558
5582
  :param str action_taken: The action taken for this audit event.
5559
- :param str audit_event_time: The time of the audit event occurrence in the target database.
5583
+ :param str audit_event_time: The time that the audit event occurs in the target database.
5560
5584
  :param str audit_location: The location of the audit. Currently the value is audit table.
5561
5585
  :param str audit_policies: Comma-seperated list of audit policies that caused the current audit event.
5562
5586
  :param str audit_trail_id: The OCID of the audit trail that generated this audit event. To be noted, this field has been deprecated.
@@ -5564,7 +5588,7 @@ class GetAuditEventsAuditEventCollectionItemResult(dict):
5564
5588
  :param str client_hostname: The name of the host machine from which the session was spawned.
5565
5589
  :param str client_id: The client identifier in each Oracle session.
5566
5590
  :param str client_ip: The IP address of the host machine from which the session was spawned.
5567
- :param str client_program: The application from which the audit event was generated. Examples SQL Plus or SQL Developer.
5591
+ :param str client_program: The application from which the audit event was generated. For example SQL Plus or SQL Developer.
5568
5592
  :param str command_param: List of bind variables associated with the command text.
5569
5593
  :param str command_text: The SQL associated with the audit event.
5570
5594
  :param str compartment_id: A filter to return only resources that match the specified compartment OCID.
@@ -5575,16 +5599,16 @@ class GetAuditEventsAuditEventCollectionItemResult(dict):
5575
5599
  :param str db_user_name: The name of the database user whose actions were audited.
5576
5600
  :param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
5577
5601
  :param str error_code: Oracle Error code generated by the action. Zero indicates the action was successful.
5578
- :param str error_message: The detailed message on why the Error occurred.
5579
- :param str event_name: The name of the detail action executed by the user on the target database. i.e ALTER SEQUENCE, CREATE TRIGGER, CREATE INDEX.
5602
+ :param str error_message: The detailed message on why the error occurred.
5603
+ :param str event_name: The name of the detail action executed by the user on the target database. For example ALTER SEQUENCE, CREATE TRIGGER or CREATE INDEX.
5580
5604
  :param str extended_event_attributes: List of all other attributes of the audit event seperated by a colon other than the one returned in audit record.
5581
5605
  :param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
5582
5606
  :param str id: The OCID of the audit event.
5583
5607
  :param bool is_alerted: Indicates whether an alert was raised for this audit event.
5584
5608
  :param str object: The name of the object affected by the action.
5585
5609
  :param str object_owner: The schema name of the object affected by the action.
5586
- :param str object_type: The type of the object in the source database affected by the action. i.e PL/SQL, SYNONYM, PACKAGE BODY.
5587
- :param str operation: The name of the action executed by the user on the target database. i.e ALTER, CREATE, DROP.
5610
+ :param str object_type: The type of the object in the source database affected by the action. For example PL/SQL, SYNONYM or PACKAGE BODY.
5611
+ :param str operation: The name of the action executed by the user on the target database. For example ALTER, CREATE or DROP.
5588
5612
  :param str operation_status: Indicates whether the operation was a success or a failure.
5589
5613
  :param str os_terminal: The operating system terminal of the user session.
5590
5614
  :param str os_user_name: The name of the operating system user for the database session.
@@ -5640,7 +5664,7 @@ class GetAuditEventsAuditEventCollectionItemResult(dict):
5640
5664
  @pulumi.getter(name="auditEventTime")
5641
5665
  def audit_event_time(self) -> str:
5642
5666
  """
5643
- The time of the audit event occurrence in the target database.
5667
+ The time that the audit event occurs in the target database.
5644
5668
  """
5645
5669
  return pulumi.get(self, "audit_event_time")
5646
5670
 
@@ -5704,7 +5728,7 @@ class GetAuditEventsAuditEventCollectionItemResult(dict):
5704
5728
  @pulumi.getter(name="clientProgram")
5705
5729
  def client_program(self) -> str:
5706
5730
  """
5707
- The application from which the audit event was generated. Examples SQL Plus or SQL Developer.
5731
+ The application from which the audit event was generated. For example SQL Plus or SQL Developer.
5708
5732
  """
5709
5733
  return pulumi.get(self, "client_program")
5710
5734
 
@@ -5771,7 +5795,7 @@ class GetAuditEventsAuditEventCollectionItemResult(dict):
5771
5795
  @pulumi.getter(name="errorMessage")
5772
5796
  def error_message(self) -> str:
5773
5797
  """
5774
- The detailed message on why the Error occurred.
5798
+ The detailed message on why the error occurred.
5775
5799
  """
5776
5800
  return pulumi.get(self, "error_message")
5777
5801
 
@@ -5779,7 +5803,7 @@ class GetAuditEventsAuditEventCollectionItemResult(dict):
5779
5803
  @pulumi.getter(name="eventName")
5780
5804
  def event_name(self) -> str:
5781
5805
  """
5782
- The name of the detail action executed by the user on the target database. i.e ALTER SEQUENCE, CREATE TRIGGER, CREATE INDEX.
5806
+ The name of the detail action executed by the user on the target database. For example ALTER SEQUENCE, CREATE TRIGGER or CREATE INDEX.
5783
5807
  """
5784
5808
  return pulumi.get(self, "event_name")
5785
5809
 
@@ -5835,7 +5859,7 @@ class GetAuditEventsAuditEventCollectionItemResult(dict):
5835
5859
  @pulumi.getter(name="objectType")
5836
5860
  def object_type(self) -> str:
5837
5861
  """
5838
- The type of the object in the source database affected by the action. i.e PL/SQL, SYNONYM, PACKAGE BODY.
5862
+ The type of the object in the source database affected by the action. For example PL/SQL, SYNONYM or PACKAGE BODY.
5839
5863
  """
5840
5864
  return pulumi.get(self, "object_type")
5841
5865
 
@@ -5843,7 +5867,7 @@ class GetAuditEventsAuditEventCollectionItemResult(dict):
5843
5867
  @pulumi.getter
5844
5868
  def operation(self) -> str:
5845
5869
  """
5846
- The name of the action executed by the user on the target database. i.e ALTER, CREATE, DROP.
5870
+ The name of the action executed by the user on the target database. For example ALTER, CREATE or DROP.
5847
5871
  """
5848
5872
  return pulumi.get(self, "operation")
5849
5873
 
@@ -8581,12 +8605,15 @@ class GetDiscoveryAnalyticsDiscoveryAnalyticsCollectionItemResult(dict):
8581
8605
  class GetDiscoveryAnalyticsDiscoveryAnalyticsCollectionItemDimensionResult(dict):
8582
8606
  def __init__(__self__, *,
8583
8607
  sensitive_data_model_id: str,
8608
+ sensitive_type_id: str,
8584
8609
  target_id: str):
8585
8610
  """
8586
8611
  :param str sensitive_data_model_id: A filter to return only the resources that match the specified sensitive data model OCID.
8612
+ :param str sensitive_type_id: A filter to return only items related to a specific sensitive type OCID.
8587
8613
  :param str target_id: A filter to return only items related to a specific target OCID.
8588
8614
  """
8589
8615
  pulumi.set(__self__, "sensitive_data_model_id", sensitive_data_model_id)
8616
+ pulumi.set(__self__, "sensitive_type_id", sensitive_type_id)
8590
8617
  pulumi.set(__self__, "target_id", target_id)
8591
8618
 
8592
8619
  @property
@@ -8597,6 +8624,14 @@ class GetDiscoveryAnalyticsDiscoveryAnalyticsCollectionItemDimensionResult(dict)
8597
8624
  """
8598
8625
  return pulumi.get(self, "sensitive_data_model_id")
8599
8626
 
8627
+ @property
8628
+ @pulumi.getter(name="sensitiveTypeId")
8629
+ def sensitive_type_id(self) -> str:
8630
+ """
8631
+ A filter to return only items related to a specific sensitive type OCID.
8632
+ """
8633
+ return pulumi.get(self, "sensitive_type_id")
8634
+
8600
8635
  @property
8601
8636
  @pulumi.getter(name="targetId")
8602
8637
  def target_id(self) -> str:
@@ -8979,6 +9014,7 @@ class GetLibraryMaskingFormatFormatEntryResult(dict):
8979
9014
  grouping_columns: Sequence[str],
8980
9015
  length: int,
8981
9016
  library_masking_format_id: str,
9017
+ pattern: str,
8982
9018
  post_processing_function: str,
8983
9019
  random_lists: Sequence[str],
8984
9020
  regular_expression: str,
@@ -9003,6 +9039,7 @@ class GetLibraryMaskingFormatFormatEntryResult(dict):
9003
9039
  :param Sequence[str] grouping_columns: 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.
9004
9040
  :param int length: The number of characters that should be there in the substring. It should be an integer and greater than zero.
9005
9041
  :param str library_masking_format_id: The OCID of the library masking format.
9042
+ :param str pattern: The pattern that should be used to mask data.
9006
9043
  :param str post_processing_function: 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.
9007
9044
  :param Sequence[str] random_lists: 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.
9008
9045
  :param str regular_expression: 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.
@@ -9027,6 +9064,7 @@ class GetLibraryMaskingFormatFormatEntryResult(dict):
9027
9064
  pulumi.set(__self__, "grouping_columns", grouping_columns)
9028
9065
  pulumi.set(__self__, "length", length)
9029
9066
  pulumi.set(__self__, "library_masking_format_id", library_masking_format_id)
9067
+ pulumi.set(__self__, "pattern", pattern)
9030
9068
  pulumi.set(__self__, "post_processing_function", post_processing_function)
9031
9069
  pulumi.set(__self__, "random_lists", random_lists)
9032
9070
  pulumi.set(__self__, "regular_expression", regular_expression)
@@ -9121,6 +9159,14 @@ class GetLibraryMaskingFormatFormatEntryResult(dict):
9121
9159
  """
9122
9160
  return pulumi.get(self, "library_masking_format_id")
9123
9161
 
9162
+ @property
9163
+ @pulumi.getter
9164
+ def pattern(self) -> str:
9165
+ """
9166
+ The pattern that should be used to mask data.
9167
+ """
9168
+ return pulumi.get(self, "pattern")
9169
+
9124
9170
  @property
9125
9171
  @pulumi.getter(name="postProcessingFunction")
9126
9172
  def post_processing_function(self) -> str:
@@ -9417,6 +9463,7 @@ class GetLibraryMaskingFormatsLibraryMaskingFormatCollectionItemFormatEntryResul
9417
9463
  grouping_columns: Sequence[str],
9418
9464
  length: int,
9419
9465
  library_masking_format_id: str,
9466
+ pattern: str,
9420
9467
  post_processing_function: str,
9421
9468
  random_lists: Sequence[str],
9422
9469
  regular_expression: str,
@@ -9441,6 +9488,7 @@ class GetLibraryMaskingFormatsLibraryMaskingFormatCollectionItemFormatEntryResul
9441
9488
  :param Sequence[str] grouping_columns: 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.
9442
9489
  :param int length: The number of characters that should be there in the substring. It should be an integer and greater than zero.
9443
9490
  :param str library_masking_format_id: A filter to return only the resources that match the specified library masking format OCID.
9491
+ :param str pattern: The pattern that should be used to mask data.
9444
9492
  :param str post_processing_function: 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.
9445
9493
  :param Sequence[str] random_lists: 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.
9446
9494
  :param str regular_expression: 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.
@@ -9465,6 +9513,7 @@ class GetLibraryMaskingFormatsLibraryMaskingFormatCollectionItemFormatEntryResul
9465
9513
  pulumi.set(__self__, "grouping_columns", grouping_columns)
9466
9514
  pulumi.set(__self__, "length", length)
9467
9515
  pulumi.set(__self__, "library_masking_format_id", library_masking_format_id)
9516
+ pulumi.set(__self__, "pattern", pattern)
9468
9517
  pulumi.set(__self__, "post_processing_function", post_processing_function)
9469
9518
  pulumi.set(__self__, "random_lists", random_lists)
9470
9519
  pulumi.set(__self__, "regular_expression", regular_expression)
@@ -9559,6 +9608,14 @@ class GetLibraryMaskingFormatsLibraryMaskingFormatCollectionItemFormatEntryResul
9559
9608
  """
9560
9609
  return pulumi.get(self, "library_masking_format_id")
9561
9610
 
9611
+ @property
9612
+ @pulumi.getter
9613
+ def pattern(self) -> str:
9614
+ """
9615
+ The pattern that should be used to mask data.
9616
+ """
9617
+ return pulumi.get(self, "pattern")
9618
+
9562
9619
  @property
9563
9620
  @pulumi.getter(name="postProcessingFunction")
9564
9621
  def post_processing_function(self) -> str:
@@ -10016,6 +10073,7 @@ class GetMaskingPoliciesMaskingColumnMaskingFormatFormatEntryResult(dict):
10016
10073
  grouping_columns: Sequence[str],
10017
10074
  length: int,
10018
10075
  library_masking_format_id: str,
10076
+ pattern: str,
10019
10077
  post_processing_function: str,
10020
10078
  random_lists: Sequence[str],
10021
10079
  regular_expression: str,
@@ -10040,6 +10098,7 @@ class GetMaskingPoliciesMaskingColumnMaskingFormatFormatEntryResult(dict):
10040
10098
  :param Sequence[str] grouping_columns: 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.
10041
10099
  :param int length: The number of characters that should be there in the substring. It should be an integer and greater than zero.
10042
10100
  :param str library_masking_format_id: The OCID of the library masking format.
10101
+ :param str pattern: The pattern that should be used to mask data.
10043
10102
  :param str post_processing_function: 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.
10044
10103
  :param Sequence[str] random_lists: 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.
10045
10104
  :param str regular_expression: 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.
@@ -10064,6 +10123,7 @@ class GetMaskingPoliciesMaskingColumnMaskingFormatFormatEntryResult(dict):
10064
10123
  pulumi.set(__self__, "grouping_columns", grouping_columns)
10065
10124
  pulumi.set(__self__, "length", length)
10066
10125
  pulumi.set(__self__, "library_masking_format_id", library_masking_format_id)
10126
+ pulumi.set(__self__, "pattern", pattern)
10067
10127
  pulumi.set(__self__, "post_processing_function", post_processing_function)
10068
10128
  pulumi.set(__self__, "random_lists", random_lists)
10069
10129
  pulumi.set(__self__, "regular_expression", regular_expression)
@@ -10158,6 +10218,14 @@ class GetMaskingPoliciesMaskingColumnMaskingFormatFormatEntryResult(dict):
10158
10218
  """
10159
10219
  return pulumi.get(self, "library_masking_format_id")
10160
10220
 
10221
+ @property
10222
+ @pulumi.getter
10223
+ def pattern(self) -> str:
10224
+ """
10225
+ The pattern that should be used to mask data.
10226
+ """
10227
+ return pulumi.get(self, "pattern")
10228
+
10161
10229
  @property
10162
10230
  @pulumi.getter(name="postProcessingFunction")
10163
10231
  def post_processing_function(self) -> str:
@@ -10538,6 +10606,7 @@ class GetMaskingPoliciesMaskingColumnsMaskingColumnCollectionItemMaskingFormatFo
10538
10606
  grouping_columns: Sequence[str],
10539
10607
  length: int,
10540
10608
  library_masking_format_id: str,
10609
+ pattern: str,
10541
10610
  post_processing_function: str,
10542
10611
  random_lists: Sequence[str],
10543
10612
  regular_expression: str,
@@ -10562,6 +10631,7 @@ class GetMaskingPoliciesMaskingColumnsMaskingColumnCollectionItemMaskingFormatFo
10562
10631
  :param Sequence[str] grouping_columns: 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.
10563
10632
  :param int length: The number of characters that should be there in the substring. It should be an integer and greater than zero.
10564
10633
  :param str library_masking_format_id: The OCID of the library masking format.
10634
+ :param str pattern: The pattern that should be used to mask data.
10565
10635
  :param str post_processing_function: 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.
10566
10636
  :param Sequence[str] random_lists: 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.
10567
10637
  :param str regular_expression: 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.
@@ -10586,6 +10656,7 @@ class GetMaskingPoliciesMaskingColumnsMaskingColumnCollectionItemMaskingFormatFo
10586
10656
  pulumi.set(__self__, "grouping_columns", grouping_columns)
10587
10657
  pulumi.set(__self__, "length", length)
10588
10658
  pulumi.set(__self__, "library_masking_format_id", library_masking_format_id)
10659
+ pulumi.set(__self__, "pattern", pattern)
10589
10660
  pulumi.set(__self__, "post_processing_function", post_processing_function)
10590
10661
  pulumi.set(__self__, "random_lists", random_lists)
10591
10662
  pulumi.set(__self__, "regular_expression", regular_expression)
@@ -10680,6 +10751,14 @@ class GetMaskingPoliciesMaskingColumnsMaskingColumnCollectionItemMaskingFormatFo
10680
10751
  """
10681
10752
  return pulumi.get(self, "library_masking_format_id")
10682
10753
 
10754
+ @property
10755
+ @pulumi.getter
10756
+ def pattern(self) -> str:
10757
+ """
10758
+ The pattern that should be used to mask data.
10759
+ """
10760
+ return pulumi.get(self, "pattern")
10761
+
10683
10762
  @property
10684
10763
  @pulumi.getter(name="postProcessingFunction")
10685
10764
  def post_processing_function(self) -> str:
@@ -12256,16 +12335,16 @@ class GetReportDefinitionsReportDefinitionCollectionItemResult(dict):
12256
12335
  :param str parent_id: The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
12257
12336
  :param str record_time_span: The time span for the records in the report to be scheduled. <period-value><period> Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
12258
12337
  :param str schedule: The schedule to generate the report periodically in the specified format: <version-string>;<version-specific-schedule>
12259
- :param str scheduled_report_compartment_id: The OCID of the compartment in which the scheduled resource should be created.
12260
- :param str scheduled_report_mime_type: Specifies the format of the report ( either XLS or PDF )
12338
+ :param str scheduled_report_compartment_id: The OCID of the compartment in which the scheduled resource will be created.
12339
+ :param str scheduled_report_mime_type: Specifies the format of the report ( either .xls or .pdf )
12261
12340
  :param str scheduled_report_name: The name of the report to be scheduled.
12262
12341
  :param int scheduled_report_row_limit: Specifies the limit on the number of rows in the report.
12263
12342
  :param str scim_filter: Additional scim filters used to get the specific summary.
12264
12343
  :param str state: An optional filter to return only resources that match the specified lifecycle state.
12265
12344
  :param Sequence['GetReportDefinitionsReportDefinitionCollectionItemSummaryArgs'] summaries: An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).
12266
12345
  :param 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"}`
12267
- :param str time_created: Specifies the data and time the report definition was created.
12268
- :param str time_updated: The date and time the report definition was update.
12346
+ :param str time_created: Specifies the date and time the report definition was created.
12347
+ :param str time_updated: The date and time the report definition was updated.
12269
12348
  """
12270
12349
  pulumi.set(__self__, "category", category)
12271
12350
  pulumi.set(__self__, "column_filters", column_filters)
@@ -12435,7 +12514,7 @@ class GetReportDefinitionsReportDefinitionCollectionItemResult(dict):
12435
12514
  @pulumi.getter(name="scheduledReportCompartmentId")
12436
12515
  def scheduled_report_compartment_id(self) -> str:
12437
12516
  """
12438
- The OCID of the compartment in which the scheduled resource should be created.
12517
+ The OCID of the compartment in which the scheduled resource will be created.
12439
12518
  """
12440
12519
  return pulumi.get(self, "scheduled_report_compartment_id")
12441
12520
 
@@ -12443,7 +12522,7 @@ class GetReportDefinitionsReportDefinitionCollectionItemResult(dict):
12443
12522
  @pulumi.getter(name="scheduledReportMimeType")
12444
12523
  def scheduled_report_mime_type(self) -> str:
12445
12524
  """
12446
- Specifies the format of the report ( either XLS or PDF )
12525
+ Specifies the format of the report ( either .xls or .pdf )
12447
12526
  """
12448
12527
  return pulumi.get(self, "scheduled_report_mime_type")
12449
12528
 
@@ -12499,7 +12578,7 @@ class GetReportDefinitionsReportDefinitionCollectionItemResult(dict):
12499
12578
  @pulumi.getter(name="timeCreated")
12500
12579
  def time_created(self) -> str:
12501
12580
  """
12502
- Specifies the data and time the report definition was created.
12581
+ Specifies the date and time the report definition was created.
12503
12582
  """
12504
12583
  return pulumi.get(self, "time_created")
12505
12584
 
@@ -12507,7 +12586,7 @@ class GetReportDefinitionsReportDefinitionCollectionItemResult(dict):
12507
12586
  @pulumi.getter(name="timeUpdated")
12508
12587
  def time_updated(self) -> str:
12509
12588
  """
12510
- The date and time the report definition was update.
12589
+ The date and time the report definition was updated.
12511
12590
  """
12512
12591
  return pulumi.get(self, "time_updated")
12513
12592
 
@@ -12810,7 +12889,7 @@ class GetReportsReportCollectionItemResult(dict):
12810
12889
  :param str display_name: The name of the report definition to query.
12811
12890
  :param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
12812
12891
  :param str id: The OCID of the report.
12813
- :param str mime_type: Specifies the format of report to be excel or pdf
12892
+ :param str mime_type: Specifies the format of report to be .xls or .pdf
12814
12893
  :param str report_definition_id: The ID of the report definition to filter the list of reports
12815
12894
  :param str state: An optional filter to return only resources that match the specified lifecycle state.
12816
12895
  :param 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"}`
@@ -12882,7 +12961,7 @@ class GetReportsReportCollectionItemResult(dict):
12882
12961
  @pulumi.getter(name="mimeType")
12883
12962
  def mime_type(self) -> str:
12884
12963
  """
12885
- Specifies the format of report to be excel or pdf
12964
+ Specifies the format of report to be .xls or .pdf
12886
12965
  """
12887
12966
  return pulumi.get(self, "mime_type")
12888
12967
 
@@ -13154,7 +13233,7 @@ class GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollectionItemResu
13154
13233
  :param str difference_type: The type of the SDM masking policy difference. It defines the difference scope. NEW identifies new sensitive columns in the sensitive data model that are not in the masking policy. DELETED identifies columns that are present in the masking policy but have been deleted from the sensitive data model. MODIFIED identifies columns that are present in the sensitive data model as well as the masking policy but some of their attributes have been modified. ALL covers all the above three scenarios and reports new, deleted and modified columns.
13155
13234
  :param str display_name: A filter to return only resources that match the specified display name.
13156
13235
  :param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
13157
- :param str id: The OCID of the SDM masking policy difference.
13236
+ :param str id: The OCID of the Sensitive data model and masking policy difference resource.
13158
13237
  :param str masking_policy_id: A filter to return only the resources that match the specified masking policy OCID.
13159
13238
  :param str sensitive_data_model_id: A filter to return only the resources that match the specified sensitive data model OCID.
13160
13239
  :param str state: A filter to return only the resources that match the specified lifecycle states.
@@ -13219,7 +13298,7 @@ class GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollectionItemResu
13219
13298
  @pulumi.getter
13220
13299
  def id(self) -> str:
13221
13300
  """
13222
- The OCID of the SDM masking policy difference.
13301
+ The OCID of the Sensitive data model and masking policy difference resource.
13223
13302
  """
13224
13303
  return pulumi.get(self, "id")
13225
13304
 
@@ -18279,6 +18358,7 @@ class GetSensitiveTypesSensitiveTypeCollectionItemResult(dict):
18279
18358
  entity_type: str,
18280
18359
  freeform_tags: Mapping[str, Any],
18281
18360
  id: str,
18361
+ is_common: bool,
18282
18362
  name_pattern: str,
18283
18363
  parent_category_id: str,
18284
18364
  search_type: str,
@@ -18299,6 +18379,7 @@ class GetSensitiveTypesSensitiveTypeCollectionItemResult(dict):
18299
18379
  :param str entity_type: A filter to return the sensitive type resources based on the value of their entityType attribute.
18300
18380
  :param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
18301
18381
  :param str id: The OCID of the sensitive type.
18382
+ :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.
18302
18383
  :param str name_pattern: A regular expression to be used by data discovery for matching column names.
18303
18384
  :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.
18304
18385
  :param str search_type: The search type indicating how the column name, comment and data patterns should be used by data discovery. [Learn more](https://docs.oracle.com/en/cloud/paas/data-safe/udscs/sensitive-types.html#GUID-1D1AD98E-B93F-4FF2-80AE-CB7D8A14F6CC).
@@ -18319,6 +18400,7 @@ class GetSensitiveTypesSensitiveTypeCollectionItemResult(dict):
18319
18400
  pulumi.set(__self__, "entity_type", entity_type)
18320
18401
  pulumi.set(__self__, "freeform_tags", freeform_tags)
18321
18402
  pulumi.set(__self__, "id", id)
18403
+ pulumi.set(__self__, "is_common", is_common)
18322
18404
  pulumi.set(__self__, "name_pattern", name_pattern)
18323
18405
  pulumi.set(__self__, "parent_category_id", parent_category_id)
18324
18406
  pulumi.set(__self__, "search_type", search_type)
@@ -18409,6 +18491,14 @@ class GetSensitiveTypesSensitiveTypeCollectionItemResult(dict):
18409
18491
  """
18410
18492
  return pulumi.get(self, "id")
18411
18493
 
18494
+ @property
18495
+ @pulumi.getter(name="isCommon")
18496
+ def is_common(self) -> bool:
18497
+ """
18498
+ 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.
18499
+ """
18500
+ return pulumi.get(self, "is_common")
18501
+
18412
18502
  @property
18413
18503
  @pulumi.getter(name="namePattern")
18414
18504
  def name_pattern(self) -> str:
@@ -221,8 +221,8 @@ class _ReportDefinitionState:
221
221
  :param pulumi.Input[str] parent_id: The OCID of the parent report definition.
222
222
  :param pulumi.Input[str] record_time_span: The time span for the records in the report to be scheduled. <period-value><period> Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
223
223
  :param pulumi.Input[str] schedule: The schedule to generate the report periodically in the specified format: <version-string>;<version-specific-schedule>
224
- :param pulumi.Input[str] scheduled_report_compartment_id: The OCID of the compartment in which the scheduled resource should be created.
225
- :param pulumi.Input[str] scheduled_report_mime_type: Specifies the format of the report ( either XLS or PDF )
224
+ :param pulumi.Input[str] scheduled_report_compartment_id: The OCID of the compartment in which the scheduled resource will be created.
225
+ :param pulumi.Input[str] scheduled_report_mime_type: Specifies the format of the report ( either .xls or .pdf )
226
226
  :param pulumi.Input[str] scheduled_report_name: The name of the report to be scheduled.
227
227
  :param pulumi.Input[int] scheduled_report_row_limit: Specifies the limit on the number of rows in the report.
228
228
  :param pulumi.Input[str] scim_filter: (Updatable) Additional scim filters used to get the specific summary.
@@ -233,8 +233,8 @@ class _ReportDefinitionState:
233
233
  :param pulumi.Input[str] state: The current state of the report.
234
234
  :param pulumi.Input[Sequence[pulumi.Input['ReportDefinitionSummaryArgs']]] summaries: (Updatable) An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).
235
235
  :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"}`
236
- :param pulumi.Input[str] time_created: Specifies the data and time the report definition was created.
237
- :param pulumi.Input[str] time_updated: The date and time the report definition was update.
236
+ :param pulumi.Input[str] time_created: Specifies the date and time the report definition was created.
237
+ :param pulumi.Input[str] time_updated: The date and time the report definition was updated.
238
238
  """
239
239
  if category is not None:
240
240
  pulumi.set(__self__, "category", category)
@@ -485,7 +485,7 @@ class _ReportDefinitionState:
485
485
  @pulumi.getter(name="scheduledReportCompartmentId")
486
486
  def scheduled_report_compartment_id(self) -> Optional[pulumi.Input[str]]:
487
487
  """
488
- The OCID of the compartment in which the scheduled resource should be created.
488
+ The OCID of the compartment in which the scheduled resource will be created.
489
489
  """
490
490
  return pulumi.get(self, "scheduled_report_compartment_id")
491
491
 
@@ -497,7 +497,7 @@ class _ReportDefinitionState:
497
497
  @pulumi.getter(name="scheduledReportMimeType")
498
498
  def scheduled_report_mime_type(self) -> Optional[pulumi.Input[str]]:
499
499
  """
500
- Specifies the format of the report ( either XLS or PDF )
500
+ Specifies the format of the report ( either .xls or .pdf )
501
501
  """
502
502
  return pulumi.get(self, "scheduled_report_mime_type")
503
503
 
@@ -585,7 +585,7 @@ class _ReportDefinitionState:
585
585
  @pulumi.getter(name="timeCreated")
586
586
  def time_created(self) -> Optional[pulumi.Input[str]]:
587
587
  """
588
- Specifies the data and time the report definition was created.
588
+ Specifies the date and time the report definition was created.
589
589
  """
590
590
  return pulumi.get(self, "time_created")
591
591
 
@@ -597,7 +597,7 @@ class _ReportDefinitionState:
597
597
  @pulumi.getter(name="timeUpdated")
598
598
  def time_updated(self) -> Optional[pulumi.Input[str]]:
599
599
  """
600
- The date and time the report definition was update.
600
+ The date and time the report definition was updated.
601
601
  """
602
602
  return pulumi.get(self, "time_updated")
603
603
 
@@ -892,8 +892,8 @@ class ReportDefinition(pulumi.CustomResource):
892
892
  :param pulumi.Input[str] parent_id: The OCID of the parent report definition.
893
893
  :param pulumi.Input[str] record_time_span: The time span for the records in the report to be scheduled. <period-value><period> Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
894
894
  :param pulumi.Input[str] schedule: The schedule to generate the report periodically in the specified format: <version-string>;<version-specific-schedule>
895
- :param pulumi.Input[str] scheduled_report_compartment_id: The OCID of the compartment in which the scheduled resource should be created.
896
- :param pulumi.Input[str] scheduled_report_mime_type: Specifies the format of the report ( either XLS or PDF )
895
+ :param pulumi.Input[str] scheduled_report_compartment_id: The OCID of the compartment in which the scheduled resource will be created.
896
+ :param pulumi.Input[str] scheduled_report_mime_type: Specifies the format of the report ( either .xls or .pdf )
897
897
  :param pulumi.Input[str] scheduled_report_name: The name of the report to be scheduled.
898
898
  :param pulumi.Input[int] scheduled_report_row_limit: Specifies the limit on the number of rows in the report.
899
899
  :param pulumi.Input[str] scim_filter: (Updatable) Additional scim filters used to get the specific summary.
@@ -904,8 +904,8 @@ class ReportDefinition(pulumi.CustomResource):
904
904
  :param pulumi.Input[str] state: The current state of the report.
905
905
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ReportDefinitionSummaryArgs']]]] summaries: (Updatable) An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).
906
906
  :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"}`
907
- :param pulumi.Input[str] time_created: Specifies the data and time the report definition was created.
908
- :param pulumi.Input[str] time_updated: The date and time the report definition was update.
907
+ :param pulumi.Input[str] time_created: Specifies the date and time the report definition was created.
908
+ :param pulumi.Input[str] time_updated: The date and time the report definition was updated.
909
909
  """
910
910
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
911
911
 
@@ -1071,7 +1071,7 @@ class ReportDefinition(pulumi.CustomResource):
1071
1071
  @pulumi.getter(name="scheduledReportCompartmentId")
1072
1072
  def scheduled_report_compartment_id(self) -> pulumi.Output[str]:
1073
1073
  """
1074
- The OCID of the compartment in which the scheduled resource should be created.
1074
+ The OCID of the compartment in which the scheduled resource will be created.
1075
1075
  """
1076
1076
  return pulumi.get(self, "scheduled_report_compartment_id")
1077
1077
 
@@ -1079,7 +1079,7 @@ class ReportDefinition(pulumi.CustomResource):
1079
1079
  @pulumi.getter(name="scheduledReportMimeType")
1080
1080
  def scheduled_report_mime_type(self) -> pulumi.Output[str]:
1081
1081
  """
1082
- Specifies the format of the report ( either XLS or PDF )
1082
+ Specifies the format of the report ( either .xls or .pdf )
1083
1083
  """
1084
1084
  return pulumi.get(self, "scheduled_report_mime_type")
1085
1085
 
@@ -1139,7 +1139,7 @@ class ReportDefinition(pulumi.CustomResource):
1139
1139
  @pulumi.getter(name="timeCreated")
1140
1140
  def time_created(self) -> pulumi.Output[str]:
1141
1141
  """
1142
- Specifies the data and time the report definition was created.
1142
+ Specifies the date and time the report definition was created.
1143
1143
  """
1144
1144
  return pulumi.get(self, "time_created")
1145
1145
 
@@ -1147,7 +1147,7 @@ class ReportDefinition(pulumi.CustomResource):
1147
1147
  @pulumi.getter(name="timeUpdated")
1148
1148
  def time_updated(self) -> pulumi.Output[str]:
1149
1149
  """
1150
- The date and time the report definition was update.
1150
+ The date and time the report definition was updated.
1151
1151
  """
1152
1152
  return pulumi.get(self, "time_updated")
1153
1153