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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.25.0-alpha.1740032973"
4
+ "version": "2.26.0"
5
5
  }
@@ -38,7 +38,7 @@ class RedisClusterArgs:
38
38
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
39
39
  :param pulumi.Input[int] node_count: (Updatable) The number of nodes per shard in the cluster when clusterMode is SHARDED. This is the total number of nodes when clusterMode is NONSHARDED.
40
40
  :param pulumi.Input[float] node_memory_in_gbs: (Updatable) The amount of memory allocated to the cluster's nodes, in gigabytes.
41
- :param pulumi.Input[str] software_version: The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
41
+ :param pulumi.Input[str] software_version: (Updatable) The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
42
42
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster's subnet.
43
43
 
44
44
 
@@ -119,7 +119,7 @@ class RedisClusterArgs:
119
119
  @pulumi.getter(name="softwareVersion")
120
120
  def software_version(self) -> pulumi.Input[str]:
121
121
  """
122
- The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
122
+ (Updatable) The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
123
123
  """
124
124
  return pulumi.get(self, "software_version")
125
125
 
@@ -245,7 +245,7 @@ class _RedisClusterState:
245
245
  :param pulumi.Input[str] replicas_endpoint_ip_address: The private IP address of the API endpoint for the cluster's replica nodes.
246
246
  :param pulumi.Input[str] replicas_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the cluster's replica nodes.
247
247
  :param pulumi.Input[int] shard_count: (Updatable) The number of shards in sharded cluster. Only applicable when clusterMode is SHARDED.
248
- :param pulumi.Input[str] software_version: The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
248
+ :param pulumi.Input[str] software_version: (Updatable) The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
249
249
  :param pulumi.Input[str] state: The current state of the cluster.
250
250
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster's subnet.
251
251
 
@@ -483,7 +483,7 @@ class _RedisClusterState:
483
483
  @pulumi.getter(name="softwareVersion")
484
484
  def software_version(self) -> Optional[pulumi.Input[str]]:
485
485
  """
486
- The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
486
+ (Updatable) The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
487
487
  """
488
488
  return pulumi.get(self, "software_version")
489
489
 
@@ -621,7 +621,7 @@ class RedisCluster(pulumi.CustomResource):
621
621
  :param pulumi.Input[float] node_memory_in_gbs: (Updatable) The amount of memory allocated to the cluster's nodes, in gigabytes.
622
622
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) A list of Network Security Group (NSG) [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this cluster. For more information, see [Using an NSG for Clusters](https://docs.cloud.oracle.com/iaas/Content/ocicache/connecttocluster.htm#connecttocluster__networksecuritygroup).
623
623
  :param pulumi.Input[int] shard_count: (Updatable) The number of shards in sharded cluster. Only applicable when clusterMode is SHARDED.
624
- :param pulumi.Input[str] software_version: The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
624
+ :param pulumi.Input[str] software_version: (Updatable) The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
625
625
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster's subnet.
626
626
 
627
627
 
@@ -792,7 +792,7 @@ class RedisCluster(pulumi.CustomResource):
792
792
  :param pulumi.Input[str] replicas_endpoint_ip_address: The private IP address of the API endpoint for the cluster's replica nodes.
793
793
  :param pulumi.Input[str] replicas_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the cluster's replica nodes.
794
794
  :param pulumi.Input[int] shard_count: (Updatable) The number of shards in sharded cluster. Only applicable when clusterMode is SHARDED.
795
- :param pulumi.Input[str] software_version: The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
795
+ :param pulumi.Input[str] software_version: (Updatable) The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
796
796
  :param pulumi.Input[str] state: The current state of the cluster.
797
797
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster's subnet.
798
798
 
@@ -954,7 +954,7 @@ class RedisCluster(pulumi.CustomResource):
954
954
  @pulumi.getter(name="softwareVersion")
955
955
  def software_version(self) -> pulumi.Output[str]:
956
956
  """
957
- The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
957
+ (Updatable) The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
958
958
  """
959
959
  return pulumi.get(self, "software_version")
960
960
 
@@ -13,6 +13,7 @@ from .get_baselineable_metrics import *
13
13
  from .get_baselineable_metrics_evaluate import *
14
14
  from .get_config import *
15
15
  from .get_configs import *
16
+ from .get_defined_monitoring_templates import *
16
17
  from .get_discovery_job import *
17
18
  from .get_discovery_job_logs import *
18
19
  from .get_discovery_jobs import *
@@ -26,6 +27,10 @@ from .get_monitored_resource_tasks import *
26
27
  from .get_monitored_resource_type import *
27
28
  from .get_monitored_resource_types import *
28
29
  from .get_monitored_resources import *
30
+ from .get_monitoring_template import *
31
+ from .get_monitoring_template_alarm_condition import *
32
+ from .get_monitoring_template_alarm_conditions import *
33
+ from .get_monitoring_templates import *
29
34
  from .get_process_set import *
30
35
  from .get_process_sets import *
31
36
  from .maintenance_window import *
@@ -41,6 +46,9 @@ from .monitored_resources_associate_monitored_resource import *
41
46
  from .monitored_resources_list_member import *
42
47
  from .monitored_resources_search import *
43
48
  from .monitored_resources_search_association import *
49
+ from .monitoring_template import *
50
+ from .monitoring_template_alarm_condition import *
51
+ from .monitoring_template_monitoring_template_on_given_resources_management import *
44
52
  from .process_set import *
45
53
  from ._inputs import *
46
54
  from . import outputs
@@ -89,6 +89,10 @@ __all__ = [
89
89
  'MonitoredResourcesSearchItemArgsDict',
90
90
  'MonitoredResourcesSearchItemPropertyArgs',
91
91
  'MonitoredResourcesSearchItemPropertyArgsDict',
92
+ 'MonitoringTemplateAlarmConditionConditionArgs',
93
+ 'MonitoringTemplateAlarmConditionConditionArgsDict',
94
+ 'MonitoringTemplateMemberArgs',
95
+ 'MonitoringTemplateMemberArgsDict',
92
96
  'ProcessSetSpecificationArgs',
93
97
  'ProcessSetSpecificationArgsDict',
94
98
  'ProcessSetSpecificationItemArgs',
@@ -105,6 +109,8 @@ __all__ = [
105
109
  'GetBaselineableMetricsFilterArgsDict',
106
110
  'GetConfigsFilterArgs',
107
111
  'GetConfigsFilterArgsDict',
112
+ 'GetDefinedMonitoringTemplatesFilterArgs',
113
+ 'GetDefinedMonitoringTemplatesFilterArgsDict',
108
114
  'GetDiscoveryJobLogsFilterArgs',
109
115
  'GetDiscoveryJobLogsFilterArgsDict',
110
116
  'GetDiscoveryJobsFilterArgs',
@@ -119,6 +125,10 @@ __all__ = [
119
125
  'GetMonitoredResourceTypesFilterArgsDict',
120
126
  'GetMonitoredResourcesFilterArgs',
121
127
  'GetMonitoredResourcesFilterArgsDict',
128
+ 'GetMonitoringTemplateAlarmConditionsFilterArgs',
129
+ 'GetMonitoringTemplateAlarmConditionsFilterArgsDict',
130
+ 'GetMonitoringTemplatesFilterArgs',
131
+ 'GetMonitoringTemplatesFilterArgsDict',
122
132
  'GetProcessSetsFilterArgs',
123
133
  'GetProcessSetsFilterArgsDict',
124
134
  ]
@@ -2790,6 +2800,10 @@ if not MYPY:
2790
2800
  """
2791
2801
  (Updatable) List of valid values for the properties. This is useful when resource type wants to restrict only certain values for some properties. For instance for 'osType' property, supported values can be restricted to be either Linux or Windows. Example: `{ "osType": "Linux,Windows,Solaris"}`
2792
2802
  """
2803
+ valid_sub_resource_types: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2804
+ """
2805
+ (Updatable) List of valid sub-resource types for a composite resource type. The sub-resource types will be obtained from the valid association pairs corresponding to the composite resource types. It will be empty for non composite resource types
2806
+ """
2793
2807
  elif False:
2794
2808
  MonitoredResourceTypeMetadataArgsDict: TypeAlias = Mapping[str, Any]
2795
2809
 
@@ -2802,7 +2816,8 @@ class MonitoredResourceTypeMetadataArgs:
2802
2816
  unique_property_sets: Optional[pulumi.Input[Sequence[pulumi.Input['MonitoredResourceTypeMetadataUniquePropertySetArgs']]]] = None,
2803
2817
  valid_properties_for_creates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2804
2818
  valid_properties_for_updates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2805
- valid_property_values: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
2819
+ valid_property_values: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2820
+ valid_sub_resource_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
2806
2821
  """
2807
2822
  :param pulumi.Input[str] format: (Updatable) ResourceType metadata format to be used. Currently supports only one format. Possible values - SYSTEM_FORMAT.
2808
2823
  * SYSTEM_FORMAT - The resource type metadata is defined in machine friendly format.
@@ -2812,6 +2827,7 @@ class MonitoredResourceTypeMetadataArgs:
2812
2827
  :param pulumi.Input[Sequence[pulumi.Input[str]]] valid_properties_for_creates: (Updatable) List of valid properties for resource type while creating the monitored resource. If resources of this type specifies any other properties during create operation, the operation will fail.
2813
2828
  :param pulumi.Input[Sequence[pulumi.Input[str]]] valid_properties_for_updates: (Updatable) List of valid properties for resource type while updating the monitored resource. If resources of this type specifies any other properties during update operation, the operation will fail.
2814
2829
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] valid_property_values: (Updatable) List of valid values for the properties. This is useful when resource type wants to restrict only certain values for some properties. For instance for 'osType' property, supported values can be restricted to be either Linux or Windows. Example: `{ "osType": "Linux,Windows,Solaris"}`
2830
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valid_sub_resource_types: (Updatable) List of valid sub-resource types for a composite resource type. The sub-resource types will be obtained from the valid association pairs corresponding to the composite resource types. It will be empty for non composite resource types
2815
2831
  """
2816
2832
  pulumi.set(__self__, "format", format)
2817
2833
  if agent_properties is not None:
@@ -2826,6 +2842,8 @@ class MonitoredResourceTypeMetadataArgs:
2826
2842
  pulumi.set(__self__, "valid_properties_for_updates", valid_properties_for_updates)
2827
2843
  if valid_property_values is not None:
2828
2844
  pulumi.set(__self__, "valid_property_values", valid_property_values)
2845
+ if valid_sub_resource_types is not None:
2846
+ pulumi.set(__self__, "valid_sub_resource_types", valid_sub_resource_types)
2829
2847
 
2830
2848
  @property
2831
2849
  @pulumi.getter
@@ -2912,6 +2930,18 @@ class MonitoredResourceTypeMetadataArgs:
2912
2930
  def valid_property_values(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
2913
2931
  pulumi.set(self, "valid_property_values", value)
2914
2932
 
2933
+ @property
2934
+ @pulumi.getter(name="validSubResourceTypes")
2935
+ def valid_sub_resource_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2936
+ """
2937
+ (Updatable) List of valid sub-resource types for a composite resource type. The sub-resource types will be obtained from the valid association pairs corresponding to the composite resource types. It will be empty for non composite resource types
2938
+ """
2939
+ return pulumi.get(self, "valid_sub_resource_types")
2940
+
2941
+ @valid_sub_resource_types.setter
2942
+ def valid_sub_resource_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2943
+ pulumi.set(self, "valid_sub_resource_types", value)
2944
+
2915
2945
 
2916
2946
  if not MYPY:
2917
2947
  class MonitoredResourceTypeMetadataUniquePropertySetArgsDict(TypedDict):
@@ -4112,6 +4142,206 @@ class MonitoredResourcesSearchItemPropertyArgs:
4112
4142
  pulumi.set(self, "value", value)
4113
4143
 
4114
4144
 
4145
+ if not MYPY:
4146
+ class MonitoringTemplateAlarmConditionConditionArgsDict(TypedDict):
4147
+ query: pulumi.Input[str]
4148
+ """
4149
+ (Updatable) The Monitoring Query Language (MQL) expression to evaluate for the alarm.
4150
+ """
4151
+ severity: pulumi.Input[str]
4152
+ """
4153
+ (Updatable) Severity - Critical/Warning
4154
+ """
4155
+ body: NotRequired[pulumi.Input[str]]
4156
+ """
4157
+ (Updatable) The human-readable content of the delivered alarm notification. Oracle recommends providing guidance to operators for resolving the alarm condition. Consider adding links to standard runbook practices. Avoid entering confidential information.
4158
+ """
4159
+ should_append_note: NotRequired[pulumi.Input[bool]]
4160
+ """
4161
+ (Updatable) Whether the note need to add into bottom of the body for mapping the alarms information with template or not.
4162
+ """
4163
+ should_append_url: NotRequired[pulumi.Input[bool]]
4164
+ """
4165
+ (Updatable) Whether the URL need to add into bottom of the body for mapping the alarms information with template or not.
4166
+ """
4167
+ trigger_delay: NotRequired[pulumi.Input[str]]
4168
+ """
4169
+ (Updatable) The period of time that the condition defined in the alarm must persist before the alarm state changes from "OK" to "FIRING".
4170
+ """
4171
+ elif False:
4172
+ MonitoringTemplateAlarmConditionConditionArgsDict: TypeAlias = Mapping[str, Any]
4173
+
4174
+ @pulumi.input_type
4175
+ class MonitoringTemplateAlarmConditionConditionArgs:
4176
+ def __init__(__self__, *,
4177
+ query: pulumi.Input[str],
4178
+ severity: pulumi.Input[str],
4179
+ body: Optional[pulumi.Input[str]] = None,
4180
+ should_append_note: Optional[pulumi.Input[bool]] = None,
4181
+ should_append_url: Optional[pulumi.Input[bool]] = None,
4182
+ trigger_delay: Optional[pulumi.Input[str]] = None):
4183
+ """
4184
+ :param pulumi.Input[str] query: (Updatable) The Monitoring Query Language (MQL) expression to evaluate for the alarm.
4185
+ :param pulumi.Input[str] severity: (Updatable) Severity - Critical/Warning
4186
+ :param pulumi.Input[str] body: (Updatable) The human-readable content of the delivered alarm notification. Oracle recommends providing guidance to operators for resolving the alarm condition. Consider adding links to standard runbook practices. Avoid entering confidential information.
4187
+ :param pulumi.Input[bool] should_append_note: (Updatable) Whether the note need to add into bottom of the body for mapping the alarms information with template or not.
4188
+ :param pulumi.Input[bool] should_append_url: (Updatable) Whether the URL need to add into bottom of the body for mapping the alarms information with template or not.
4189
+ :param pulumi.Input[str] trigger_delay: (Updatable) The period of time that the condition defined in the alarm must persist before the alarm state changes from "OK" to "FIRING".
4190
+ """
4191
+ pulumi.set(__self__, "query", query)
4192
+ pulumi.set(__self__, "severity", severity)
4193
+ if body is not None:
4194
+ pulumi.set(__self__, "body", body)
4195
+ if should_append_note is not None:
4196
+ pulumi.set(__self__, "should_append_note", should_append_note)
4197
+ if should_append_url is not None:
4198
+ pulumi.set(__self__, "should_append_url", should_append_url)
4199
+ if trigger_delay is not None:
4200
+ pulumi.set(__self__, "trigger_delay", trigger_delay)
4201
+
4202
+ @property
4203
+ @pulumi.getter
4204
+ def query(self) -> pulumi.Input[str]:
4205
+ """
4206
+ (Updatable) The Monitoring Query Language (MQL) expression to evaluate for the alarm.
4207
+ """
4208
+ return pulumi.get(self, "query")
4209
+
4210
+ @query.setter
4211
+ def query(self, value: pulumi.Input[str]):
4212
+ pulumi.set(self, "query", value)
4213
+
4214
+ @property
4215
+ @pulumi.getter
4216
+ def severity(self) -> pulumi.Input[str]:
4217
+ """
4218
+ (Updatable) Severity - Critical/Warning
4219
+ """
4220
+ return pulumi.get(self, "severity")
4221
+
4222
+ @severity.setter
4223
+ def severity(self, value: pulumi.Input[str]):
4224
+ pulumi.set(self, "severity", value)
4225
+
4226
+ @property
4227
+ @pulumi.getter
4228
+ def body(self) -> Optional[pulumi.Input[str]]:
4229
+ """
4230
+ (Updatable) The human-readable content of the delivered alarm notification. Oracle recommends providing guidance to operators for resolving the alarm condition. Consider adding links to standard runbook practices. Avoid entering confidential information.
4231
+ """
4232
+ return pulumi.get(self, "body")
4233
+
4234
+ @body.setter
4235
+ def body(self, value: Optional[pulumi.Input[str]]):
4236
+ pulumi.set(self, "body", value)
4237
+
4238
+ @property
4239
+ @pulumi.getter(name="shouldAppendNote")
4240
+ def should_append_note(self) -> Optional[pulumi.Input[bool]]:
4241
+ """
4242
+ (Updatable) Whether the note need to add into bottom of the body for mapping the alarms information with template or not.
4243
+ """
4244
+ return pulumi.get(self, "should_append_note")
4245
+
4246
+ @should_append_note.setter
4247
+ def should_append_note(self, value: Optional[pulumi.Input[bool]]):
4248
+ pulumi.set(self, "should_append_note", value)
4249
+
4250
+ @property
4251
+ @pulumi.getter(name="shouldAppendUrl")
4252
+ def should_append_url(self) -> Optional[pulumi.Input[bool]]:
4253
+ """
4254
+ (Updatable) Whether the URL need to add into bottom of the body for mapping the alarms information with template or not.
4255
+ """
4256
+ return pulumi.get(self, "should_append_url")
4257
+
4258
+ @should_append_url.setter
4259
+ def should_append_url(self, value: Optional[pulumi.Input[bool]]):
4260
+ pulumi.set(self, "should_append_url", value)
4261
+
4262
+ @property
4263
+ @pulumi.getter(name="triggerDelay")
4264
+ def trigger_delay(self) -> Optional[pulumi.Input[str]]:
4265
+ """
4266
+ (Updatable) The period of time that the condition defined in the alarm must persist before the alarm state changes from "OK" to "FIRING".
4267
+ """
4268
+ return pulumi.get(self, "trigger_delay")
4269
+
4270
+ @trigger_delay.setter
4271
+ def trigger_delay(self, value: Optional[pulumi.Input[str]]):
4272
+ pulumi.set(self, "trigger_delay", value)
4273
+
4274
+
4275
+ if not MYPY:
4276
+ class MonitoringTemplateMemberArgsDict(TypedDict):
4277
+ id: pulumi.Input[str]
4278
+ """
4279
+ (Updatable) The OCID of the resourceInstance/resourceType/resourceGroup
4280
+ """
4281
+ type: pulumi.Input[str]
4282
+ """
4283
+ (Updatable) Type of the member reference RESOURCE_INSTANCE, RESOURCE_TYPE, RESOURCE_GROUP
4284
+ """
4285
+ composite_type: NotRequired[pulumi.Input[str]]
4286
+ """
4287
+ (Updatable) The OCID of the composite resource type like EBS or Peoplesoft.
4288
+ """
4289
+ elif False:
4290
+ MonitoringTemplateMemberArgsDict: TypeAlias = Mapping[str, Any]
4291
+
4292
+ @pulumi.input_type
4293
+ class MonitoringTemplateMemberArgs:
4294
+ def __init__(__self__, *,
4295
+ id: pulumi.Input[str],
4296
+ type: pulumi.Input[str],
4297
+ composite_type: Optional[pulumi.Input[str]] = None):
4298
+ """
4299
+ :param pulumi.Input[str] id: (Updatable) The OCID of the resourceInstance/resourceType/resourceGroup
4300
+ :param pulumi.Input[str] type: (Updatable) Type of the member reference RESOURCE_INSTANCE, RESOURCE_TYPE, RESOURCE_GROUP
4301
+ :param pulumi.Input[str] composite_type: (Updatable) The OCID of the composite resource type like EBS or Peoplesoft.
4302
+ """
4303
+ pulumi.set(__self__, "id", id)
4304
+ pulumi.set(__self__, "type", type)
4305
+ if composite_type is not None:
4306
+ pulumi.set(__self__, "composite_type", composite_type)
4307
+
4308
+ @property
4309
+ @pulumi.getter
4310
+ def id(self) -> pulumi.Input[str]:
4311
+ """
4312
+ (Updatable) The OCID of the resourceInstance/resourceType/resourceGroup
4313
+ """
4314
+ return pulumi.get(self, "id")
4315
+
4316
+ @id.setter
4317
+ def id(self, value: pulumi.Input[str]):
4318
+ pulumi.set(self, "id", value)
4319
+
4320
+ @property
4321
+ @pulumi.getter
4322
+ def type(self) -> pulumi.Input[str]:
4323
+ """
4324
+ (Updatable) Type of the member reference RESOURCE_INSTANCE, RESOURCE_TYPE, RESOURCE_GROUP
4325
+ """
4326
+ return pulumi.get(self, "type")
4327
+
4328
+ @type.setter
4329
+ def type(self, value: pulumi.Input[str]):
4330
+ pulumi.set(self, "type", value)
4331
+
4332
+ @property
4333
+ @pulumi.getter(name="compositeType")
4334
+ def composite_type(self) -> Optional[pulumi.Input[str]]:
4335
+ """
4336
+ (Updatable) The OCID of the composite resource type like EBS or Peoplesoft.
4337
+ """
4338
+ return pulumi.get(self, "composite_type")
4339
+
4340
+ @composite_type.setter
4341
+ def composite_type(self, value: Optional[pulumi.Input[str]]):
4342
+ pulumi.set(self, "composite_type", value)
4343
+
4344
+
4115
4345
  if not MYPY:
4116
4346
  class ProcessSetSpecificationArgsDict(TypedDict):
4117
4347
  items: pulumi.Input[Sequence[pulumi.Input['ProcessSetSpecificationItemArgsDict']]]
@@ -4645,6 +4875,53 @@ class GetConfigsFilterArgs:
4645
4875
  pulumi.set(self, "regex", value)
4646
4876
 
4647
4877
 
4878
+ if not MYPY:
4879
+ class GetDefinedMonitoringTemplatesFilterArgsDict(TypedDict):
4880
+ name: str
4881
+ values: Sequence[str]
4882
+ regex: NotRequired[bool]
4883
+ elif False:
4884
+ GetDefinedMonitoringTemplatesFilterArgsDict: TypeAlias = Mapping[str, Any]
4885
+
4886
+ @pulumi.input_type
4887
+ class GetDefinedMonitoringTemplatesFilterArgs:
4888
+ def __init__(__self__, *,
4889
+ name: str,
4890
+ values: Sequence[str],
4891
+ regex: Optional[bool] = None):
4892
+ pulumi.set(__self__, "name", name)
4893
+ pulumi.set(__self__, "values", values)
4894
+ if regex is not None:
4895
+ pulumi.set(__self__, "regex", regex)
4896
+
4897
+ @property
4898
+ @pulumi.getter
4899
+ def name(self) -> str:
4900
+ return pulumi.get(self, "name")
4901
+
4902
+ @name.setter
4903
+ def name(self, value: str):
4904
+ pulumi.set(self, "name", value)
4905
+
4906
+ @property
4907
+ @pulumi.getter
4908
+ def values(self) -> Sequence[str]:
4909
+ return pulumi.get(self, "values")
4910
+
4911
+ @values.setter
4912
+ def values(self, value: Sequence[str]):
4913
+ pulumi.set(self, "values", value)
4914
+
4915
+ @property
4916
+ @pulumi.getter
4917
+ def regex(self) -> Optional[bool]:
4918
+ return pulumi.get(self, "regex")
4919
+
4920
+ @regex.setter
4921
+ def regex(self, value: Optional[bool]):
4922
+ pulumi.set(self, "regex", value)
4923
+
4924
+
4648
4925
  if not MYPY:
4649
4926
  class GetDiscoveryJobLogsFilterArgsDict(TypedDict):
4650
4927
  name: str
@@ -5028,6 +5305,100 @@ class GetMonitoredResourcesFilterArgs:
5028
5305
  pulumi.set(self, "regex", value)
5029
5306
 
5030
5307
 
5308
+ if not MYPY:
5309
+ class GetMonitoringTemplateAlarmConditionsFilterArgsDict(TypedDict):
5310
+ name: str
5311
+ values: Sequence[str]
5312
+ regex: NotRequired[bool]
5313
+ elif False:
5314
+ GetMonitoringTemplateAlarmConditionsFilterArgsDict: TypeAlias = Mapping[str, Any]
5315
+
5316
+ @pulumi.input_type
5317
+ class GetMonitoringTemplateAlarmConditionsFilterArgs:
5318
+ def __init__(__self__, *,
5319
+ name: str,
5320
+ values: Sequence[str],
5321
+ regex: Optional[bool] = None):
5322
+ pulumi.set(__self__, "name", name)
5323
+ pulumi.set(__self__, "values", values)
5324
+ if regex is not None:
5325
+ pulumi.set(__self__, "regex", regex)
5326
+
5327
+ @property
5328
+ @pulumi.getter
5329
+ def name(self) -> str:
5330
+ return pulumi.get(self, "name")
5331
+
5332
+ @name.setter
5333
+ def name(self, value: str):
5334
+ pulumi.set(self, "name", value)
5335
+
5336
+ @property
5337
+ @pulumi.getter
5338
+ def values(self) -> Sequence[str]:
5339
+ return pulumi.get(self, "values")
5340
+
5341
+ @values.setter
5342
+ def values(self, value: Sequence[str]):
5343
+ pulumi.set(self, "values", value)
5344
+
5345
+ @property
5346
+ @pulumi.getter
5347
+ def regex(self) -> Optional[bool]:
5348
+ return pulumi.get(self, "regex")
5349
+
5350
+ @regex.setter
5351
+ def regex(self, value: Optional[bool]):
5352
+ pulumi.set(self, "regex", value)
5353
+
5354
+
5355
+ if not MYPY:
5356
+ class GetMonitoringTemplatesFilterArgsDict(TypedDict):
5357
+ name: str
5358
+ values: Sequence[str]
5359
+ regex: NotRequired[bool]
5360
+ elif False:
5361
+ GetMonitoringTemplatesFilterArgsDict: TypeAlias = Mapping[str, Any]
5362
+
5363
+ @pulumi.input_type
5364
+ class GetMonitoringTemplatesFilterArgs:
5365
+ def __init__(__self__, *,
5366
+ name: str,
5367
+ values: Sequence[str],
5368
+ regex: Optional[bool] = None):
5369
+ pulumi.set(__self__, "name", name)
5370
+ pulumi.set(__self__, "values", values)
5371
+ if regex is not None:
5372
+ pulumi.set(__self__, "regex", regex)
5373
+
5374
+ @property
5375
+ @pulumi.getter
5376
+ def name(self) -> str:
5377
+ return pulumi.get(self, "name")
5378
+
5379
+ @name.setter
5380
+ def name(self, value: str):
5381
+ pulumi.set(self, "name", value)
5382
+
5383
+ @property
5384
+ @pulumi.getter
5385
+ def values(self) -> Sequence[str]:
5386
+ return pulumi.get(self, "values")
5387
+
5388
+ @values.setter
5389
+ def values(self, value: Sequence[str]):
5390
+ pulumi.set(self, "values", value)
5391
+
5392
+ @property
5393
+ @pulumi.getter
5394
+ def regex(self) -> Optional[bool]:
5395
+ return pulumi.get(self, "regex")
5396
+
5397
+ @regex.setter
5398
+ def regex(self, value: Optional[bool]):
5399
+ pulumi.set(self, "regex", value)
5400
+
5401
+
5031
5402
  if not MYPY:
5032
5403
  class GetProcessSetsFilterArgsDict(TypedDict):
5033
5404
  name: str