pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.26.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 (218) hide show
  1. pulumi_oci/__init__.py +102 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +74 -35
  5. pulumi_oci/containerengine/cluster.py +4 -0
  6. pulumi_oci/containerengine/container_instance.py +2 -4
  7. pulumi_oci/containerengine/outputs.py +180 -21
  8. pulumi_oci/containerinstances/outputs.py +0 -14
  9. pulumi_oci/core/_inputs.py +21 -33
  10. pulumi_oci/core/outputs.py +13 -21
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +1246 -57
  13. pulumi_oci/database/application_vip.py +59 -10
  14. pulumi_oci/database/autonomous_container_database.py +92 -0
  15. pulumi_oci/database/autonomous_database.py +90 -22
  16. pulumi_oci/database/backup.py +153 -5
  17. pulumi_oci/database/backup_destination.py +84 -0
  18. pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
  19. pulumi_oci/database/cloud_vm_cluster.py +163 -30
  20. pulumi_oci/database/data_guard_association.py +49 -0
  21. pulumi_oci/database/db_node.py +64 -8
  22. pulumi_oci/database/db_system.py +111 -8
  23. pulumi_oci/database/exadata_infrastructure.py +157 -3
  24. pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
  25. pulumi_oci/database/exadb_vm_cluster.py +84 -7
  26. pulumi_oci/database/exascale_db_storage_vault.py +147 -0
  27. pulumi_oci/database/external_container_database.py +4 -4
  28. pulumi_oci/database/external_non_container_database.py +4 -4
  29. pulumi_oci/database/external_pluggable_database.py +4 -4
  30. pulumi_oci/database/get_application_vip.py +16 -2
  31. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  32. pulumi_oci/database/get_autonomous_database.py +29 -1
  33. pulumi_oci/database/get_autonomous_databases.py +0 -26
  34. pulumi_oci/database/get_backup_destination.py +43 -1
  35. pulumi_oci/database/get_backups.py +136 -10
  36. pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
  37. pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
  38. pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
  39. pulumi_oci/database/get_data_guard_association.py +12 -1
  40. pulumi_oci/database/get_database_software_images.py +20 -1
  41. pulumi_oci/database/get_db_node.py +31 -4
  42. pulumi_oci/database/get_db_server.py +15 -1
  43. pulumi_oci/database/get_exadata_infrastructure.py +57 -1
  44. pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
  45. pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
  48. pulumi_oci/database/get_external_container_database.py +1 -1
  49. pulumi_oci/database/get_external_non_container_database.py +1 -1
  50. pulumi_oci/database/get_external_pluggable_database.py +1 -1
  51. pulumi_oci/database/get_flex_components.py +28 -6
  52. pulumi_oci/database/get_maintenance_runs.py +20 -1
  53. pulumi_oci/database/get_vm_cluster.py +60 -4
  54. pulumi_oci/database/get_vm_clusters.py +25 -3
  55. pulumi_oci/database/outputs.py +2260 -87
  56. pulumi_oci/database/pluggable_database.py +13 -13
  57. pulumi_oci/database/vm_cluster.py +172 -18
  58. pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
  59. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
  60. pulumi_oci/datasafe/__init__.py +7 -0
  61. pulumi_oci/datasafe/_inputs.py +301 -0
  62. pulumi_oci/datasafe/discovery_mod.py +49 -0
  63. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  64. pulumi_oci/datasafe/get_masking_report.py +46 -4
  65. pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
  66. pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
  67. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
  68. pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
  69. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  70. pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
  71. pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
  72. pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
  73. pulumi_oci/datasafe/outputs.py +676 -3
  74. pulumi_oci/datasafe/sensitive_data_model.py +49 -0
  75. pulumi_oci/datasafe/sensitive_type_group.py +563 -0
  76. pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
  77. pulumi_oci/datascience/__init__.py +4 -0
  78. pulumi_oci/datascience/_inputs.py +1160 -41
  79. pulumi_oci/datascience/get_model.py +29 -1
  80. pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
  81. pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
  82. pulumi_oci/datascience/get_model_version_set.py +15 -1
  83. pulumi_oci/datascience/get_model_version_sets.py +25 -3
  84. pulumi_oci/datascience/get_models.py +25 -3
  85. pulumi_oci/datascience/get_pipeline.py +15 -1
  86. pulumi_oci/datascience/model.py +64 -0
  87. pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
  88. pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
  89. pulumi_oci/datascience/model_version_set.py +28 -0
  90. pulumi_oci/datascience/outputs.py +4343 -2164
  91. pulumi_oci/datascience/pipeline.py +48 -141
  92. pulumi_oci/datascience/pipeline_run.py +32 -0
  93. pulumi_oci/dblm/__init__.py +17 -0
  94. pulumi_oci/dblm/_inputs.py +275 -0
  95. pulumi_oci/dblm/get_vulnerability.py +242 -0
  96. pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
  97. pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
  98. pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
  99. pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
  100. pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
  101. pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
  102. pulumi_oci/dblm/outputs.py +1294 -0
  103. pulumi_oci/dblm/vulnerability_scan.py +521 -0
  104. pulumi_oci/email/dkim.py +120 -20
  105. pulumi_oci/email/get_dkim.py +40 -1
  106. pulumi_oci/email/outputs.py +29 -0
  107. pulumi_oci/filestorage/__init__.py +3 -0
  108. pulumi_oci/filestorage/_inputs.py +49 -0
  109. pulumi_oci/filestorage/file_system.py +133 -0
  110. pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
  111. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  112. pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
  113. pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
  114. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  115. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  116. pulumi_oci/filestorage/get_replication.py +15 -1
  117. pulumi_oci/filestorage/get_replication_target.py +15 -1
  118. pulumi_oci/filestorage/get_snapshot.py +15 -1
  119. pulumi_oci/filestorage/mount_target.py +28 -0
  120. pulumi_oci/filestorage/outbound_connector.py +28 -0
  121. pulumi_oci/filestorage/outputs.py +263 -0
  122. pulumi_oci/filestorage/replication.py +28 -0
  123. pulumi_oci/filestorage/snapshot.py +28 -0
  124. pulumi_oci/goldengate/connection.py +561 -162
  125. pulumi_oci/goldengate/database_registration.py +14 -14
  126. pulumi_oci/goldengate/get_connection.py +117 -6
  127. pulumi_oci/goldengate/outputs.py +96 -10
  128. pulumi_oci/jms/__init__.py +4 -0
  129. pulumi_oci/jms/_inputs.py +196 -0
  130. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  131. pulumi_oci/jms/get_fleet_errors.py +264 -0
  132. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  133. pulumi_oci/jms/get_jms_plugins.py +23 -1
  134. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  135. pulumi_oci/jms/get_plugin_errors.py +264 -0
  136. pulumi_oci/jms/outputs.py +566 -6
  137. pulumi_oci/mysql/_inputs.py +1239 -10
  138. pulumi_oci/mysql/channel.py +28 -0
  139. pulumi_oci/mysql/get_channel.py +15 -1
  140. pulumi_oci/mysql/get_mysql_backup.py +15 -1
  141. pulumi_oci/mysql/get_mysql_configuration.py +15 -1
  142. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  143. pulumi_oci/mysql/mysql_backup.py +28 -0
  144. pulumi_oci/mysql/mysql_configuration.py +106 -0
  145. pulumi_oci/mysql/mysql_db_system.py +36 -0
  146. pulumi_oci/mysql/outputs.py +2008 -35
  147. pulumi_oci/opensearch/__init__.py +3 -0
  148. pulumi_oci/opensearch/_inputs.py +101 -0
  149. pulumi_oci/opensearch/cluster.py +76 -29
  150. pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
  151. pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
  152. pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
  153. pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
  154. pulumi_oci/opensearch/outputs.py +425 -0
  155. pulumi_oci/provider.py +20 -0
  156. pulumi_oci/psql/_inputs.py +258 -0
  157. pulumi_oci/psql/backup.py +129 -28
  158. pulumi_oci/psql/db_system.py +10 -0
  159. pulumi_oci/psql/get_backup.py +47 -2
  160. pulumi_oci/psql/get_backups.py +3 -0
  161. pulumi_oci/psql/get_configurations.py +23 -1
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_db_systems.py +1 -1
  164. pulumi_oci/psql/outputs.py +541 -5
  165. pulumi_oci/pulumi-plugin.json +1 -1
  166. pulumi_oci/redis/redis_cluster.py +7 -7
  167. pulumi_oci/stackmonitoring/__init__.py +8 -0
  168. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  169. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  170. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  171. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  172. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  173. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  174. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  175. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  176. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  177. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  178. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  179. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  180. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  181. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  182. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  183. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  184. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  185. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  186. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  187. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  188. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  189. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  190. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  191. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  192. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  193. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  194. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  195. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  196. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  197. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  198. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  199. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  200. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  201. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  202. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  203. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  204. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  205. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  206. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  207. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  208. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  209. pulumi_oci/vault/__init__.py +1 -1
  210. pulumi_oci/vault/_inputs.py +92 -0
  211. pulumi_oci/vault/get_secret.py +40 -1
  212. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  213. pulumi_oci/vault/outputs.py +210 -0
  214. pulumi_oci/vault/secret.py +122 -0
  215. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/METADATA +1 -1
  216. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/RECORD +218 -150
  217. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/WHEEL +1 -1
  218. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/top_level.txt +0 -0
@@ -35,6 +35,8 @@ __all__ = [
35
35
  'GetExportsExportExportOptionResult',
36
36
  'GetExportsExportLockResult',
37
37
  'GetExportsFilterResult',
38
+ 'GetFileSystemQuotaRulesFilterResult',
39
+ 'GetFileSystemQuotaRulesQuotaRuleResult',
38
40
  'GetFileSystemsFileSystemResult',
39
41
  'GetFileSystemsFileSystemLockResult',
40
42
  'GetFileSystemsFileSystemSourceDetailResult',
@@ -1584,9 +1586,161 @@ class GetExportsFilterResult(dict):
1584
1586
  return pulumi.get(self, "regex")
1585
1587
 
1586
1588
 
1589
+ @pulumi.output_type
1590
+ class GetFileSystemQuotaRulesFilterResult(dict):
1591
+ def __init__(__self__, *,
1592
+ name: str,
1593
+ values: Sequence[str],
1594
+ regex: Optional[bool] = None):
1595
+ pulumi.set(__self__, "name", name)
1596
+ pulumi.set(__self__, "values", values)
1597
+ if regex is not None:
1598
+ pulumi.set(__self__, "regex", regex)
1599
+
1600
+ @property
1601
+ @pulumi.getter
1602
+ def name(self) -> str:
1603
+ return pulumi.get(self, "name")
1604
+
1605
+ @property
1606
+ @pulumi.getter
1607
+ def values(self) -> Sequence[str]:
1608
+ return pulumi.get(self, "values")
1609
+
1610
+ @property
1611
+ @pulumi.getter
1612
+ def regex(self) -> Optional[bool]:
1613
+ return pulumi.get(self, "regex")
1614
+
1615
+
1616
+ @pulumi.output_type
1617
+ class GetFileSystemQuotaRulesQuotaRuleResult(dict):
1618
+ def __init__(__self__, *,
1619
+ are_violators_only: bool,
1620
+ display_name: str,
1621
+ file_system_id: str,
1622
+ id: str,
1623
+ is_hard_quota: bool,
1624
+ principal_id: int,
1625
+ principal_type: str,
1626
+ quota_limit_in_gigabytes: int,
1627
+ quota_rule_id: str,
1628
+ time_created: str,
1629
+ time_updated: str):
1630
+ """
1631
+ :param bool are_violators_only: An option to only display the users or groups that violate their quota rules. If `areViolatorsOnly` is false, the list result will display all the quota and usage report. If `areViolatorsOnly` is true, the list result will only display the quota and usage report for the users or groups that violate their quota rules.
1632
+ :param str display_name: A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `UserXYZ's quota`
1633
+ :param str file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the file system.
1634
+ :param str id: The identifier of the quota rule. It is the base64 encoded string of the tuple <principalId, principalType, isHardQuota>.
1635
+ :param bool is_hard_quota: The flag is an identifier to tell whether the quota rule will be enforced. If `isHardQuota` is false, the quota rule will be enforced so the usage cannot exceed the hard quota limit. If `isHardQuota` is true, usage can exceed the soft quota limit. An alarm or notification will be sent to the customer, if the specific usage exceeds.
1636
+ :param int principal_id: An identifier for the owner of this usage and quota rule. Unix-like operating systems use this integer value to identify a user or group to manage access control.
1637
+ :param str principal_type: The type of the owner of this quota rule and usage.
1638
+ :param int quota_limit_in_gigabytes: The value of the quota rule. The unit is Gigabyte.
1639
+ :param str time_created: The date and time the quota rule was started, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
1640
+ :param str time_updated: The date and time the quota rule was last updated, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
1641
+ """
1642
+ pulumi.set(__self__, "are_violators_only", are_violators_only)
1643
+ pulumi.set(__self__, "display_name", display_name)
1644
+ pulumi.set(__self__, "file_system_id", file_system_id)
1645
+ pulumi.set(__self__, "id", id)
1646
+ pulumi.set(__self__, "is_hard_quota", is_hard_quota)
1647
+ pulumi.set(__self__, "principal_id", principal_id)
1648
+ pulumi.set(__self__, "principal_type", principal_type)
1649
+ pulumi.set(__self__, "quota_limit_in_gigabytes", quota_limit_in_gigabytes)
1650
+ pulumi.set(__self__, "quota_rule_id", quota_rule_id)
1651
+ pulumi.set(__self__, "time_created", time_created)
1652
+ pulumi.set(__self__, "time_updated", time_updated)
1653
+
1654
+ @property
1655
+ @pulumi.getter(name="areViolatorsOnly")
1656
+ def are_violators_only(self) -> bool:
1657
+ """
1658
+ An option to only display the users or groups that violate their quota rules. If `areViolatorsOnly` is false, the list result will display all the quota and usage report. If `areViolatorsOnly` is true, the list result will only display the quota and usage report for the users or groups that violate their quota rules.
1659
+ """
1660
+ return pulumi.get(self, "are_violators_only")
1661
+
1662
+ @property
1663
+ @pulumi.getter(name="displayName")
1664
+ def display_name(self) -> str:
1665
+ """
1666
+ A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `UserXYZ's quota`
1667
+ """
1668
+ return pulumi.get(self, "display_name")
1669
+
1670
+ @property
1671
+ @pulumi.getter(name="fileSystemId")
1672
+ def file_system_id(self) -> str:
1673
+ """
1674
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the file system.
1675
+ """
1676
+ return pulumi.get(self, "file_system_id")
1677
+
1678
+ @property
1679
+ @pulumi.getter
1680
+ def id(self) -> str:
1681
+ """
1682
+ The identifier of the quota rule. It is the base64 encoded string of the tuple <principalId, principalType, isHardQuota>.
1683
+ """
1684
+ return pulumi.get(self, "id")
1685
+
1686
+ @property
1687
+ @pulumi.getter(name="isHardQuota")
1688
+ def is_hard_quota(self) -> bool:
1689
+ """
1690
+ The flag is an identifier to tell whether the quota rule will be enforced. If `isHardQuota` is false, the quota rule will be enforced so the usage cannot exceed the hard quota limit. If `isHardQuota` is true, usage can exceed the soft quota limit. An alarm or notification will be sent to the customer, if the specific usage exceeds.
1691
+ """
1692
+ return pulumi.get(self, "is_hard_quota")
1693
+
1694
+ @property
1695
+ @pulumi.getter(name="principalId")
1696
+ def principal_id(self) -> int:
1697
+ """
1698
+ An identifier for the owner of this usage and quota rule. Unix-like operating systems use this integer value to identify a user or group to manage access control.
1699
+ """
1700
+ return pulumi.get(self, "principal_id")
1701
+
1702
+ @property
1703
+ @pulumi.getter(name="principalType")
1704
+ def principal_type(self) -> str:
1705
+ """
1706
+ The type of the owner of this quota rule and usage.
1707
+ """
1708
+ return pulumi.get(self, "principal_type")
1709
+
1710
+ @property
1711
+ @pulumi.getter(name="quotaLimitInGigabytes")
1712
+ def quota_limit_in_gigabytes(self) -> int:
1713
+ """
1714
+ The value of the quota rule. The unit is Gigabyte.
1715
+ """
1716
+ return pulumi.get(self, "quota_limit_in_gigabytes")
1717
+
1718
+ @property
1719
+ @pulumi.getter(name="quotaRuleId")
1720
+ def quota_rule_id(self) -> str:
1721
+ return pulumi.get(self, "quota_rule_id")
1722
+
1723
+ @property
1724
+ @pulumi.getter(name="timeCreated")
1725
+ def time_created(self) -> str:
1726
+ """
1727
+ The date and time the quota rule was started, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
1728
+ """
1729
+ return pulumi.get(self, "time_created")
1730
+
1731
+ @property
1732
+ @pulumi.getter(name="timeUpdated")
1733
+ def time_updated(self) -> str:
1734
+ """
1735
+ The date and time the quota rule was last updated, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
1736
+ """
1737
+ return pulumi.get(self, "time_updated")
1738
+
1739
+
1587
1740
  @pulumi.output_type
1588
1741
  class GetFileSystemsFileSystemResult(dict):
1589
1742
  def __init__(__self__, *,
1743
+ are_quota_rules_enabled: bool,
1590
1744
  availability_domain: str,
1591
1745
  clone_attach_status: str,
1592
1746
  clone_count: int,
@@ -1605,12 +1759,16 @@ class GetFileSystemsFileSystemResult(dict):
1605
1759
  lifecycle_details: str,
1606
1760
  locks: Sequence['outputs.GetFileSystemsFileSystemLockResult'],
1607
1761
  metered_bytes: str,
1762
+ quota_enforcement_state: str,
1763
+ replication_source_count: int,
1608
1764
  replication_target_id: str,
1609
1765
  source_details: Sequence['outputs.GetFileSystemsFileSystemSourceDetailResult'],
1610
1766
  source_snapshot_id: str,
1611
1767
  state: str,
1768
+ system_tags: Mapping[str, str],
1612
1769
  time_created: str):
1613
1770
  """
1771
+ :param bool are_quota_rules_enabled: Specifies the enforcement of quota rules on the file system.
1614
1772
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
1615
1773
  :param str clone_attach_status: Specifies whether the file system is attached to its parent file system.
1616
1774
  :param int clone_count: Specifies the total number of children of a file system.
@@ -1627,12 +1785,16 @@ class GetFileSystemsFileSystemResult(dict):
1627
1785
  :param str lifecycle_details: Additional information about the current 'lifecycleState'.
1628
1786
  :param Sequence['GetFileSystemsFileSystemLockArgs'] locks: Locks associated with this resource.
1629
1787
  :param str metered_bytes: The number of bytes consumed by the file system, including any snapshots. This number reflects the metered size of the file system and is updated asynchronously with respect to updates to the file system. For more information, see [File System Usage and Metering](https://docs.cloud.oracle.com/iaas/Content/File/Concepts/FSutilization.htm).
1788
+ :param str quota_enforcement_state: Displays the state of enforcement of quota rules on the file system.
1789
+ :param int replication_source_count: Specifies the total number of replications for which this file system is a source.
1630
1790
  :param str replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the replication target associated with the file system. Empty if the file system is not being used as target in a replication.
1631
1791
  :param Sequence['GetFileSystemsFileSystemSourceDetailArgs'] source_details: Source information for the file system.
1632
1792
  :param str source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
1633
1793
  :param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
1794
+ :param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
1634
1795
  :param str time_created: The date and time the file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
1635
1796
  """
1797
+ pulumi.set(__self__, "are_quota_rules_enabled", are_quota_rules_enabled)
1636
1798
  pulumi.set(__self__, "availability_domain", availability_domain)
1637
1799
  pulumi.set(__self__, "clone_attach_status", clone_attach_status)
1638
1800
  pulumi.set(__self__, "clone_count", clone_count)
@@ -1651,12 +1813,23 @@ class GetFileSystemsFileSystemResult(dict):
1651
1813
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1652
1814
  pulumi.set(__self__, "locks", locks)
1653
1815
  pulumi.set(__self__, "metered_bytes", metered_bytes)
1816
+ pulumi.set(__self__, "quota_enforcement_state", quota_enforcement_state)
1817
+ pulumi.set(__self__, "replication_source_count", replication_source_count)
1654
1818
  pulumi.set(__self__, "replication_target_id", replication_target_id)
1655
1819
  pulumi.set(__self__, "source_details", source_details)
1656
1820
  pulumi.set(__self__, "source_snapshot_id", source_snapshot_id)
1657
1821
  pulumi.set(__self__, "state", state)
1822
+ pulumi.set(__self__, "system_tags", system_tags)
1658
1823
  pulumi.set(__self__, "time_created", time_created)
1659
1824
 
1825
+ @property
1826
+ @pulumi.getter(name="areQuotaRulesEnabled")
1827
+ def are_quota_rules_enabled(self) -> bool:
1828
+ """
1829
+ Specifies the enforcement of quota rules on the file system.
1830
+ """
1831
+ return pulumi.get(self, "are_quota_rules_enabled")
1832
+
1660
1833
  @property
1661
1834
  @pulumi.getter(name="availabilityDomain")
1662
1835
  def availability_domain(self) -> str:
@@ -1795,6 +1968,22 @@ class GetFileSystemsFileSystemResult(dict):
1795
1968
  """
1796
1969
  return pulumi.get(self, "metered_bytes")
1797
1970
 
1971
+ @property
1972
+ @pulumi.getter(name="quotaEnforcementState")
1973
+ def quota_enforcement_state(self) -> str:
1974
+ """
1975
+ Displays the state of enforcement of quota rules on the file system.
1976
+ """
1977
+ return pulumi.get(self, "quota_enforcement_state")
1978
+
1979
+ @property
1980
+ @pulumi.getter(name="replicationSourceCount")
1981
+ def replication_source_count(self) -> int:
1982
+ """
1983
+ Specifies the total number of replications for which this file system is a source.
1984
+ """
1985
+ return pulumi.get(self, "replication_source_count")
1986
+
1798
1987
  @property
1799
1988
  @pulumi.getter(name="replicationTargetId")
1800
1989
  def replication_target_id(self) -> str:
@@ -1827,6 +2016,14 @@ class GetFileSystemsFileSystemResult(dict):
1827
2016
  """
1828
2017
  return pulumi.get(self, "state")
1829
2018
 
2019
+ @property
2020
+ @pulumi.getter(name="systemTags")
2021
+ def system_tags(self) -> Mapping[str, str]:
2022
+ """
2023
+ System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
2024
+ """
2025
+ return pulumi.get(self, "system_tags")
2026
+
1830
2027
  @property
1831
2028
  @pulumi.getter(name="timeCreated")
1832
2029
  def time_created(self) -> str:
@@ -1957,6 +2154,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
1957
2154
  policy_prefix: str,
1958
2155
  schedules: Sequence['outputs.GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult'],
1959
2156
  state: str,
2157
+ system_tags: Mapping[str, str],
1960
2158
  time_created: str):
1961
2159
  """
1962
2160
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
@@ -1969,6 +2167,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
1969
2167
  :param str policy_prefix: The prefix to apply to all snapshots created by this policy. Example: `acme`
1970
2168
  :param Sequence['GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleArgs'] schedules: The list of associated snapshot schedules. A maximum of 10 schedules can be associated with a policy.
1971
2169
  :param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
2170
+ :param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
1972
2171
  :param str time_created: The date and time the file system snapshot policy was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
1973
2172
  """
1974
2173
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -1982,6 +2181,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
1982
2181
  pulumi.set(__self__, "policy_prefix", policy_prefix)
1983
2182
  pulumi.set(__self__, "schedules", schedules)
1984
2183
  pulumi.set(__self__, "state", state)
2184
+ pulumi.set(__self__, "system_tags", system_tags)
1985
2185
  pulumi.set(__self__, "time_created", time_created)
1986
2186
 
1987
2187
  @property
@@ -2069,6 +2269,14 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
2069
2269
  """
2070
2270
  return pulumi.get(self, "state")
2071
2271
 
2272
+ @property
2273
+ @pulumi.getter(name="systemTags")
2274
+ def system_tags(self) -> Mapping[str, str]:
2275
+ """
2276
+ System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
2277
+ """
2278
+ return pulumi.get(self, "system_tags")
2279
+
2072
2280
  @property
2073
2281
  @pulumi.getter(name="timeCreated")
2074
2282
  def time_created(self) -> str:
@@ -2471,6 +2679,7 @@ class GetMountTargetsMountTargetResult(dict):
2471
2679
  reserved_storage_capacity: str,
2472
2680
  state: str,
2473
2681
  subnet_id: str,
2682
+ system_tags: Mapping[str, str],
2474
2683
  time_billing_cycle_end: str,
2475
2684
  time_created: str):
2476
2685
  """
@@ -2493,6 +2702,7 @@ class GetMountTargetsMountTargetResult(dict):
2493
2702
  :param str reserved_storage_capacity: * Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value of mount target. Value is listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
2494
2703
  :param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
2495
2704
  :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the mount target is in.
2705
+ :param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
2496
2706
  :param str time_billing_cycle_end: The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
2497
2707
  :param str time_created: The date and time the mount target was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
2498
2708
  """
@@ -2518,6 +2728,7 @@ class GetMountTargetsMountTargetResult(dict):
2518
2728
  pulumi.set(__self__, "reserved_storage_capacity", reserved_storage_capacity)
2519
2729
  pulumi.set(__self__, "state", state)
2520
2730
  pulumi.set(__self__, "subnet_id", subnet_id)
2731
+ pulumi.set(__self__, "system_tags", system_tags)
2521
2732
  pulumi.set(__self__, "time_billing_cycle_end", time_billing_cycle_end)
2522
2733
  pulumi.set(__self__, "time_created", time_created)
2523
2734
 
@@ -2688,6 +2899,14 @@ class GetMountTargetsMountTargetResult(dict):
2688
2899
  """
2689
2900
  return pulumi.get(self, "subnet_id")
2690
2901
 
2902
+ @property
2903
+ @pulumi.getter(name="systemTags")
2904
+ def system_tags(self) -> Mapping[str, str]:
2905
+ """
2906
+ System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
2907
+ """
2908
+ return pulumi.get(self, "system_tags")
2909
+
2691
2910
  @property
2692
2911
  @pulumi.getter(name="timeBillingCycleEnd")
2693
2912
  def time_billing_cycle_end(self) -> str:
@@ -3037,6 +3256,7 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
3037
3256
  password_secret_id: str,
3038
3257
  password_secret_version: int,
3039
3258
  state: str,
3259
+ system_tags: Mapping[str, str],
3040
3260
  time_created: str):
3041
3261
  """
3042
3262
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
@@ -3052,6 +3272,7 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
3052
3272
  :param str password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the password for the LDAP bind account in the Vault.
3053
3273
  :param int password_secret_version: Version of the password secret in the Vault to use.
3054
3274
  :param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
3275
+ :param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
3055
3276
  :param str time_created: The date and time the outbound connector was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
3056
3277
  """
3057
3278
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -3068,6 +3289,7 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
3068
3289
  pulumi.set(__self__, "password_secret_id", password_secret_id)
3069
3290
  pulumi.set(__self__, "password_secret_version", password_secret_version)
3070
3291
  pulumi.set(__self__, "state", state)
3292
+ pulumi.set(__self__, "system_tags", system_tags)
3071
3293
  pulumi.set(__self__, "time_created", time_created)
3072
3294
 
3073
3295
  @property
@@ -3179,6 +3401,14 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
3179
3401
  """
3180
3402
  return pulumi.get(self, "state")
3181
3403
 
3404
+ @property
3405
+ @pulumi.getter(name="systemTags")
3406
+ def system_tags(self) -> Mapping[str, str]:
3407
+ """
3408
+ System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
3409
+ """
3410
+ return pulumi.get(self, "system_tags")
3411
+
3182
3412
  @property
3183
3413
  @pulumi.getter(name="timeCreated")
3184
3414
  def time_created(self) -> str:
@@ -3363,6 +3593,7 @@ class GetReplicationTargetsReplicationTargetResult(dict):
3363
3593
  replication_id: str,
3364
3594
  source_id: str,
3365
3595
  state: str,
3596
+ system_tags: Mapping[str, str],
3366
3597
  target_id: str,
3367
3598
  time_created: str):
3368
3599
  """
@@ -3380,6 +3611,7 @@ class GetReplicationTargetsReplicationTargetResult(dict):
3380
3611
  :param str replication_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of replication.
3381
3612
  :param str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of source filesystem.
3382
3613
  :param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
3614
+ :param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
3383
3615
  :param str target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of target filesystem.
3384
3616
  :param str time_created: The date and time the replication target was created in target region. in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-01-04T20:01:29.100Z`
3385
3617
  """
@@ -3397,6 +3629,7 @@ class GetReplicationTargetsReplicationTargetResult(dict):
3397
3629
  pulumi.set(__self__, "replication_id", replication_id)
3398
3630
  pulumi.set(__self__, "source_id", source_id)
3399
3631
  pulumi.set(__self__, "state", state)
3632
+ pulumi.set(__self__, "system_tags", system_tags)
3400
3633
  pulumi.set(__self__, "target_id", target_id)
3401
3634
  pulumi.set(__self__, "time_created", time_created)
3402
3635
 
@@ -3512,6 +3745,14 @@ class GetReplicationTargetsReplicationTargetResult(dict):
3512
3745
  """
3513
3746
  return pulumi.get(self, "state")
3514
3747
 
3748
+ @property
3749
+ @pulumi.getter(name="systemTags")
3750
+ def system_tags(self) -> Mapping[str, str]:
3751
+ """
3752
+ System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
3753
+ """
3754
+ return pulumi.get(self, "system_tags")
3755
+
3515
3756
  @property
3516
3757
  @pulumi.getter(name="targetId")
3517
3758
  def target_id(self) -> str:
@@ -3576,6 +3817,7 @@ class GetReplicationsReplicationResult(dict):
3576
3817
  replication_target_id: str,
3577
3818
  source_id: str,
3578
3819
  state: str,
3820
+ system_tags: Mapping[str, str],
3579
3821
  target_id: str,
3580
3822
  time_created: str):
3581
3823
  """
@@ -3595,6 +3837,7 @@ class GetReplicationsReplicationResult(dict):
3595
3837
  :param str replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [`ReplicationTarget`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ReplicationTarget).
3596
3838
  :param str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source file system.
3597
3839
  :param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
3840
+ :param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
3598
3841
  :param str target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target file system.
3599
3842
  :param str time_created: The date and time the replication was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-01-04T20:01:29.100Z`
3600
3843
  """
@@ -3615,6 +3858,7 @@ class GetReplicationsReplicationResult(dict):
3615
3858
  pulumi.set(__self__, "replication_target_id", replication_target_id)
3616
3859
  pulumi.set(__self__, "source_id", source_id)
3617
3860
  pulumi.set(__self__, "state", state)
3861
+ pulumi.set(__self__, "system_tags", system_tags)
3618
3862
  pulumi.set(__self__, "target_id", target_id)
3619
3863
  pulumi.set(__self__, "time_created", time_created)
3620
3864
 
@@ -3751,6 +3995,14 @@ class GetReplicationsReplicationResult(dict):
3751
3995
  """
3752
3996
  return pulumi.get(self, "state")
3753
3997
 
3998
+ @property
3999
+ @pulumi.getter(name="systemTags")
4000
+ def system_tags(self) -> Mapping[str, str]:
4001
+ """
4002
+ System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
4003
+ """
4004
+ return pulumi.get(self, "system_tags")
4005
+
3754
4006
  @property
3755
4007
  @pulumi.getter(name="targetId")
3756
4008
  def target_id(self) -> str:
@@ -3921,6 +4173,7 @@ class GetSnapshotsSnapshotResult(dict):
3921
4173
  snapshot_time: str,
3922
4174
  snapshot_type: str,
3923
4175
  state: str,
4176
+ system_tags: Mapping[str, str],
3924
4177
  time_created: str):
3925
4178
  """
3926
4179
  :param Mapping[str, str] 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"}`
@@ -3940,6 +4193,7 @@ class GetSnapshotsSnapshotResult(dict):
3940
4193
  * If the snapshot is replicated from a file system.
3941
4194
  :param str snapshot_type: Specifies the generation type of the snapshot.
3942
4195
  :param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
4196
+ :param Mapping[str, str] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
3943
4197
  :param str time_created: The date and time the snapshot was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
3944
4198
  """
3945
4199
  pulumi.set(__self__, "defined_tags", defined_tags)
@@ -3957,6 +4211,7 @@ class GetSnapshotsSnapshotResult(dict):
3957
4211
  pulumi.set(__self__, "snapshot_time", snapshot_time)
3958
4212
  pulumi.set(__self__, "snapshot_type", snapshot_type)
3959
4213
  pulumi.set(__self__, "state", state)
4214
+ pulumi.set(__self__, "system_tags", system_tags)
3960
4215
  pulumi.set(__self__, "time_created", time_created)
3961
4216
 
3962
4217
  @property
@@ -4079,6 +4334,14 @@ class GetSnapshotsSnapshotResult(dict):
4079
4334
  """
4080
4335
  return pulumi.get(self, "state")
4081
4336
 
4337
+ @property
4338
+ @pulumi.getter(name="systemTags")
4339
+ def system_tags(self) -> Mapping[str, str]:
4340
+ """
4341
+ System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
4342
+ """
4343
+ return pulumi.get(self, "system_tags")
4344
+
4082
4345
  @property
4083
4346
  @pulumi.getter(name="timeCreated")
4084
4347
  def time_created(self) -> str:
@@ -190,6 +190,7 @@ class _ReplicationState:
190
190
  replication_target_id: Optional[pulumi.Input[str]] = None,
191
191
  source_id: Optional[pulumi.Input[str]] = None,
192
192
  state: Optional[pulumi.Input[str]] = None,
193
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
193
194
  target_id: Optional[pulumi.Input[str]] = None,
194
195
  time_created: Optional[pulumi.Input[str]] = None):
195
196
  """
@@ -209,6 +210,7 @@ class _ReplicationState:
209
210
  :param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [`ReplicationTarget`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ReplicationTarget).
210
211
  :param pulumi.Input[str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source file system.
211
212
  :param pulumi.Input[str] state: The current state of this replication. This resource can be in a `FAILED` state if replication target is deleted instead of the replication resource.
213
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
212
214
  :param pulumi.Input[str] target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target file system.
213
215
 
214
216
 
@@ -248,6 +250,8 @@ class _ReplicationState:
248
250
  pulumi.set(__self__, "source_id", source_id)
249
251
  if state is not None:
250
252
  pulumi.set(__self__, "state", state)
253
+ if system_tags is not None:
254
+ pulumi.set(__self__, "system_tags", system_tags)
251
255
  if target_id is not None:
252
256
  pulumi.set(__self__, "target_id", target_id)
253
257
  if time_created is not None:
@@ -442,6 +446,18 @@ class _ReplicationState:
442
446
  def state(self, value: Optional[pulumi.Input[str]]):
443
447
  pulumi.set(self, "state", value)
444
448
 
449
+ @property
450
+ @pulumi.getter(name="systemTags")
451
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
452
+ """
453
+ System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
454
+ """
455
+ return pulumi.get(self, "system_tags")
456
+
457
+ @system_tags.setter
458
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
459
+ pulumi.set(self, "system_tags", value)
460
+
445
461
  @property
446
462
  @pulumi.getter(name="targetId")
447
463
  def target_id(self) -> Optional[pulumi.Input[str]]:
@@ -693,6 +709,7 @@ class Replication(pulumi.CustomResource):
693
709
  __props__.__dict__["recovery_point_time"] = None
694
710
  __props__.__dict__["replication_target_id"] = None
695
711
  __props__.__dict__["state"] = None
712
+ __props__.__dict__["system_tags"] = None
696
713
  __props__.__dict__["time_created"] = None
697
714
  super(Replication, __self__).__init__(
698
715
  'oci:FileStorage/replication:Replication',
@@ -720,6 +737,7 @@ class Replication(pulumi.CustomResource):
720
737
  replication_target_id: Optional[pulumi.Input[str]] = None,
721
738
  source_id: Optional[pulumi.Input[str]] = None,
722
739
  state: Optional[pulumi.Input[str]] = None,
740
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
723
741
  target_id: Optional[pulumi.Input[str]] = None,
724
742
  time_created: Optional[pulumi.Input[str]] = None) -> 'Replication':
725
743
  """
@@ -744,6 +762,7 @@ class Replication(pulumi.CustomResource):
744
762
  :param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [`ReplicationTarget`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ReplicationTarget).
745
763
  :param pulumi.Input[str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source file system.
746
764
  :param pulumi.Input[str] state: The current state of this replication. This resource can be in a `FAILED` state if replication target is deleted instead of the replication resource.
765
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
747
766
  :param pulumi.Input[str] target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target file system.
748
767
 
749
768
 
@@ -771,6 +790,7 @@ class Replication(pulumi.CustomResource):
771
790
  __props__.__dict__["replication_target_id"] = replication_target_id
772
791
  __props__.__dict__["source_id"] = source_id
773
792
  __props__.__dict__["state"] = state
793
+ __props__.__dict__["system_tags"] = system_tags
774
794
  __props__.__dict__["target_id"] = target_id
775
795
  __props__.__dict__["time_created"] = time_created
776
796
  return Replication(resource_name, opts=opts, __props__=__props__)
@@ -900,6 +920,14 @@ class Replication(pulumi.CustomResource):
900
920
  """
901
921
  return pulumi.get(self, "state")
902
922
 
923
+ @property
924
+ @pulumi.getter(name="systemTags")
925
+ def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
926
+ """
927
+ System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
928
+ """
929
+ return pulumi.get(self, "system_tags")
930
+
903
931
  @property
904
932
  @pulumi.getter(name="targetId")
905
933
  def target_id(self) -> pulumi.Output[str]: