pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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.
- pulumi_oci/__init__.py +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
pulumi_oci/monitoring/outputs.py
CHANGED
@@ -19,6 +19,7 @@ __all__ = [
|
|
19
19
|
'AlarmOverride',
|
20
20
|
'AlarmSuppression',
|
21
21
|
'AlarmSuppressionAlarmSuppressionTarget',
|
22
|
+
'AlarmSuppressionSuppressionCondition',
|
22
23
|
'GetAlarmHistoryCollectionEntryResult',
|
23
24
|
'GetAlarmOverrideResult',
|
24
25
|
'GetAlarmStatusesAlarmStatusResult',
|
@@ -26,9 +27,11 @@ __all__ = [
|
|
26
27
|
'GetAlarmStatusesFilterResult',
|
27
28
|
'GetAlarmSuppressionResult',
|
28
29
|
'GetAlarmSuppressionAlarmSuppressionTargetResult',
|
30
|
+
'GetAlarmSuppressionSuppressionConditionResult',
|
29
31
|
'GetAlarmSuppressionsAlarmSuppressionCollectionResult',
|
30
32
|
'GetAlarmSuppressionsAlarmSuppressionCollectionItemResult',
|
31
33
|
'GetAlarmSuppressionsAlarmSuppressionCollectionItemAlarmSuppressionTargetResult',
|
34
|
+
'GetAlarmSuppressionsAlarmSuppressionCollectionItemSuppressionConditionResult',
|
32
35
|
'GetAlarmSuppressionsFilterResult',
|
33
36
|
'GetAlarmsAlarmResult',
|
34
37
|
'GetAlarmsAlarmOverrideResult',
|
@@ -260,10 +263,14 @@ class AlarmSuppressionAlarmSuppressionTarget(dict):
|
|
260
263
|
@staticmethod
|
261
264
|
def __key_warning(key: str):
|
262
265
|
suggest = None
|
263
|
-
if key == "
|
264
|
-
suggest = "alarm_id"
|
265
|
-
elif key == "targetType":
|
266
|
+
if key == "targetType":
|
266
267
|
suggest = "target_type"
|
268
|
+
elif key == "alarmId":
|
269
|
+
suggest = "alarm_id"
|
270
|
+
elif key == "compartmentId":
|
271
|
+
suggest = "compartment_id"
|
272
|
+
elif key == "compartmentIdInSubtree":
|
273
|
+
suggest = "compartment_id_in_subtree"
|
267
274
|
|
268
275
|
if suggest:
|
269
276
|
pulumi.log.warn(f"Key '{key}' not found in AlarmSuppressionAlarmSuppressionTarget. Access the value via the '{suggest}' property getter instead.")
|
@@ -277,30 +284,122 @@ class AlarmSuppressionAlarmSuppressionTarget(dict):
|
|
277
284
|
return super().get(key, default)
|
278
285
|
|
279
286
|
def __init__(__self__, *,
|
280
|
-
|
281
|
-
|
287
|
+
target_type: str,
|
288
|
+
alarm_id: Optional[str] = None,
|
289
|
+
compartment_id: Optional[str] = None,
|
290
|
+
compartment_id_in_subtree: Optional[bool] = None):
|
282
291
|
"""
|
283
|
-
:param str alarm_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
284
292
|
:param str target_type: The type of the alarm suppression target.
|
293
|
+
:param str alarm_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
294
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment or tenancy that is the target of the alarm suppression. Example: `ocid1.compartment.oc1..exampleuniqueID`
|
295
|
+
:param bool compartment_id_in_subtree: When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
|
285
296
|
"""
|
286
|
-
pulumi.set(__self__, "alarm_id", alarm_id)
|
287
297
|
pulumi.set(__self__, "target_type", target_type)
|
298
|
+
if alarm_id is not None:
|
299
|
+
pulumi.set(__self__, "alarm_id", alarm_id)
|
300
|
+
if compartment_id is not None:
|
301
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
302
|
+
if compartment_id_in_subtree is not None:
|
303
|
+
pulumi.set(__self__, "compartment_id_in_subtree", compartment_id_in_subtree)
|
304
|
+
|
305
|
+
@property
|
306
|
+
@pulumi.getter(name="targetType")
|
307
|
+
def target_type(self) -> str:
|
308
|
+
"""
|
309
|
+
The type of the alarm suppression target.
|
310
|
+
"""
|
311
|
+
return pulumi.get(self, "target_type")
|
288
312
|
|
289
313
|
@property
|
290
314
|
@pulumi.getter(name="alarmId")
|
291
|
-
def alarm_id(self) -> str:
|
315
|
+
def alarm_id(self) -> Optional[str]:
|
292
316
|
"""
|
293
317
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
294
318
|
"""
|
295
319
|
return pulumi.get(self, "alarm_id")
|
296
320
|
|
297
321
|
@property
|
298
|
-
@pulumi.getter(name="
|
299
|
-
def
|
322
|
+
@pulumi.getter(name="compartmentId")
|
323
|
+
def compartment_id(self) -> Optional[str]:
|
300
324
|
"""
|
301
|
-
The
|
325
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment or tenancy that is the target of the alarm suppression. Example: `ocid1.compartment.oc1..exampleuniqueID`
|
302
326
|
"""
|
303
|
-
return pulumi.get(self, "
|
327
|
+
return pulumi.get(self, "compartment_id")
|
328
|
+
|
329
|
+
@property
|
330
|
+
@pulumi.getter(name="compartmentIdInSubtree")
|
331
|
+
def compartment_id_in_subtree(self) -> Optional[bool]:
|
332
|
+
"""
|
333
|
+
When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
|
334
|
+
"""
|
335
|
+
return pulumi.get(self, "compartment_id_in_subtree")
|
336
|
+
|
337
|
+
|
338
|
+
@pulumi.output_type
|
339
|
+
class AlarmSuppressionSuppressionCondition(dict):
|
340
|
+
@staticmethod
|
341
|
+
def __key_warning(key: str):
|
342
|
+
suggest = None
|
343
|
+
if key == "conditionType":
|
344
|
+
suggest = "condition_type"
|
345
|
+
elif key == "suppressionDuration":
|
346
|
+
suggest = "suppression_duration"
|
347
|
+
elif key == "suppressionRecurrence":
|
348
|
+
suggest = "suppression_recurrence"
|
349
|
+
|
350
|
+
if suggest:
|
351
|
+
pulumi.log.warn(f"Key '{key}' not found in AlarmSuppressionSuppressionCondition. Access the value via the '{suggest}' property getter instead.")
|
352
|
+
|
353
|
+
def __getitem__(self, key: str) -> Any:
|
354
|
+
AlarmSuppressionSuppressionCondition.__key_warning(key)
|
355
|
+
return super().__getitem__(key)
|
356
|
+
|
357
|
+
def get(self, key: str, default = None) -> Any:
|
358
|
+
AlarmSuppressionSuppressionCondition.__key_warning(key)
|
359
|
+
return super().get(key, default)
|
360
|
+
|
361
|
+
def __init__(__self__, *,
|
362
|
+
condition_type: str,
|
363
|
+
suppression_duration: str,
|
364
|
+
suppression_recurrence: str):
|
365
|
+
"""
|
366
|
+
:param str condition_type: Type of suppression condition.
|
367
|
+
:param str suppression_duration: Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: `PT1M` (1 minute). Maximum: `PT24H` (24 hours).
|
368
|
+
:param str suppression_recurrence: Frequency and start time of the recurring suppression. The format follows [the iCalendar specification (RFC 5545, section 3.3.10)](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported rule parts:
|
369
|
+
* `FREQ`: Frequency of the recurring suppression: `WEEKLY` or `DAILY` only.
|
370
|
+
* `BYDAY`: Comma separated days. Use with weekly suppressions only. Supported values: `MO`, `TU`, `WE`, `TH`, `FR`, `SA` ,`SU`.
|
371
|
+
* `BYHOUR`, `BYMINUTE`, `BYSECOND`: Start time in UTC, after `timeSuppressFrom` value. Default is 00:00:00 UTC after `timeSuppressFrom`.
|
372
|
+
"""
|
373
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
374
|
+
pulumi.set(__self__, "suppression_duration", suppression_duration)
|
375
|
+
pulumi.set(__self__, "suppression_recurrence", suppression_recurrence)
|
376
|
+
|
377
|
+
@property
|
378
|
+
@pulumi.getter(name="conditionType")
|
379
|
+
def condition_type(self) -> str:
|
380
|
+
"""
|
381
|
+
Type of suppression condition.
|
382
|
+
"""
|
383
|
+
return pulumi.get(self, "condition_type")
|
384
|
+
|
385
|
+
@property
|
386
|
+
@pulumi.getter(name="suppressionDuration")
|
387
|
+
def suppression_duration(self) -> str:
|
388
|
+
"""
|
389
|
+
Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: `PT1M` (1 minute). Maximum: `PT24H` (24 hours).
|
390
|
+
"""
|
391
|
+
return pulumi.get(self, "suppression_duration")
|
392
|
+
|
393
|
+
@property
|
394
|
+
@pulumi.getter(name="suppressionRecurrence")
|
395
|
+
def suppression_recurrence(self) -> str:
|
396
|
+
"""
|
397
|
+
Frequency and start time of the recurring suppression. The format follows [the iCalendar specification (RFC 5545, section 3.3.10)](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported rule parts:
|
398
|
+
* `FREQ`: Frequency of the recurring suppression: `WEEKLY` or `DAILY` only.
|
399
|
+
* `BYDAY`: Comma separated days. Use with weekly suppressions only. Supported values: `MO`, `TU`, `WE`, `TH`, `FR`, `SA` ,`SU`.
|
400
|
+
* `BYHOUR`, `BYMINUTE`, `BYSECOND`: Start time in UTC, after `timeSuppressFrom` value. Default is 00:00:00 UTC after `timeSuppressFrom`.
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "suppression_recurrence")
|
304
403
|
|
305
404
|
|
306
405
|
@pulumi.output_type
|
@@ -622,12 +721,18 @@ class GetAlarmSuppressionResult(dict):
|
|
622
721
|
class GetAlarmSuppressionAlarmSuppressionTargetResult(dict):
|
623
722
|
def __init__(__self__, *,
|
624
723
|
alarm_id: str,
|
724
|
+
compartment_id: str,
|
725
|
+
compartment_id_in_subtree: bool,
|
625
726
|
target_type: str):
|
626
727
|
"""
|
627
728
|
:param str alarm_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
729
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the alarm suppression.
|
730
|
+
:param bool compartment_id_in_subtree: When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
|
628
731
|
:param str target_type: The type of the alarm suppression target.
|
629
732
|
"""
|
630
733
|
pulumi.set(__self__, "alarm_id", alarm_id)
|
734
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
735
|
+
pulumi.set(__self__, "compartment_id_in_subtree", compartment_id_in_subtree)
|
631
736
|
pulumi.set(__self__, "target_type", target_type)
|
632
737
|
|
633
738
|
@property
|
@@ -638,6 +743,22 @@ class GetAlarmSuppressionAlarmSuppressionTargetResult(dict):
|
|
638
743
|
"""
|
639
744
|
return pulumi.get(self, "alarm_id")
|
640
745
|
|
746
|
+
@property
|
747
|
+
@pulumi.getter(name="compartmentId")
|
748
|
+
def compartment_id(self) -> str:
|
749
|
+
"""
|
750
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the alarm suppression.
|
751
|
+
"""
|
752
|
+
return pulumi.get(self, "compartment_id")
|
753
|
+
|
754
|
+
@property
|
755
|
+
@pulumi.getter(name="compartmentIdInSubtree")
|
756
|
+
def compartment_id_in_subtree(self) -> bool:
|
757
|
+
"""
|
758
|
+
When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
|
759
|
+
"""
|
760
|
+
return pulumi.get(self, "compartment_id_in_subtree")
|
761
|
+
|
641
762
|
@property
|
642
763
|
@pulumi.getter(name="targetType")
|
643
764
|
def target_type(self) -> str:
|
@@ -647,6 +768,52 @@ class GetAlarmSuppressionAlarmSuppressionTargetResult(dict):
|
|
647
768
|
return pulumi.get(self, "target_type")
|
648
769
|
|
649
770
|
|
771
|
+
@pulumi.output_type
|
772
|
+
class GetAlarmSuppressionSuppressionConditionResult(dict):
|
773
|
+
def __init__(__self__, *,
|
774
|
+
condition_type: str,
|
775
|
+
suppression_duration: str,
|
776
|
+
suppression_recurrence: str):
|
777
|
+
"""
|
778
|
+
:param str condition_type: Type of suppression condition.
|
779
|
+
:param str suppression_duration: Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: `PT1M` (1 minute). Maximum: `PT24H` (24 hours).
|
780
|
+
:param str suppression_recurrence: Frequency and start time of the recurring suppression. The format follows [the iCalendar specification (RFC 5545, section 3.3.10)](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported rule parts:
|
781
|
+
* `FREQ`: Frequency of the recurring suppression: `WEEKLY` or `DAILY` only.
|
782
|
+
* `BYDAY`: Comma separated days. Use with weekly suppressions only. Supported values: `MO`, `TU`, `WE`, `TH`, `FR`, `SA` ,`SU`.
|
783
|
+
* `BYHOUR`, `BYMINUTE`, `BYSECOND`: Start time in UTC, after `timeSuppressFrom` value. Default is 00:00:00 UTC after `timeSuppressFrom`.
|
784
|
+
"""
|
785
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
786
|
+
pulumi.set(__self__, "suppression_duration", suppression_duration)
|
787
|
+
pulumi.set(__self__, "suppression_recurrence", suppression_recurrence)
|
788
|
+
|
789
|
+
@property
|
790
|
+
@pulumi.getter(name="conditionType")
|
791
|
+
def condition_type(self) -> str:
|
792
|
+
"""
|
793
|
+
Type of suppression condition.
|
794
|
+
"""
|
795
|
+
return pulumi.get(self, "condition_type")
|
796
|
+
|
797
|
+
@property
|
798
|
+
@pulumi.getter(name="suppressionDuration")
|
799
|
+
def suppression_duration(self) -> str:
|
800
|
+
"""
|
801
|
+
Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: `PT1M` (1 minute). Maximum: `PT24H` (24 hours).
|
802
|
+
"""
|
803
|
+
return pulumi.get(self, "suppression_duration")
|
804
|
+
|
805
|
+
@property
|
806
|
+
@pulumi.getter(name="suppressionRecurrence")
|
807
|
+
def suppression_recurrence(self) -> str:
|
808
|
+
"""
|
809
|
+
Frequency and start time of the recurring suppression. The format follows [the iCalendar specification (RFC 5545, section 3.3.10)](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported rule parts:
|
810
|
+
* `FREQ`: Frequency of the recurring suppression: `WEEKLY` or `DAILY` only.
|
811
|
+
* `BYDAY`: Comma separated days. Use with weekly suppressions only. Supported values: `MO`, `TU`, `WE`, `TH`, `FR`, `SA` ,`SU`.
|
812
|
+
* `BYHOUR`, `BYMINUTE`, `BYSECOND`: Start time in UTC, after `timeSuppressFrom` value. Default is 00:00:00 UTC after `timeSuppressFrom`.
|
813
|
+
"""
|
814
|
+
return pulumi.get(self, "suppression_recurrence")
|
815
|
+
|
816
|
+
|
650
817
|
@pulumi.output_type
|
651
818
|
class GetAlarmSuppressionsAlarmSuppressionCollectionResult(dict):
|
652
819
|
def __init__(__self__, *,
|
@@ -670,21 +837,29 @@ class GetAlarmSuppressionsAlarmSuppressionCollectionItemResult(dict):
|
|
670
837
|
display_name: str,
|
671
838
|
freeform_tags: Mapping[str, str],
|
672
839
|
id: str,
|
840
|
+
level: str,
|
673
841
|
state: str,
|
842
|
+
suppression_conditions: Sequence['outputs.GetAlarmSuppressionsAlarmSuppressionCollectionItemSuppressionConditionResult'],
|
674
843
|
time_created: str,
|
675
844
|
time_suppress_from: str,
|
676
845
|
time_suppress_until: str,
|
677
846
|
time_updated: str):
|
678
847
|
"""
|
679
848
|
:param Sequence['GetAlarmSuppressionsAlarmSuppressionCollectionItemAlarmSuppressionTargetArgs'] alarm_suppression_targets: The target of the alarm suppression.
|
680
|
-
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment
|
849
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for searching. Use the tenancy OCID to search in the root compartment.
|
850
|
+
|
851
|
+
If targetType is not specified, searches all suppressions defined under the compartment. If targetType is `COMPARTMENT`, searches suppressions in the specified compartment only.
|
852
|
+
|
853
|
+
Example: `ocid1.compartment.oc1..exampleuniqueID`
|
681
854
|
:param Mapping[str, str] defined_tags: Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"Operations.CostCenter": "42"}`
|
682
855
|
:param str description: Human-readable reason for this alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
|
683
856
|
:param Mapping[str, str] dimensions: Configured dimension filter for suppressing alarm state entries that include the set of specified dimension key-value pairs. Example: `{"resourceId": "instance.region1.phx.exampleuniqueID"}`
|
684
|
-
:param str display_name: A filter to return only resources that match the given display name exactly. Use this filter to list
|
857
|
+
:param str display_name: A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
|
685
858
|
:param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"Department": "Finance"}`
|
686
859
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm suppression.
|
860
|
+
:param str level: The level of this alarm suppression. `ALARM` indicates a suppression of the entire alarm, regardless of dimension. `DIMENSION` indicates a suppression configured for specified dimensions.
|
687
861
|
:param str state: A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
|
862
|
+
:param Sequence['GetAlarmSuppressionsAlarmSuppressionCollectionItemSuppressionConditionArgs'] suppression_conditions: Array of all preconditions for alarm suppression. Example: `[{ conditionType: "RECURRENCE", suppressionRecurrence: "FRQ=DAILY;BYHOUR=10", suppressionDuration: "PT1H" }]`
|
688
863
|
:param str time_created: The date and time the alarm suppression was created. Format defined by RFC3339. Example: `2018-02-01T01:02:29.600Z`
|
689
864
|
:param str time_suppress_from: The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `2018-02-01T01:02:29.600Z`
|
690
865
|
:param str time_suppress_until: The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `2018-02-01T02:02:29.600Z`
|
@@ -698,7 +873,9 @@ class GetAlarmSuppressionsAlarmSuppressionCollectionItemResult(dict):
|
|
698
873
|
pulumi.set(__self__, "display_name", display_name)
|
699
874
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
700
875
|
pulumi.set(__self__, "id", id)
|
876
|
+
pulumi.set(__self__, "level", level)
|
701
877
|
pulumi.set(__self__, "state", state)
|
878
|
+
pulumi.set(__self__, "suppression_conditions", suppression_conditions)
|
702
879
|
pulumi.set(__self__, "time_created", time_created)
|
703
880
|
pulumi.set(__self__, "time_suppress_from", time_suppress_from)
|
704
881
|
pulumi.set(__self__, "time_suppress_until", time_suppress_until)
|
@@ -716,7 +893,11 @@ class GetAlarmSuppressionsAlarmSuppressionCollectionItemResult(dict):
|
|
716
893
|
@pulumi.getter(name="compartmentId")
|
717
894
|
def compartment_id(self) -> str:
|
718
895
|
"""
|
719
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment
|
896
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for searching. Use the tenancy OCID to search in the root compartment.
|
897
|
+
|
898
|
+
If targetType is not specified, searches all suppressions defined under the compartment. If targetType is `COMPARTMENT`, searches suppressions in the specified compartment only.
|
899
|
+
|
900
|
+
Example: `ocid1.compartment.oc1..exampleuniqueID`
|
720
901
|
"""
|
721
902
|
return pulumi.get(self, "compartment_id")
|
722
903
|
|
@@ -748,7 +929,7 @@ class GetAlarmSuppressionsAlarmSuppressionCollectionItemResult(dict):
|
|
748
929
|
@pulumi.getter(name="displayName")
|
749
930
|
def display_name(self) -> str:
|
750
931
|
"""
|
751
|
-
A filter to return only resources that match the given display name exactly. Use this filter to list
|
932
|
+
A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
|
752
933
|
"""
|
753
934
|
return pulumi.get(self, "display_name")
|
754
935
|
|
@@ -768,6 +949,14 @@ class GetAlarmSuppressionsAlarmSuppressionCollectionItemResult(dict):
|
|
768
949
|
"""
|
769
950
|
return pulumi.get(self, "id")
|
770
951
|
|
952
|
+
@property
|
953
|
+
@pulumi.getter
|
954
|
+
def level(self) -> str:
|
955
|
+
"""
|
956
|
+
The level of this alarm suppression. `ALARM` indicates a suppression of the entire alarm, regardless of dimension. `DIMENSION` indicates a suppression configured for specified dimensions.
|
957
|
+
"""
|
958
|
+
return pulumi.get(self, "level")
|
959
|
+
|
771
960
|
@property
|
772
961
|
@pulumi.getter
|
773
962
|
def state(self) -> str:
|
@@ -776,6 +965,14 @@ class GetAlarmSuppressionsAlarmSuppressionCollectionItemResult(dict):
|
|
776
965
|
"""
|
777
966
|
return pulumi.get(self, "state")
|
778
967
|
|
968
|
+
@property
|
969
|
+
@pulumi.getter(name="suppressionConditions")
|
970
|
+
def suppression_conditions(self) -> Sequence['outputs.GetAlarmSuppressionsAlarmSuppressionCollectionItemSuppressionConditionResult']:
|
971
|
+
"""
|
972
|
+
Array of all preconditions for alarm suppression. Example: `[{ conditionType: "RECURRENCE", suppressionRecurrence: "FRQ=DAILY;BYHOUR=10", suppressionDuration: "PT1H" }]`
|
973
|
+
"""
|
974
|
+
return pulumi.get(self, "suppression_conditions")
|
975
|
+
|
779
976
|
@property
|
780
977
|
@pulumi.getter(name="timeCreated")
|
781
978
|
def time_created(self) -> str:
|
@@ -813,12 +1010,22 @@ class GetAlarmSuppressionsAlarmSuppressionCollectionItemResult(dict):
|
|
813
1010
|
class GetAlarmSuppressionsAlarmSuppressionCollectionItemAlarmSuppressionTargetResult(dict):
|
814
1011
|
def __init__(__self__, *,
|
815
1012
|
alarm_id: str,
|
1013
|
+
compartment_id: str,
|
1014
|
+
compartment_id_in_subtree: bool,
|
816
1015
|
target_type: str):
|
817
1016
|
"""
|
818
1017
|
:param str alarm_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
819
|
-
:param str
|
1018
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for searching. Use the tenancy OCID to search in the root compartment.
|
1019
|
+
|
1020
|
+
If targetType is not specified, searches all suppressions defined under the compartment. If targetType is `COMPARTMENT`, searches suppressions in the specified compartment only.
|
1021
|
+
|
1022
|
+
Example: `ocid1.compartment.oc1..exampleuniqueID`
|
1023
|
+
:param bool compartment_id_in_subtree: When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
|
1024
|
+
:param str target_type: The target type to use when listing alarm suppressions. `ALARM` lists all suppression records for the specified alarm. `COMPARTMENT` lists all suppression records for the specified compartment or tenancy.
|
820
1025
|
"""
|
821
1026
|
pulumi.set(__self__, "alarm_id", alarm_id)
|
1027
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
1028
|
+
pulumi.set(__self__, "compartment_id_in_subtree", compartment_id_in_subtree)
|
822
1029
|
pulumi.set(__self__, "target_type", target_type)
|
823
1030
|
|
824
1031
|
@property
|
@@ -829,15 +1036,81 @@ class GetAlarmSuppressionsAlarmSuppressionCollectionItemAlarmSuppressionTargetRe
|
|
829
1036
|
"""
|
830
1037
|
return pulumi.get(self, "alarm_id")
|
831
1038
|
|
1039
|
+
@property
|
1040
|
+
@pulumi.getter(name="compartmentId")
|
1041
|
+
def compartment_id(self) -> str:
|
1042
|
+
"""
|
1043
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for searching. Use the tenancy OCID to search in the root compartment.
|
1044
|
+
|
1045
|
+
If targetType is not specified, searches all suppressions defined under the compartment. If targetType is `COMPARTMENT`, searches suppressions in the specified compartment only.
|
1046
|
+
|
1047
|
+
Example: `ocid1.compartment.oc1..exampleuniqueID`
|
1048
|
+
"""
|
1049
|
+
return pulumi.get(self, "compartment_id")
|
1050
|
+
|
1051
|
+
@property
|
1052
|
+
@pulumi.getter(name="compartmentIdInSubtree")
|
1053
|
+
def compartment_id_in_subtree(self) -> bool:
|
1054
|
+
"""
|
1055
|
+
When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
|
1056
|
+
"""
|
1057
|
+
return pulumi.get(self, "compartment_id_in_subtree")
|
1058
|
+
|
832
1059
|
@property
|
833
1060
|
@pulumi.getter(name="targetType")
|
834
1061
|
def target_type(self) -> str:
|
835
1062
|
"""
|
836
|
-
The type
|
1063
|
+
The target type to use when listing alarm suppressions. `ALARM` lists all suppression records for the specified alarm. `COMPARTMENT` lists all suppression records for the specified compartment or tenancy.
|
837
1064
|
"""
|
838
1065
|
return pulumi.get(self, "target_type")
|
839
1066
|
|
840
1067
|
|
1068
|
+
@pulumi.output_type
|
1069
|
+
class GetAlarmSuppressionsAlarmSuppressionCollectionItemSuppressionConditionResult(dict):
|
1070
|
+
def __init__(__self__, *,
|
1071
|
+
condition_type: str,
|
1072
|
+
suppression_duration: str,
|
1073
|
+
suppression_recurrence: str):
|
1074
|
+
"""
|
1075
|
+
:param str condition_type: Type of suppression condition.
|
1076
|
+
:param str suppression_duration: Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: `PT1M` (1 minute). Maximum: `PT24H` (24 hours).
|
1077
|
+
:param str suppression_recurrence: Frequency and start time of the recurring suppression. The format follows [the iCalendar specification (RFC 5545, section 3.3.10)](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported rule parts:
|
1078
|
+
* `FREQ`: Frequency of the recurring suppression: `WEEKLY` or `DAILY` only.
|
1079
|
+
* `BYDAY`: Comma separated days. Use with weekly suppressions only. Supported values: `MO`, `TU`, `WE`, `TH`, `FR`, `SA` ,`SU`.
|
1080
|
+
* `BYHOUR`, `BYMINUTE`, `BYSECOND`: Start time in UTC, after `timeSuppressFrom` value. Default is 00:00:00 UTC after `timeSuppressFrom`.
|
1081
|
+
"""
|
1082
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
1083
|
+
pulumi.set(__self__, "suppression_duration", suppression_duration)
|
1084
|
+
pulumi.set(__self__, "suppression_recurrence", suppression_recurrence)
|
1085
|
+
|
1086
|
+
@property
|
1087
|
+
@pulumi.getter(name="conditionType")
|
1088
|
+
def condition_type(self) -> str:
|
1089
|
+
"""
|
1090
|
+
Type of suppression condition.
|
1091
|
+
"""
|
1092
|
+
return pulumi.get(self, "condition_type")
|
1093
|
+
|
1094
|
+
@property
|
1095
|
+
@pulumi.getter(name="suppressionDuration")
|
1096
|
+
def suppression_duration(self) -> str:
|
1097
|
+
"""
|
1098
|
+
Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: `PT1M` (1 minute). Maximum: `PT24H` (24 hours).
|
1099
|
+
"""
|
1100
|
+
return pulumi.get(self, "suppression_duration")
|
1101
|
+
|
1102
|
+
@property
|
1103
|
+
@pulumi.getter(name="suppressionRecurrence")
|
1104
|
+
def suppression_recurrence(self) -> str:
|
1105
|
+
"""
|
1106
|
+
Frequency and start time of the recurring suppression. The format follows [the iCalendar specification (RFC 5545, section 3.3.10)](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported rule parts:
|
1107
|
+
* `FREQ`: Frequency of the recurring suppression: `WEEKLY` or `DAILY` only.
|
1108
|
+
* `BYDAY`: Comma separated days. Use with weekly suppressions only. Supported values: `MO`, `TU`, `WE`, `TH`, `FR`, `SA` ,`SU`.
|
1109
|
+
* `BYHOUR`, `BYMINUTE`, `BYSECOND`: Start time in UTC, after `timeSuppressFrom` value. Default is 00:00:00 UTC after `timeSuppressFrom`.
|
1110
|
+
"""
|
1111
|
+
return pulumi.get(self, "suppression_recurrence")
|
1112
|
+
|
1113
|
+
|
841
1114
|
@pulumi.output_type
|
842
1115
|
class GetAlarmSuppressionsFilterResult(dict):
|
843
1116
|
def __init__(__self__, *,
|
@@ -81,7 +81,7 @@ class MysqlDbSystemArgs:
|
|
81
81
|
|
82
82
|
For a standalone DB System, this defines the fault domain in which the DB System is placed.
|
83
83
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
84
|
-
:param pulumi.Input[str] hostname_label: The hostname for the primary endpoint of the DB System. Used for DNS.
|
84
|
+
:param pulumi.Input[str] hostname_label: (Updatable) The hostname for the primary endpoint of the DB System. Used for DNS.
|
85
85
|
|
86
86
|
The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com").
|
87
87
|
|
@@ -400,7 +400,7 @@ class MysqlDbSystemArgs:
|
|
400
400
|
@pulumi.getter(name="hostnameLabel")
|
401
401
|
def hostname_label(self) -> Optional[pulumi.Input[str]]:
|
402
402
|
"""
|
403
|
-
The hostname for the primary endpoint of the DB System. Used for DNS.
|
403
|
+
(Updatable) The hostname for the primary endpoint of the DB System. Used for DNS.
|
404
404
|
|
405
405
|
The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com").
|
406
406
|
|
@@ -611,7 +611,7 @@ class _MysqlDbSystemState:
|
|
611
611
|
For a standalone DB System, this defines the fault domain in which the DB System is placed.
|
612
612
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
613
613
|
:param pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemHeatWaveClusterArgs']]] heat_wave_clusters: A summary of a HeatWave cluster.
|
614
|
-
:param pulumi.Input[str] hostname_label: The hostname for the primary endpoint of the DB System. Used for DNS.
|
614
|
+
:param pulumi.Input[str] hostname_label: (Updatable) The hostname for the primary endpoint of the DB System. Used for DNS.
|
615
615
|
|
616
616
|
The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com").
|
617
617
|
|
@@ -983,7 +983,7 @@ class _MysqlDbSystemState:
|
|
983
983
|
@pulumi.getter(name="hostnameLabel")
|
984
984
|
def hostname_label(self) -> Optional[pulumi.Input[str]]:
|
985
985
|
"""
|
986
|
-
The hostname for the primary endpoint of the DB System. Used for DNS.
|
986
|
+
(Updatable) The hostname for the primary endpoint of the DB System. Used for DNS.
|
987
987
|
|
988
988
|
The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com").
|
989
989
|
|
@@ -1352,7 +1352,7 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1352
1352
|
|
1353
1353
|
For a standalone DB System, this defines the fault domain in which the DB System is placed.
|
1354
1354
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1355
|
-
:param pulumi.Input[str] hostname_label: The hostname for the primary endpoint of the DB System. Used for DNS.
|
1355
|
+
:param pulumi.Input[str] hostname_label: (Updatable) The hostname for the primary endpoint of the DB System. Used for DNS.
|
1356
1356
|
|
1357
1357
|
The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com").
|
1358
1358
|
|
@@ -1653,7 +1653,7 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1653
1653
|
For a standalone DB System, this defines the fault domain in which the DB System is placed.
|
1654
1654
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1655
1655
|
:param pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemHeatWaveClusterArgs', 'MysqlDbSystemHeatWaveClusterArgsDict']]]] heat_wave_clusters: A summary of a HeatWave cluster.
|
1656
|
-
:param pulumi.Input[str] hostname_label: The hostname for the primary endpoint of the DB System. Used for DNS.
|
1656
|
+
:param pulumi.Input[str] hostname_label: (Updatable) The hostname for the primary endpoint of the DB System. Used for DNS.
|
1657
1657
|
|
1658
1658
|
The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com").
|
1659
1659
|
|
@@ -1907,7 +1907,7 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1907
1907
|
@pulumi.getter(name="hostnameLabel")
|
1908
1908
|
def hostname_label(self) -> pulumi.Output[str]:
|
1909
1909
|
"""
|
1910
|
-
The hostname for the primary endpoint of the DB System. Used for DNS.
|
1910
|
+
(Updatable) The hostname for the primary endpoint of the DB System. Used for DNS.
|
1911
1911
|
|
1912
1912
|
The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com").
|
1913
1913
|
|
@@ -17,12 +17,15 @@ from .get_object_versions import *
|
|
17
17
|
from .get_objects import *
|
18
18
|
from .get_preauthrequest import *
|
19
19
|
from .get_preauthrequests import *
|
20
|
+
from .get_private_endpoint import *
|
21
|
+
from .get_private_endpoint_summaries import *
|
20
22
|
from .get_replication_policies import *
|
21
23
|
from .get_replication_policy import *
|
22
24
|
from .get_replication_sources import *
|
23
25
|
from .namespace_metadata import *
|
24
26
|
from .object_lifecycle_policy import *
|
25
27
|
from .preauthrequest import *
|
28
|
+
from .private_endpoint import *
|
26
29
|
from .replication_policy import *
|
27
30
|
from .storage_object import *
|
28
31
|
from ._inputs import *
|