pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.25.0a1740096539__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 (98) hide show
  1. pulumi_oci/__init__.py +35 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +40 -0
  5. pulumi_oci/containerengine/cluster.py +2 -0
  6. pulumi_oci/containerengine/outputs.py +70 -0
  7. pulumi_oci/database/_inputs.py +487 -2
  8. pulumi_oci/database/autonomous_container_database.py +92 -0
  9. pulumi_oci/database/autonomous_database.py +97 -8
  10. pulumi_oci/database/backup_destination.py +84 -0
  11. pulumi_oci/database/data_guard_association.py +49 -0
  12. pulumi_oci/database/db_system.py +111 -8
  13. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  14. pulumi_oci/database/get_autonomous_database.py +32 -1
  15. pulumi_oci/database/get_autonomous_databases.py +0 -26
  16. pulumi_oci/database/get_backup_destination.py +43 -1
  17. pulumi_oci/database/get_data_guard_association.py +12 -1
  18. pulumi_oci/database/get_maintenance_runs.py +20 -1
  19. pulumi_oci/database/outputs.py +1179 -48
  20. pulumi_oci/filestorage/file_system.py +28 -0
  21. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  22. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  23. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  24. pulumi_oci/filestorage/get_replication.py +15 -1
  25. pulumi_oci/filestorage/get_replication_target.py +15 -1
  26. pulumi_oci/filestorage/get_snapshot.py +15 -1
  27. pulumi_oci/filestorage/mount_target.py +28 -0
  28. pulumi_oci/filestorage/outbound_connector.py +28 -0
  29. pulumi_oci/filestorage/outputs.py +77 -0
  30. pulumi_oci/filestorage/replication.py +28 -0
  31. pulumi_oci/filestorage/snapshot.py +28 -0
  32. pulumi_oci/goldengate/connection.py +561 -162
  33. pulumi_oci/goldengate/database_registration.py +14 -14
  34. pulumi_oci/goldengate/get_connection.py +117 -6
  35. pulumi_oci/goldengate/outputs.py +96 -10
  36. pulumi_oci/jms/__init__.py +4 -0
  37. pulumi_oci/jms/_inputs.py +196 -0
  38. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  39. pulumi_oci/jms/get_fleet_errors.py +264 -0
  40. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  41. pulumi_oci/jms/get_jms_plugins.py +23 -1
  42. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  43. pulumi_oci/jms/get_plugin_errors.py +264 -0
  44. pulumi_oci/jms/outputs.py +566 -6
  45. pulumi_oci/provider.py +20 -0
  46. pulumi_oci/pulumi-plugin.json +1 -1
  47. pulumi_oci/stackmonitoring/__init__.py +8 -0
  48. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  49. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  50. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  51. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  52. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  53. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  54. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  55. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  56. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  57. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  58. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  59. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  60. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  61. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  62. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  63. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  64. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  65. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  66. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  67. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  68. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  69. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  70. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  71. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  72. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  73. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  74. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  75. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  76. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  77. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  78. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  79. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  80. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  81. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  82. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  83. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  84. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  85. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  86. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  87. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  88. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  89. pulumi_oci/vault/__init__.py +1 -1
  90. pulumi_oci/vault/_inputs.py +92 -0
  91. pulumi_oci/vault/get_secret.py +40 -1
  92. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  93. pulumi_oci/vault/outputs.py +210 -0
  94. pulumi_oci/vault/secret.py +122 -0
  95. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/METADATA +1 -1
  96. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/RECORD +98 -59
  97. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/WHEEL +0 -0
  98. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/top_level.txt +0 -0
pulumi_oci/provider.py CHANGED
@@ -31,6 +31,7 @@ class ProviderArgs:
31
31
  region: Optional[pulumi.Input[str]] = None,
32
32
  retry_duration_seconds: Optional[pulumi.Input[int]] = None,
33
33
  tenancy_ocid: Optional[pulumi.Input[str]] = None,
34
+ test_time_maintenance_reboot_due: Optional[pulumi.Input[str]] = None,
34
35
  user_ocid: Optional[pulumi.Input[str]] = None):
35
36
  """
36
37
  The set of arguments for constructing a Provider resource.
@@ -80,6 +81,8 @@ class ProviderArgs:
80
81
  pulumi.set(__self__, "retry_duration_seconds", retry_duration_seconds)
81
82
  if tenancy_ocid is not None:
82
83
  pulumi.set(__self__, "tenancy_ocid", tenancy_ocid)
84
+ if test_time_maintenance_reboot_due is not None:
85
+ pulumi.set(__self__, "test_time_maintenance_reboot_due", test_time_maintenance_reboot_due)
83
86
  if user_ocid is not None:
84
87
  pulumi.set(__self__, "user_ocid", user_ocid)
85
88
 
@@ -232,6 +235,15 @@ class ProviderArgs:
232
235
  def tenancy_ocid(self, value: Optional[pulumi.Input[str]]):
233
236
  pulumi.set(self, "tenancy_ocid", value)
234
237
 
238
+ @property
239
+ @pulumi.getter(name="testTimeMaintenanceRebootDue")
240
+ def test_time_maintenance_reboot_due(self) -> Optional[pulumi.Input[str]]:
241
+ return pulumi.get(self, "test_time_maintenance_reboot_due")
242
+
243
+ @test_time_maintenance_reboot_due.setter
244
+ def test_time_maintenance_reboot_due(self, value: Optional[pulumi.Input[str]]):
245
+ pulumi.set(self, "test_time_maintenance_reboot_due", value)
246
+
235
247
  @property
236
248
  @pulumi.getter(name="userOcid")
237
249
  def user_ocid(self) -> Optional[pulumi.Input[str]]:
@@ -263,6 +275,7 @@ class Provider(pulumi.ProviderResource):
263
275
  region: Optional[pulumi.Input[str]] = None,
264
276
  retry_duration_seconds: Optional[pulumi.Input[int]] = None,
265
277
  tenancy_ocid: Optional[pulumi.Input[str]] = None,
278
+ test_time_maintenance_reboot_due: Optional[pulumi.Input[str]] = None,
266
279
  user_ocid: Optional[pulumi.Input[str]] = None,
267
280
  __props__=None):
268
281
  """
@@ -334,6 +347,7 @@ class Provider(pulumi.ProviderResource):
334
347
  region: Optional[pulumi.Input[str]] = None,
335
348
  retry_duration_seconds: Optional[pulumi.Input[int]] = None,
336
349
  tenancy_ocid: Optional[pulumi.Input[str]] = None,
350
+ test_time_maintenance_reboot_due: Optional[pulumi.Input[str]] = None,
337
351
  user_ocid: Optional[pulumi.Input[str]] = None,
338
352
  __props__=None):
339
353
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -356,6 +370,7 @@ class Provider(pulumi.ProviderResource):
356
370
  __props__.__dict__["region"] = region
357
371
  __props__.__dict__["retry_duration_seconds"] = pulumi.Output.from_input(retry_duration_seconds).apply(pulumi.runtime.to_json) if retry_duration_seconds is not None else None
358
372
  __props__.__dict__["tenancy_ocid"] = tenancy_ocid
373
+ __props__.__dict__["test_time_maintenance_reboot_due"] = test_time_maintenance_reboot_due
359
374
  __props__.__dict__["user_ocid"] = user_ocid
360
375
  secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["privateKey", "privateKeyPassword"])
361
376
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
@@ -434,6 +449,11 @@ class Provider(pulumi.ProviderResource):
434
449
  """
435
450
  return pulumi.get(self, "tenancy_ocid")
436
451
 
452
+ @property
453
+ @pulumi.getter(name="testTimeMaintenanceRebootDue")
454
+ def test_time_maintenance_reboot_due(self) -> pulumi.Output[Optional[str]]:
455
+ return pulumi.get(self, "test_time_maintenance_reboot_due")
456
+
437
457
  @property
438
458
  @pulumi.getter(name="userOcid")
439
459
  def user_ocid(self) -> pulumi.Output[Optional[str]]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.25.0-alpha.1740032973"
4
+ "version": "2.25.0-alpha.1740096539"
5
5
  }
@@ -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