pulumi-oci 3.5.0a1756363728__py3-none-any.whl → 3.6.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 (194) hide show
  1. pulumi_oci/__init__.py +128 -0
  2. pulumi_oci/aivision/__init__.py +12 -0
  3. pulumi_oci/aivision/_inputs.py +787 -51
  4. pulumi_oci/aivision/get_model.py +4 -4
  5. pulumi_oci/aivision/get_models.py +11 -11
  6. pulumi_oci/aivision/get_project.py +15 -15
  7. pulumi_oci/aivision/get_projects.py +10 -10
  8. pulumi_oci/aivision/get_stream_group.py +268 -0
  9. pulumi_oci/aivision/get_stream_groups.py +177 -0
  10. pulumi_oci/aivision/get_stream_job.py +296 -0
  11. pulumi_oci/aivision/get_stream_jobs.py +199 -0
  12. pulumi_oci/aivision/get_stream_source.py +240 -0
  13. pulumi_oci/aivision/get_stream_sources.py +199 -0
  14. pulumi_oci/aivision/get_vision_private_endpoint.py +267 -0
  15. pulumi_oci/aivision/get_vision_private_endpoints.py +199 -0
  16. pulumi_oci/aivision/model.py +149 -157
  17. pulumi_oci/aivision/outputs.py +1920 -116
  18. pulumi_oci/aivision/project.py +61 -69
  19. pulumi_oci/aivision/stream_group.py +632 -0
  20. pulumi_oci/aivision/stream_job.py +744 -0
  21. pulumi_oci/aivision/stream_source.py +519 -0
  22. pulumi_oci/aivision/vision_private_endpoint.py +606 -0
  23. pulumi_oci/cloudguard/_inputs.py +1198 -72
  24. pulumi_oci/cloudguard/get_managed_list.py +15 -1
  25. pulumi_oci/cloudguard/managed_list.py +47 -0
  26. pulumi_oci/cloudguard/outputs.py +2104 -67
  27. pulumi_oci/config/__init__.pyi +12 -17
  28. pulumi_oci/config/vars.py +12 -17
  29. pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
  30. pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
  31. pulumi_oci/core/outputs.py +11 -0
  32. pulumi_oci/database/_inputs.py +298 -13
  33. pulumi_oci/database/data_guard_association.py +98 -0
  34. pulumi_oci/database/database.py +28 -0
  35. pulumi_oci/database/db_node.py +56 -0
  36. pulumi_oci/database/db_system.py +108 -14
  37. pulumi_oci/database/exadb_vm_cluster.py +49 -0
  38. pulumi_oci/database/exascale_db_storage_vault.py +126 -0
  39. pulumi_oci/database/get_data_guard_association.py +23 -1
  40. pulumi_oci/database/get_database.py +15 -1
  41. pulumi_oci/database/get_db_node.py +29 -1
  42. pulumi_oci/database/get_db_system_shapes.py +25 -6
  43. pulumi_oci/database/get_db_system_storage_performances.py +20 -3
  44. pulumi_oci/database/get_db_versions.py +20 -1
  45. pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
  48. pulumi_oci/database/get_gi_versions.py +25 -6
  49. pulumi_oci/database/outputs.py +696 -13
  50. pulumi_oci/datasafe/__init__.py +24 -0
  51. pulumi_oci/datasafe/_inputs.py +3669 -1537
  52. pulumi_oci/datasafe/attribute_set.py +693 -0
  53. pulumi_oci/datasafe/audit_profile.py +356 -95
  54. pulumi_oci/datasafe/audit_profile_management.py +389 -129
  55. pulumi_oci/datasafe/audit_trail.py +47 -0
  56. pulumi_oci/datasafe/audit_trail_management.py +49 -0
  57. pulumi_oci/datasafe/get_alerts.py +2 -2
  58. pulumi_oci/datasafe/get_attribute_set.py +295 -0
  59. pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
  60. pulumi_oci/datasafe/get_attribute_sets.py +340 -0
  61. pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
  62. pulumi_oci/datasafe/get_audit_events.py +2 -2
  63. pulumi_oci/datasafe/get_audit_policies.py +20 -1
  64. pulumi_oci/datasafe/get_audit_profile.py +78 -8
  65. pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
  66. pulumi_oci/datasafe/get_audit_profiles.py +50 -9
  67. pulumi_oci/datasafe/get_audit_trail.py +15 -1
  68. pulumi_oci/datasafe/get_audit_trails.py +20 -1
  69. pulumi_oci/datasafe/get_database_security_configs.py +20 -1
  70. pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
  71. pulumi_oci/datasafe/get_masking_analytics.py +42 -1
  72. pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
  73. pulumi_oci/datasafe/get_report.py +43 -1
  74. pulumi_oci/datasafe/get_reports.py +23 -1
  75. pulumi_oci/datasafe/get_security_assessment.py +116 -2
  76. pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
  77. pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
  78. pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
  79. pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
  80. pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
  81. pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
  82. pulumi_oci/datasafe/get_security_assessments.py +68 -2
  83. pulumi_oci/datasafe/get_security_policies.py +23 -1
  84. pulumi_oci/datasafe/get_security_policy.py +15 -1
  85. pulumi_oci/datasafe/get_security_policy_config.py +296 -0
  86. pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
  87. pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
  88. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
  89. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
  90. pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
  91. pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
  92. pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
  93. pulumi_oci/datasafe/get_sql_collections.py +20 -1
  94. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
  95. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
  96. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
  97. pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
  98. pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
  99. pulumi_oci/datasafe/get_target_database_group.py +296 -0
  100. pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
  101. pulumi_oci/datasafe/get_target_database_groups.py +313 -0
  102. pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
  103. pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
  104. pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
  105. pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
  106. pulumi_oci/datasafe/get_user_assessment.py +29 -1
  107. pulumi_oci/datasafe/get_user_assessments.py +45 -1
  108. pulumi_oci/datasafe/outputs.py +6964 -192
  109. pulumi_oci/datasafe/report.py +84 -0
  110. pulumi_oci/datasafe/report_definition.py +4 -0
  111. pulumi_oci/datasafe/security_assessment.py +425 -82
  112. pulumi_oci/datasafe/security_assessment_check.py +456 -0
  113. pulumi_oci/datasafe/security_assessment_finding.py +818 -0
  114. pulumi_oci/datasafe/security_policy.py +94 -77
  115. pulumi_oci/datasafe/security_policy_config.py +698 -0
  116. pulumi_oci/datasafe/security_policy_deployment.py +272 -67
  117. pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
  118. pulumi_oci/datasafe/security_policy_management.py +87 -30
  119. pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
  120. pulumi_oci/datasafe/target_database.py +4 -0
  121. pulumi_oci/datasafe/target_database_group.py +679 -0
  122. pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
  123. pulumi_oci/datasafe/unified_audit_policy.py +836 -0
  124. pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
  125. pulumi_oci/datasafe/user_assessment.py +105 -28
  126. pulumi_oci/disasterrecovery/_inputs.py +231 -3
  127. pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
  128. pulumi_oci/disasterrecovery/outputs.py +446 -12
  129. pulumi_oci/generativeai/_inputs.py +572 -63
  130. pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
  131. pulumi_oci/generativeai/agent_data_source.py +7 -81
  132. pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
  133. pulumi_oci/generativeai/agent_tool.py +172 -0
  134. pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
  135. pulumi_oci/generativeai/get_agent_data_source.py +1 -5
  136. pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
  137. pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
  138. pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
  139. pulumi_oci/generativeai/outputs.py +1128 -106
  140. pulumi_oci/goldengate/deployment.py +94 -0
  141. pulumi_oci/goldengate/get_deployment.py +29 -1
  142. pulumi_oci/goldengate/get_deployments.py +23 -1
  143. pulumi_oci/goldengate/outputs.py +35 -2
  144. pulumi_oci/mysql/_inputs.py +221 -0
  145. pulumi_oci/mysql/get_mysql_backup.py +40 -4
  146. pulumi_oci/mysql/get_mysql_backups.py +2 -2
  147. pulumi_oci/mysql/mysql_backup.py +119 -3
  148. pulumi_oci/mysql/outputs.py +343 -957
  149. pulumi_oci/oci/__init__.py +17 -0
  150. pulumi_oci/oci/_inputs.py +676 -15
  151. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +103 -54
  152. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +45 -45
  153. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +42 -44
  154. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +100 -72
  155. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +74 -74
  156. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +50 -50
  157. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_identity_connector.py +924 -0
  158. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_key_ring.py +762 -0
  159. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +37 -15
  160. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +26 -12
  161. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +12 -12
  162. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +15 -15
  163. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +12 -12
  164. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +15 -15
  165. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +30 -16
  166. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +11 -11
  167. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +41 -13
  168. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +12 -12
  169. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +17 -17
  170. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +14 -14
  171. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +15 -15
  172. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +14 -14
  173. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connector.py +366 -0
  174. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connectors.py +213 -0
  175. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key.py +295 -0
  176. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_ring.py +309 -0
  177. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_rings.py +229 -0
  178. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_keys.py +232 -0
  179. pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
  180. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
  181. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
  182. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
  183. pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
  184. pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
  185. pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
  186. pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
  187. pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
  188. pulumi_oci/oci/outputs.py +2051 -142
  189. pulumi_oci/provider.py +44 -63
  190. pulumi_oci/pulumi-plugin.json +1 -1
  191. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/METADATA +1 -1
  192. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/RECORD +194 -141
  193. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/WHEEL +0 -0
  194. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/top_level.txt +0 -0
@@ -5786,6 +5786,7 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
5786
5786
  region: _builtins.str,
5787
5787
  state: _builtins.str,
5788
5788
  time_created: _builtins.str,
5789
+ time_last_synced: _builtins.str,
5789
5790
  time_role_changed: _builtins.str,
5790
5791
  time_updated: _builtins.str):
5791
5792
  """
@@ -5798,6 +5799,7 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
5798
5799
  :param _builtins.str region: The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
5799
5800
  :param _builtins.str state: A filter to return only the resources that match the 'lifecycleState' given.
5800
5801
  :param _builtins.str time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5802
+ :param _builtins.str time_last_synced: The time of the last data synchronization from the primary to the standby peer. [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5801
5803
  :param _builtins.str time_role_changed: The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5802
5804
  :param _builtins.str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5803
5805
  """
@@ -5810,6 +5812,7 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
5810
5812
  pulumi.set(__self__, "region", region)
5811
5813
  pulumi.set(__self__, "state", state)
5812
5814
  pulumi.set(__self__, "time_created", time_created)
5815
+ pulumi.set(__self__, "time_last_synced", time_last_synced)
5813
5816
  pulumi.set(__self__, "time_role_changed", time_role_changed)
5814
5817
  pulumi.set(__self__, "time_updated", time_updated)
5815
5818
 
@@ -5885,6 +5888,14 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
5885
5888
  """
5886
5889
  return pulumi.get(self, "time_created")
5887
5890
 
5891
+ @_builtins.property
5892
+ @pulumi.getter(name="timeLastSynced")
5893
+ def time_last_synced(self) -> _builtins.str:
5894
+ """
5895
+ The time of the last data synchronization from the primary to the standby peer. [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
5896
+ """
5897
+ return pulumi.get(self, "time_last_synced")
5898
+
5888
5899
  @_builtins.property
5889
5900
  @pulumi.getter(name="timeRoleChanged")
5890
5901
  def time_role_changed(self) -> _builtins.str:
@@ -6697,6 +6708,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
6697
6708
  def __init__(__self__, *,
6698
6709
  availability_domain: _builtins.str,
6699
6710
  backup_schedules: Sequence['outputs.GetDeploymentsDeploymentCollectionItemBackupScheduleResult'],
6711
+ byol_cpu_core_count_limit: _builtins.int,
6700
6712
  category: _builtins.str,
6701
6713
  compartment_id: _builtins.str,
6702
6714
  cpu_core_count: _builtins.int,
@@ -6715,6 +6727,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
6715
6727
  id: _builtins.str,
6716
6728
  ingress_ips: Sequence['outputs.GetDeploymentsDeploymentCollectionItemIngressIpResult'],
6717
6729
  is_auto_scaling_enabled: _builtins.bool,
6730
+ is_byol_cpu_core_count_limit_enabled: _builtins.bool,
6718
6731
  is_healthy: _builtins.bool,
6719
6732
  is_latest_version: _builtins.bool,
6720
6733
  is_lock_override: _builtins.bool,
@@ -6751,6 +6764,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
6751
6764
  """
6752
6765
  :param _builtins.str availability_domain: The availability domain of a placement.
6753
6766
  :param Sequence['GetDeploymentsDeploymentCollectionItemBackupScheduleArgs'] backup_schedules: Defines the schedule of the deployment backup.
6767
+ :param _builtins.int byol_cpu_core_count_limit: The maximum number of CPUs allowed with a 'Bring Your Own License' (BYOL) license type. Any CPU usage above this limit is considered as License Included and billed.
6754
6768
  :param _builtins.str category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
6755
6769
  :param _builtins.str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
6756
6770
  :param _builtins.int cpu_core_count: The Minimum number of OCPUs to be made available for this Deployment.
@@ -6758,7 +6772,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
6758
6772
  :param _builtins.str deployment_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
6759
6773
  :param Sequence['GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataArgs'] deployment_diagnostic_datas: Information regarding the deployment diagnostic collection
6760
6774
  :param _builtins.str deployment_role: The type of the deployment role.
6761
- :param _builtins.str deployment_type: The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
6775
+ :param _builtins.str deployment_type: A filter that returns only the resources matching the specified 'deploymentType'.
6762
6776
  :param _builtins.str deployment_url: The URL of a resource.
6763
6777
  :param _builtins.str description: Metadata about this specific object.
6764
6778
  :param _builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
@@ -6769,6 +6783,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
6769
6783
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
6770
6784
  :param Sequence['GetDeploymentsDeploymentCollectionItemIngressIpArgs'] ingress_ips: List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
6771
6785
  :param _builtins.bool is_auto_scaling_enabled: Indicates if auto scaling is enabled for the Deployment's CPU core count.
6786
+ :param _builtins.bool is_byol_cpu_core_count_limit_enabled: Flag to allow to configure the 'Bring Your Own License' (BYOL) license type CPU limit. If enabled, the exact number of CPUs must be provided via byolCpuCoreCountLimit.
6772
6787
  :param _builtins.bool is_healthy: True if all of the aggregate resources are working correctly.
6773
6788
  :param _builtins.bool is_latest_version: Indicates if the resource is the the latest available version.
6774
6789
  :param _builtins.bool is_public: True if this object is publicly available.
@@ -6804,6 +6819,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
6804
6819
  """
6805
6820
  pulumi.set(__self__, "availability_domain", availability_domain)
6806
6821
  pulumi.set(__self__, "backup_schedules", backup_schedules)
6822
+ pulumi.set(__self__, "byol_cpu_core_count_limit", byol_cpu_core_count_limit)
6807
6823
  pulumi.set(__self__, "category", category)
6808
6824
  pulumi.set(__self__, "compartment_id", compartment_id)
6809
6825
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
@@ -6822,6 +6838,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
6822
6838
  pulumi.set(__self__, "id", id)
6823
6839
  pulumi.set(__self__, "ingress_ips", ingress_ips)
6824
6840
  pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
6841
+ pulumi.set(__self__, "is_byol_cpu_core_count_limit_enabled", is_byol_cpu_core_count_limit_enabled)
6825
6842
  pulumi.set(__self__, "is_healthy", is_healthy)
6826
6843
  pulumi.set(__self__, "is_latest_version", is_latest_version)
6827
6844
  pulumi.set(__self__, "is_lock_override", is_lock_override)
@@ -6872,6 +6889,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
6872
6889
  """
6873
6890
  return pulumi.get(self, "backup_schedules")
6874
6891
 
6892
+ @_builtins.property
6893
+ @pulumi.getter(name="byolCpuCoreCountLimit")
6894
+ def byol_cpu_core_count_limit(self) -> _builtins.int:
6895
+ """
6896
+ The maximum number of CPUs allowed with a 'Bring Your Own License' (BYOL) license type. Any CPU usage above this limit is considered as License Included and billed.
6897
+ """
6898
+ return pulumi.get(self, "byol_cpu_core_count_limit")
6899
+
6875
6900
  @_builtins.property
6876
6901
  @pulumi.getter
6877
6902
  def category(self) -> _builtins.str:
@@ -6932,7 +6957,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
6932
6957
  @pulumi.getter(name="deploymentType")
6933
6958
  def deployment_type(self) -> _builtins.str:
6934
6959
  """
6935
- The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
6960
+ A filter that returns only the resources matching the specified 'deploymentType'.
6936
6961
  """
6937
6962
  return pulumi.get(self, "deployment_type")
6938
6963
 
@@ -7016,6 +7041,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
7016
7041
  """
7017
7042
  return pulumi.get(self, "is_auto_scaling_enabled")
7018
7043
 
7044
+ @_builtins.property
7045
+ @pulumi.getter(name="isByolCpuCoreCountLimitEnabled")
7046
+ def is_byol_cpu_core_count_limit_enabled(self) -> _builtins.bool:
7047
+ """
7048
+ Flag to allow to configure the 'Bring Your Own License' (BYOL) license type CPU limit. If enabled, the exact number of CPUs must be provided via byolCpuCoreCountLimit.
7049
+ """
7050
+ return pulumi.get(self, "is_byol_cpu_core_count_limit_enabled")
7051
+
7019
7052
  @_builtins.property
7020
7053
  @pulumi.getter(name="isHealthy")
7021
7054
  def is_healthy(self) -> _builtins.bool:
@@ -27,6 +27,10 @@ __all__ = [
27
27
  'ChannelTargetFilterArgsDict',
28
28
  'HeatWaveClusterClusterNodeArgs',
29
29
  'HeatWaveClusterClusterNodeArgsDict',
30
+ 'MysqlBackupBackupValidationDetailArgs',
31
+ 'MysqlBackupBackupValidationDetailArgsDict',
32
+ 'MysqlBackupBackupValidationDetailPreparedBackupDetailArgs',
33
+ 'MysqlBackupBackupValidationDetailPreparedBackupDetailArgsDict',
30
34
  'MysqlBackupDbSystemSnapshotArgs',
31
35
  'MysqlBackupDbSystemSnapshotArgsDict',
32
36
  'MysqlBackupDbSystemSnapshotBackupPolicyArgs',
@@ -57,6 +61,8 @@ __all__ = [
57
61
  'MysqlBackupEncryptDataArgsDict',
58
62
  'MysqlBackupSourceDetailsArgs',
59
63
  'MysqlBackupSourceDetailsArgsDict',
64
+ 'MysqlBackupValidateBackupDetailArgs',
65
+ 'MysqlBackupValidateBackupDetailArgsDict',
60
66
  'MysqlConfigurationInitVariablesArgs',
61
67
  'MysqlConfigurationInitVariablesArgsDict',
62
68
  'MysqlConfigurationVariablesArgs',
@@ -756,6 +762,190 @@ class HeatWaveClusterClusterNodeArgs:
756
762
  pulumi.set(self, "time_updated", value)
757
763
 
758
764
 
765
+ if not MYPY:
766
+ class MysqlBackupBackupValidationDetailArgsDict(TypedDict):
767
+ backup_preparation_status: NotRequired[pulumi.Input[_builtins.str]]
768
+ """
769
+ Indicates whether the backup has been prepared successfully. PREPARED: The backup is prepared one. NOT_PREPARED: The backup is not prepared.
770
+ """
771
+ error_message: NotRequired[pulumi.Input[_builtins.str]]
772
+ """
773
+ Error message if the backup validation has failed.
774
+ """
775
+ estimated_restore_duration: NotRequired[pulumi.Input[_builtins.str]]
776
+ """
777
+ The estimated restore duration of the backup.
778
+ """
779
+ prepared_backup_details: NotRequired[pulumi.Input[Sequence[pulumi.Input['MysqlBackupBackupValidationDetailPreparedBackupDetailArgsDict']]]]
780
+ """
781
+ Prepared backup details.
782
+ """
783
+ time_last_validated: NotRequired[pulumi.Input[_builtins.str]]
784
+ """
785
+ The date and time of the most recent validation performed on the backup.
786
+ """
787
+ validation_status: NotRequired[pulumi.Input[_builtins.str]]
788
+ """
789
+ The status of backup validation: NOT_VALIDATED (Default): The backup has not been validated. VALIDATED: The backup has been validated successfully. NEEDS_ATTENTION: The backup validation failed due to a transient issue. Validation should be retried. FAILED: The backup cannot be restored.
790
+ """
791
+ elif False:
792
+ MysqlBackupBackupValidationDetailArgsDict: TypeAlias = Mapping[str, Any]
793
+
794
+ @pulumi.input_type
795
+ class MysqlBackupBackupValidationDetailArgs:
796
+ def __init__(__self__, *,
797
+ backup_preparation_status: Optional[pulumi.Input[_builtins.str]] = None,
798
+ error_message: Optional[pulumi.Input[_builtins.str]] = None,
799
+ estimated_restore_duration: Optional[pulumi.Input[_builtins.str]] = None,
800
+ prepared_backup_details: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupBackupValidationDetailPreparedBackupDetailArgs']]]] = None,
801
+ time_last_validated: Optional[pulumi.Input[_builtins.str]] = None,
802
+ validation_status: Optional[pulumi.Input[_builtins.str]] = None):
803
+ """
804
+ :param pulumi.Input[_builtins.str] backup_preparation_status: Indicates whether the backup has been prepared successfully. PREPARED: The backup is prepared one. NOT_PREPARED: The backup is not prepared.
805
+ :param pulumi.Input[_builtins.str] error_message: Error message if the backup validation has failed.
806
+ :param pulumi.Input[_builtins.str] estimated_restore_duration: The estimated restore duration of the backup.
807
+ :param pulumi.Input[Sequence[pulumi.Input['MysqlBackupBackupValidationDetailPreparedBackupDetailArgs']]] prepared_backup_details: Prepared backup details.
808
+ :param pulumi.Input[_builtins.str] time_last_validated: The date and time of the most recent validation performed on the backup.
809
+ :param pulumi.Input[_builtins.str] validation_status: The status of backup validation: NOT_VALIDATED (Default): The backup has not been validated. VALIDATED: The backup has been validated successfully. NEEDS_ATTENTION: The backup validation failed due to a transient issue. Validation should be retried. FAILED: The backup cannot be restored.
810
+ """
811
+ if backup_preparation_status is not None:
812
+ pulumi.set(__self__, "backup_preparation_status", backup_preparation_status)
813
+ if error_message is not None:
814
+ pulumi.set(__self__, "error_message", error_message)
815
+ if estimated_restore_duration is not None:
816
+ pulumi.set(__self__, "estimated_restore_duration", estimated_restore_duration)
817
+ if prepared_backup_details is not None:
818
+ pulumi.set(__self__, "prepared_backup_details", prepared_backup_details)
819
+ if time_last_validated is not None:
820
+ pulumi.set(__self__, "time_last_validated", time_last_validated)
821
+ if validation_status is not None:
822
+ pulumi.set(__self__, "validation_status", validation_status)
823
+
824
+ @_builtins.property
825
+ @pulumi.getter(name="backupPreparationStatus")
826
+ def backup_preparation_status(self) -> Optional[pulumi.Input[_builtins.str]]:
827
+ """
828
+ Indicates whether the backup has been prepared successfully. PREPARED: The backup is prepared one. NOT_PREPARED: The backup is not prepared.
829
+ """
830
+ return pulumi.get(self, "backup_preparation_status")
831
+
832
+ @backup_preparation_status.setter
833
+ def backup_preparation_status(self, value: Optional[pulumi.Input[_builtins.str]]):
834
+ pulumi.set(self, "backup_preparation_status", value)
835
+
836
+ @_builtins.property
837
+ @pulumi.getter(name="errorMessage")
838
+ def error_message(self) -> Optional[pulumi.Input[_builtins.str]]:
839
+ """
840
+ Error message if the backup validation has failed.
841
+ """
842
+ return pulumi.get(self, "error_message")
843
+
844
+ @error_message.setter
845
+ def error_message(self, value: Optional[pulumi.Input[_builtins.str]]):
846
+ pulumi.set(self, "error_message", value)
847
+
848
+ @_builtins.property
849
+ @pulumi.getter(name="estimatedRestoreDuration")
850
+ def estimated_restore_duration(self) -> Optional[pulumi.Input[_builtins.str]]:
851
+ """
852
+ The estimated restore duration of the backup.
853
+ """
854
+ return pulumi.get(self, "estimated_restore_duration")
855
+
856
+ @estimated_restore_duration.setter
857
+ def estimated_restore_duration(self, value: Optional[pulumi.Input[_builtins.str]]):
858
+ pulumi.set(self, "estimated_restore_duration", value)
859
+
860
+ @_builtins.property
861
+ @pulumi.getter(name="preparedBackupDetails")
862
+ def prepared_backup_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupBackupValidationDetailPreparedBackupDetailArgs']]]]:
863
+ """
864
+ Prepared backup details.
865
+ """
866
+ return pulumi.get(self, "prepared_backup_details")
867
+
868
+ @prepared_backup_details.setter
869
+ def prepared_backup_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupBackupValidationDetailPreparedBackupDetailArgs']]]]):
870
+ pulumi.set(self, "prepared_backup_details", value)
871
+
872
+ @_builtins.property
873
+ @pulumi.getter(name="timeLastValidated")
874
+ def time_last_validated(self) -> Optional[pulumi.Input[_builtins.str]]:
875
+ """
876
+ The date and time of the most recent validation performed on the backup.
877
+ """
878
+ return pulumi.get(self, "time_last_validated")
879
+
880
+ @time_last_validated.setter
881
+ def time_last_validated(self, value: Optional[pulumi.Input[_builtins.str]]):
882
+ pulumi.set(self, "time_last_validated", value)
883
+
884
+ @_builtins.property
885
+ @pulumi.getter(name="validationStatus")
886
+ def validation_status(self) -> Optional[pulumi.Input[_builtins.str]]:
887
+ """
888
+ The status of backup validation: NOT_VALIDATED (Default): The backup has not been validated. VALIDATED: The backup has been validated successfully. NEEDS_ATTENTION: The backup validation failed due to a transient issue. Validation should be retried. FAILED: The backup cannot be restored.
889
+ """
890
+ return pulumi.get(self, "validation_status")
891
+
892
+ @validation_status.setter
893
+ def validation_status(self, value: Optional[pulumi.Input[_builtins.str]]):
894
+ pulumi.set(self, "validation_status", value)
895
+
896
+
897
+ if not MYPY:
898
+ class MysqlBackupBackupValidationDetailPreparedBackupDetailArgsDict(TypedDict):
899
+ prepared_backup_restore_reduction_in_minutes: NotRequired[pulumi.Input[_builtins.int]]
900
+ """
901
+ The estimated time saving when this prepared backup is restored.
902
+ """
903
+ time_prepared: NotRequired[pulumi.Input[_builtins.str]]
904
+ """
905
+ The date and time the backup was prepared.
906
+ """
907
+ elif False:
908
+ MysqlBackupBackupValidationDetailPreparedBackupDetailArgsDict: TypeAlias = Mapping[str, Any]
909
+
910
+ @pulumi.input_type
911
+ class MysqlBackupBackupValidationDetailPreparedBackupDetailArgs:
912
+ def __init__(__self__, *,
913
+ prepared_backup_restore_reduction_in_minutes: Optional[pulumi.Input[_builtins.int]] = None,
914
+ time_prepared: Optional[pulumi.Input[_builtins.str]] = None):
915
+ """
916
+ :param pulumi.Input[_builtins.int] prepared_backup_restore_reduction_in_minutes: The estimated time saving when this prepared backup is restored.
917
+ :param pulumi.Input[_builtins.str] time_prepared: The date and time the backup was prepared.
918
+ """
919
+ if prepared_backup_restore_reduction_in_minutes is not None:
920
+ pulumi.set(__self__, "prepared_backup_restore_reduction_in_minutes", prepared_backup_restore_reduction_in_minutes)
921
+ if time_prepared is not None:
922
+ pulumi.set(__self__, "time_prepared", time_prepared)
923
+
924
+ @_builtins.property
925
+ @pulumi.getter(name="preparedBackupRestoreReductionInMinutes")
926
+ def prepared_backup_restore_reduction_in_minutes(self) -> Optional[pulumi.Input[_builtins.int]]:
927
+ """
928
+ The estimated time saving when this prepared backup is restored.
929
+ """
930
+ return pulumi.get(self, "prepared_backup_restore_reduction_in_minutes")
931
+
932
+ @prepared_backup_restore_reduction_in_minutes.setter
933
+ def prepared_backup_restore_reduction_in_minutes(self, value: Optional[pulumi.Input[_builtins.int]]):
934
+ pulumi.set(self, "prepared_backup_restore_reduction_in_minutes", value)
935
+
936
+ @_builtins.property
937
+ @pulumi.getter(name="timePrepared")
938
+ def time_prepared(self) -> Optional[pulumi.Input[_builtins.str]]:
939
+ """
940
+ The date and time the backup was prepared.
941
+ """
942
+ return pulumi.get(self, "time_prepared")
943
+
944
+ @time_prepared.setter
945
+ def time_prepared(self, value: Optional[pulumi.Input[_builtins.str]]):
946
+ pulumi.set(self, "time_prepared", value)
947
+
948
+
759
949
  if not MYPY:
760
950
  class MysqlBackupDbSystemSnapshotArgsDict(TypedDict):
761
951
  admin_username: NotRequired[pulumi.Input[_builtins.str]]
@@ -2512,6 +2702,37 @@ class MysqlBackupSourceDetailsArgs:
2512
2702
  pulumi.set(self, "region", value)
2513
2703
 
2514
2704
 
2705
+ if not MYPY:
2706
+ class MysqlBackupValidateBackupDetailArgsDict(TypedDict):
2707
+ is_prepared_backup_required: pulumi.Input[_builtins.bool]
2708
+ """
2709
+ Specifies whether the backup needs to be prepared for fast restore or not. Set to true to prepare the backup **Note:** Prepare backup is a one time operation, therefore this field can be set to true only once.
2710
+ """
2711
+ elif False:
2712
+ MysqlBackupValidateBackupDetailArgsDict: TypeAlias = Mapping[str, Any]
2713
+
2714
+ @pulumi.input_type
2715
+ class MysqlBackupValidateBackupDetailArgs:
2716
+ def __init__(__self__, *,
2717
+ is_prepared_backup_required: pulumi.Input[_builtins.bool]):
2718
+ """
2719
+ :param pulumi.Input[_builtins.bool] is_prepared_backup_required: Specifies whether the backup needs to be prepared for fast restore or not. Set to true to prepare the backup **Note:** Prepare backup is a one time operation, therefore this field can be set to true only once.
2720
+ """
2721
+ pulumi.set(__self__, "is_prepared_backup_required", is_prepared_backup_required)
2722
+
2723
+ @_builtins.property
2724
+ @pulumi.getter(name="isPreparedBackupRequired")
2725
+ def is_prepared_backup_required(self) -> pulumi.Input[_builtins.bool]:
2726
+ """
2727
+ Specifies whether the backup needs to be prepared for fast restore or not. Set to true to prepare the backup **Note:** Prepare backup is a one time operation, therefore this field can be set to true only once.
2728
+ """
2729
+ return pulumi.get(self, "is_prepared_backup_required")
2730
+
2731
+ @is_prepared_backup_required.setter
2732
+ def is_prepared_backup_required(self, value: pulumi.Input[_builtins.bool]):
2733
+ pulumi.set(self, "is_prepared_backup_required", value)
2734
+
2735
+
2515
2736
  if not MYPY:
2516
2737
  class MysqlConfigurationInitVariablesArgsDict(TypedDict):
2517
2738
  lower_case_table_names: NotRequired[pulumi.Input[_builtins.str]]
@@ -27,7 +27,7 @@ class GetMysqlBackupResult:
27
27
  """
28
28
  A collection of values returned by getMysqlBackup.
29
29
  """
30
- def __init__(__self__, backup_id=None, backup_size_in_gbs=None, backup_type=None, compartment_id=None, creation_type=None, data_storage_size_in_gb=None, db_system_id=None, db_system_snapshot_summaries=None, db_system_snapshots=None, defined_tags=None, description=None, display_name=None, encrypt_datas=None, freeform_tags=None, id=None, immediate_source_backup_id=None, lifecycle_details=None, mysql_version=None, original_source_backup_id=None, retention_in_days=None, shape_name=None, soft_delete=None, source_details=None, state=None, system_tags=None, time_copy_created=None, time_created=None, time_updated=None):
30
+ def __init__(__self__, backup_id=None, backup_size_in_gbs=None, backup_type=None, backup_validation_details=None, compartment_id=None, creation_type=None, data_storage_size_in_gb=None, db_system_id=None, db_system_snapshot_summaries=None, db_system_snapshots=None, defined_tags=None, description=None, display_name=None, encrypt_datas=None, freeform_tags=None, id=None, immediate_source_backup_id=None, lifecycle_details=None, mysql_version=None, original_source_backup_id=None, retention_in_days=None, shape_name=None, soft_delete=None, source_details=None, state=None, system_tags=None, time_copy_created=None, time_created=None, time_updated=None, validate_backup_details=None, validate_trigger=None):
31
31
  if backup_id and not isinstance(backup_id, str):
32
32
  raise TypeError("Expected argument 'backup_id' to be a str")
33
33
  pulumi.set(__self__, "backup_id", backup_id)
@@ -37,6 +37,9 @@ class GetMysqlBackupResult:
37
37
  if backup_type and not isinstance(backup_type, str):
38
38
  raise TypeError("Expected argument 'backup_type' to be a str")
39
39
  pulumi.set(__self__, "backup_type", backup_type)
40
+ if backup_validation_details and not isinstance(backup_validation_details, list):
41
+ raise TypeError("Expected argument 'backup_validation_details' to be a list")
42
+ pulumi.set(__self__, "backup_validation_details", backup_validation_details)
40
43
  if compartment_id and not isinstance(compartment_id, str):
41
44
  raise TypeError("Expected argument 'compartment_id' to be a str")
42
45
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -112,6 +115,12 @@ class GetMysqlBackupResult:
112
115
  if time_updated and not isinstance(time_updated, str):
113
116
  raise TypeError("Expected argument 'time_updated' to be a str")
114
117
  pulumi.set(__self__, "time_updated", time_updated)
118
+ if validate_backup_details and not isinstance(validate_backup_details, list):
119
+ raise TypeError("Expected argument 'validate_backup_details' to be a list")
120
+ pulumi.set(__self__, "validate_backup_details", validate_backup_details)
121
+ if validate_trigger and not isinstance(validate_trigger, int):
122
+ raise TypeError("Expected argument 'validate_trigger' to be a int")
123
+ pulumi.set(__self__, "validate_trigger", validate_trigger)
115
124
 
116
125
  @_builtins.property
117
126
  @pulumi.getter(name="backupId")
@@ -134,6 +143,14 @@ class GetMysqlBackupResult:
134
143
  """
135
144
  return pulumi.get(self, "backup_type")
136
145
 
146
+ @_builtins.property
147
+ @pulumi.getter(name="backupValidationDetails")
148
+ def backup_validation_details(self) -> Sequence['outputs.GetMysqlBackupBackupValidationDetailResult']:
149
+ """
150
+ Backup validation details.
151
+ """
152
+ return pulumi.get(self, "backup_validation_details")
153
+
137
154
  @_builtins.property
138
155
  @pulumi.getter(name="compartmentId")
139
156
  def compartment_id(self) -> _builtins.str:
@@ -328,6 +345,16 @@ class GetMysqlBackupResult:
328
345
  """
329
346
  return pulumi.get(self, "time_updated")
330
347
 
348
+ @_builtins.property
349
+ @pulumi.getter(name="validateBackupDetails")
350
+ def validate_backup_details(self) -> Sequence['outputs.GetMysqlBackupValidateBackupDetailResult']:
351
+ return pulumi.get(self, "validate_backup_details")
352
+
353
+ @_builtins.property
354
+ @pulumi.getter(name="validateTrigger")
355
+ def validate_trigger(self) -> _builtins.int:
356
+ return pulumi.get(self, "validate_trigger")
357
+
331
358
 
332
359
  class AwaitableGetMysqlBackupResult(GetMysqlBackupResult):
333
360
  # pylint: disable=using-constant-test
@@ -338,6 +365,7 @@ class AwaitableGetMysqlBackupResult(GetMysqlBackupResult):
338
365
  backup_id=self.backup_id,
339
366
  backup_size_in_gbs=self.backup_size_in_gbs,
340
367
  backup_type=self.backup_type,
368
+ backup_validation_details=self.backup_validation_details,
341
369
  compartment_id=self.compartment_id,
342
370
  creation_type=self.creation_type,
343
371
  data_storage_size_in_gb=self.data_storage_size_in_gb,
@@ -362,7 +390,9 @@ class AwaitableGetMysqlBackupResult(GetMysqlBackupResult):
362
390
  system_tags=self.system_tags,
363
391
  time_copy_created=self.time_copy_created,
364
392
  time_created=self.time_created,
365
- time_updated=self.time_updated)
393
+ time_updated=self.time_updated,
394
+ validate_backup_details=self.validate_backup_details,
395
+ validate_trigger=self.validate_trigger)
366
396
 
367
397
 
368
398
  def get_mysql_backup(backup_id: Optional[_builtins.str] = None,
@@ -393,6 +423,7 @@ def get_mysql_backup(backup_id: Optional[_builtins.str] = None,
393
423
  backup_id=pulumi.get(__ret__, 'backup_id'),
394
424
  backup_size_in_gbs=pulumi.get(__ret__, 'backup_size_in_gbs'),
395
425
  backup_type=pulumi.get(__ret__, 'backup_type'),
426
+ backup_validation_details=pulumi.get(__ret__, 'backup_validation_details'),
396
427
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
397
428
  creation_type=pulumi.get(__ret__, 'creation_type'),
398
429
  data_storage_size_in_gb=pulumi.get(__ret__, 'data_storage_size_in_gb'),
@@ -417,7 +448,9 @@ def get_mysql_backup(backup_id: Optional[_builtins.str] = None,
417
448
  system_tags=pulumi.get(__ret__, 'system_tags'),
418
449
  time_copy_created=pulumi.get(__ret__, 'time_copy_created'),
419
450
  time_created=pulumi.get(__ret__, 'time_created'),
420
- time_updated=pulumi.get(__ret__, 'time_updated'))
451
+ time_updated=pulumi.get(__ret__, 'time_updated'),
452
+ validate_backup_details=pulumi.get(__ret__, 'validate_backup_details'),
453
+ validate_trigger=pulumi.get(__ret__, 'validate_trigger'))
421
454
  def get_mysql_backup_output(backup_id: Optional[pulumi.Input[_builtins.str]] = None,
422
455
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMysqlBackupResult]:
423
456
  """
@@ -445,6 +478,7 @@ def get_mysql_backup_output(backup_id: Optional[pulumi.Input[_builtins.str]] = N
445
478
  backup_id=pulumi.get(__response__, 'backup_id'),
446
479
  backup_size_in_gbs=pulumi.get(__response__, 'backup_size_in_gbs'),
447
480
  backup_type=pulumi.get(__response__, 'backup_type'),
481
+ backup_validation_details=pulumi.get(__response__, 'backup_validation_details'),
448
482
  compartment_id=pulumi.get(__response__, 'compartment_id'),
449
483
  creation_type=pulumi.get(__response__, 'creation_type'),
450
484
  data_storage_size_in_gb=pulumi.get(__response__, 'data_storage_size_in_gb'),
@@ -469,4 +503,6 @@ def get_mysql_backup_output(backup_id: Optional[pulumi.Input[_builtins.str]] = N
469
503
  system_tags=pulumi.get(__response__, 'system_tags'),
470
504
  time_copy_created=pulumi.get(__response__, 'time_copy_created'),
471
505
  time_created=pulumi.get(__response__, 'time_created'),
472
- time_updated=pulumi.get(__response__, 'time_updated')))
506
+ time_updated=pulumi.get(__response__, 'time_updated'),
507
+ validate_backup_details=pulumi.get(__response__, 'validate_backup_details'),
508
+ validate_trigger=pulumi.get(__response__, 'validate_trigger')))
@@ -174,7 +174,7 @@ def get_mysql_backups(backup_id: Optional[_builtins.str] = None,
174
174
  import pulumi_oci as oci
175
175
 
176
176
  test_mysql_backups = oci.Mysql.get_mysql_backups(compartment_id=compartment_id,
177
- backup_id=test_backup["id"],
177
+ backup_id=test_mysql_backup["id"],
178
178
  creation_type=mysql_backup_creation_type,
179
179
  db_system_id=test_db_system["id"],
180
180
  display_name=mysql_backup_display_name,
@@ -235,7 +235,7 @@ def get_mysql_backups_output(backup_id: Optional[pulumi.Input[Optional[_builtins
235
235
  import pulumi_oci as oci
236
236
 
237
237
  test_mysql_backups = oci.Mysql.get_mysql_backups(compartment_id=compartment_id,
238
- backup_id=test_backup["id"],
238
+ backup_id=test_mysql_backup["id"],
239
239
  creation_type=mysql_backup_creation_type,
240
240
  db_system_id=test_db_system["id"],
241
241
  display_name=mysql_backup_display_name,