pulumi-oci 2.5.0a1722062014__py3-none-any.whl → 2.5.0a1722606028__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 +59 -32
- pulumi_oci/bigdataservice/bds_instance.py +47 -0
- pulumi_oci/bigdataservice/get_bds_instance.py +11 -1
- pulumi_oci/bigdataservice/outputs.py +7 -0
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +40 -0
- pulumi_oci/core/get_instance_maintenance_event.py +414 -0
- pulumi_oci/core/get_instance_maintenance_events.py +250 -0
- pulumi_oci/core/instance_maintenance_event.py +1022 -0
- pulumi_oci/core/outputs.py +314 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/outputs.py +22 -0
- pulumi_oci/databasemigration/_inputs.py +184 -0
- pulumi_oci/databasemigration/job.py +99 -24
- pulumi_oci/databasemigration/outputs.py +171 -0
- pulumi_oci/datasafe/__init__.py +2 -4
- pulumi_oci/datasafe/_inputs.py +55 -0
- pulumi_oci/datasafe/alert.py +56 -0
- pulumi_oci/datasafe/alert_policy.py +745 -0
- pulumi_oci/datasafe/alert_policy_rule.py +446 -0
- pulumi_oci/datasafe/get_alert.py +27 -1
- pulumi_oci/datasafe/get_alert_policy.py +26 -2
- pulumi_oci/datasafe/get_alert_policy_rule.py +94 -18
- pulumi_oci/datasafe/get_report.py +14 -1
- pulumi_oci/datasafe/get_report_definition.py +14 -1
- pulumi_oci/datasafe/get_target_alert_policy_association.py +15 -2
- pulumi_oci/datasafe/outputs.py +231 -27
- pulumi_oci/datasafe/report.py +28 -0
- pulumi_oci/datasafe/report_definition.py +28 -0
- pulumi_oci/datasafe/target_alert_policy_association.py +28 -0
- pulumi_oci/fleetsoftwareupdate/__init__.py +15 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +553 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +514 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +812 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +225 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +141 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +325 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +167 -0
- pulumi_oci/fleetsoftwareupdate/outputs.py +1481 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +3 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +3 -0
- pulumi_oci/generativeai/get_endpoint.py +6 -9
- pulumi_oci/generativeai/get_endpoints.py +3 -3
- pulumi_oci/generativeai/get_model.py +36 -6
- pulumi_oci/generativeai/get_models.py +6 -0
- pulumi_oci/generativeai/outputs.py +228 -16
- pulumi_oci/identity/__init__.py +3 -0
- pulumi_oci/identity/_inputs.py +1029 -0
- pulumi_oci/identity/domains_social_identity_provider.py +4628 -0
- pulumi_oci/identity/get_domains_social_identity_provider.py +664 -0
- pulumi_oci/identity/get_domains_social_identity_providers.py +276 -0
- pulumi_oci/identity/outputs.py +19544 -17378
- pulumi_oci/networkfirewall/__init__.py +3 -0
- pulumi_oci/networkfirewall/_inputs.py +150 -0
- pulumi_oci/networkfirewall/get_network_firewall_policy_tunnel_inspection_rule.py +227 -0
- pulumi_oci/networkfirewall/get_network_firewall_policy_tunnel_inspection_rules.py +167 -0
- pulumi_oci/networkfirewall/network_firewall_policy_tunnel_inspection_rule.py +605 -0
- pulumi_oci/networkfirewall/outputs.py +457 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/get_redis_cluster.py +1 -1
- pulumi_oci/redis/outputs.py +2 -2
- pulumi_oci/redis/redis_cluster.py +7 -7
- pulumi_oci/stackmonitoring/_inputs.py +2 -2
- pulumi_oci/stackmonitoring/baselineable_metric.py +76 -28
- pulumi_oci/stackmonitoring/get_baselineable_metric.py +14 -1
- pulumi_oci/stackmonitoring/get_baselineable_metrics.py +45 -5
- pulumi_oci/stackmonitoring/outputs.py +19 -8
- {pulumi_oci-2.5.0a1722062014.dist-info → pulumi_oci-2.5.0a1722606028.dist-info}/METADATA +1 -1
- {pulumi_oci-2.5.0a1722062014.dist-info → pulumi_oci-2.5.0a1722606028.dist-info}/RECORD +72 -56
- {pulumi_oci-2.5.0a1722062014.dist-info → pulumi_oci-2.5.0a1722606028.dist-info}/WHEEL +1 -1
- pulumi_oci/datasafe/masking_policy_health_report_management.py +0 -453
- pulumi_oci/datasafe/masking_report_management.py +0 -693
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +0 -304
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +0 -304
- {pulumi_oci-2.5.0a1722062014.dist-info → pulumi_oci-2.5.0a1722606028.dist-info}/top_level.txt +0 -0
pulumi_oci/datasafe/outputs.py
CHANGED
@@ -11,6 +11,7 @@ from .. import _utilities
|
|
11
11
|
from . import outputs
|
12
12
|
|
13
13
|
__all__ = [
|
14
|
+
'AlertPolicyAlertPolicyRuleDetail',
|
14
15
|
'AuditPolicyAuditCondition',
|
15
16
|
'AuditPolicyAuditConditionEnableCondition',
|
16
17
|
'AuditPolicyAuditSpecification',
|
@@ -56,8 +57,9 @@ __all__ = [
|
|
56
57
|
'GetAlertAnalyticItemDimensionResult',
|
57
58
|
'GetAlertPoliciesAlertPolicyCollectionResult',
|
58
59
|
'GetAlertPoliciesAlertPolicyCollectionItemResult',
|
60
|
+
'GetAlertPoliciesAlertPolicyCollectionItemAlertPolicyRuleDetailResult',
|
59
61
|
'GetAlertPoliciesFilterResult',
|
60
|
-
'
|
62
|
+
'GetAlertPolicyAlertPolicyRuleDetailResult',
|
61
63
|
'GetAlertPolicyRulesAlertPolicyRuleCollectionResult',
|
62
64
|
'GetAlertPolicyRulesAlertPolicyRuleCollectionItemResult',
|
63
65
|
'GetAlertPolicyRulesFilterResult',
|
@@ -368,6 +370,65 @@ __all__ = [
|
|
368
370
|
'GetUserAssessmentsUserAssessmentIgnoredTargetResult',
|
369
371
|
]
|
370
372
|
|
373
|
+
@pulumi.output_type
|
374
|
+
class AlertPolicyAlertPolicyRuleDetail(dict):
|
375
|
+
@staticmethod
|
376
|
+
def __key_warning(key: str):
|
377
|
+
suggest = None
|
378
|
+
if key == "displayName":
|
379
|
+
suggest = "display_name"
|
380
|
+
|
381
|
+
if suggest:
|
382
|
+
pulumi.log.warn(f"Key '{key}' not found in AlertPolicyAlertPolicyRuleDetail. Access the value via the '{suggest}' property getter instead.")
|
383
|
+
|
384
|
+
def __getitem__(self, key: str) -> Any:
|
385
|
+
AlertPolicyAlertPolicyRuleDetail.__key_warning(key)
|
386
|
+
return super().__getitem__(key)
|
387
|
+
|
388
|
+
def get(self, key: str, default = None) -> Any:
|
389
|
+
AlertPolicyAlertPolicyRuleDetail.__key_warning(key)
|
390
|
+
return super().get(key, default)
|
391
|
+
|
392
|
+
def __init__(__self__, *,
|
393
|
+
expression: str,
|
394
|
+
description: Optional[str] = None,
|
395
|
+
display_name: Optional[str] = None):
|
396
|
+
"""
|
397
|
+
:param str expression: The conditional expression of the alert policy rule which evaluates to boolean value.
|
398
|
+
:param str description: Describes the alert policy rule.
|
399
|
+
:param str display_name: The display name of the alert policy rule.
|
400
|
+
"""
|
401
|
+
pulumi.set(__self__, "expression", expression)
|
402
|
+
if description is not None:
|
403
|
+
pulumi.set(__self__, "description", description)
|
404
|
+
if display_name is not None:
|
405
|
+
pulumi.set(__self__, "display_name", display_name)
|
406
|
+
|
407
|
+
@property
|
408
|
+
@pulumi.getter
|
409
|
+
def expression(self) -> str:
|
410
|
+
"""
|
411
|
+
The conditional expression of the alert policy rule which evaluates to boolean value.
|
412
|
+
"""
|
413
|
+
return pulumi.get(self, "expression")
|
414
|
+
|
415
|
+
@property
|
416
|
+
@pulumi.getter
|
417
|
+
def description(self) -> Optional[str]:
|
418
|
+
"""
|
419
|
+
Describes the alert policy rule.
|
420
|
+
"""
|
421
|
+
return pulumi.get(self, "description")
|
422
|
+
|
423
|
+
@property
|
424
|
+
@pulumi.getter(name="displayName")
|
425
|
+
def display_name(self) -> Optional[str]:
|
426
|
+
"""
|
427
|
+
The display name of the alert policy rule.
|
428
|
+
"""
|
429
|
+
return pulumi.get(self, "display_name")
|
430
|
+
|
431
|
+
|
371
432
|
@pulumi.output_type
|
372
433
|
class AuditPolicyAuditCondition(dict):
|
373
434
|
@staticmethod
|
@@ -5398,6 +5459,7 @@ class GetAlertPoliciesAlertPolicyCollectionResult(dict):
|
|
5398
5459
|
@pulumi.output_type
|
5399
5460
|
class GetAlertPoliciesAlertPolicyCollectionItemResult(dict):
|
5400
5461
|
def __init__(__self__, *,
|
5462
|
+
alert_policy_rule_details: Sequence['outputs.GetAlertPoliciesAlertPolicyCollectionItemAlertPolicyRuleDetailResult'],
|
5401
5463
|
alert_policy_type: str,
|
5402
5464
|
compartment_id: str,
|
5403
5465
|
defined_tags: Mapping[str, Any],
|
@@ -5406,6 +5468,7 @@ class GetAlertPoliciesAlertPolicyCollectionItemResult(dict):
|
|
5406
5468
|
freeform_tags: Mapping[str, Any],
|
5407
5469
|
id: str,
|
5408
5470
|
is_user_defined: bool,
|
5471
|
+
lifecycle_details: str,
|
5409
5472
|
severity: str,
|
5410
5473
|
state: str,
|
5411
5474
|
system_tags: Mapping[str, Any],
|
@@ -5420,12 +5483,14 @@ class GetAlertPoliciesAlertPolicyCollectionItemResult(dict):
|
|
5420
5483
|
:param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
5421
5484
|
:param str id: The OCID of the alert policy.
|
5422
5485
|
:param bool is_user_defined: An optional filter to return only alert policies that are user-defined or not.
|
5486
|
+
:param str lifecycle_details: Details about the current state of the alert policy.
|
5423
5487
|
:param str severity: Severity level of the alert raised by this policy.
|
5424
5488
|
:param str state: An optional filter to return only alert policies that have the given life-cycle state.
|
5425
5489
|
:param Mapping[str, Any] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
5426
5490
|
:param str time_created: Creation date and time of the alert policy, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
5427
5491
|
:param str time_updated: Last date and time the alert policy was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
5428
5492
|
"""
|
5493
|
+
pulumi.set(__self__, "alert_policy_rule_details", alert_policy_rule_details)
|
5429
5494
|
pulumi.set(__self__, "alert_policy_type", alert_policy_type)
|
5430
5495
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
5431
5496
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -5434,12 +5499,18 @@ class GetAlertPoliciesAlertPolicyCollectionItemResult(dict):
|
|
5434
5499
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
5435
5500
|
pulumi.set(__self__, "id", id)
|
5436
5501
|
pulumi.set(__self__, "is_user_defined", is_user_defined)
|
5502
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
5437
5503
|
pulumi.set(__self__, "severity", severity)
|
5438
5504
|
pulumi.set(__self__, "state", state)
|
5439
5505
|
pulumi.set(__self__, "system_tags", system_tags)
|
5440
5506
|
pulumi.set(__self__, "time_created", time_created)
|
5441
5507
|
pulumi.set(__self__, "time_updated", time_updated)
|
5442
5508
|
|
5509
|
+
@property
|
5510
|
+
@pulumi.getter(name="alertPolicyRuleDetails")
|
5511
|
+
def alert_policy_rule_details(self) -> Sequence['outputs.GetAlertPoliciesAlertPolicyCollectionItemAlertPolicyRuleDetailResult']:
|
5512
|
+
return pulumi.get(self, "alert_policy_rule_details")
|
5513
|
+
|
5443
5514
|
@property
|
5444
5515
|
@pulumi.getter(name="alertPolicyType")
|
5445
5516
|
def alert_policy_type(self) -> str:
|
@@ -5504,6 +5575,14 @@ class GetAlertPoliciesAlertPolicyCollectionItemResult(dict):
|
|
5504
5575
|
"""
|
5505
5576
|
return pulumi.get(self, "is_user_defined")
|
5506
5577
|
|
5578
|
+
@property
|
5579
|
+
@pulumi.getter(name="lifecycleDetails")
|
5580
|
+
def lifecycle_details(self) -> str:
|
5581
|
+
"""
|
5582
|
+
Details about the current state of the alert policy.
|
5583
|
+
"""
|
5584
|
+
return pulumi.get(self, "lifecycle_details")
|
5585
|
+
|
5507
5586
|
@property
|
5508
5587
|
@pulumi.getter
|
5509
5588
|
def severity(self) -> str:
|
@@ -5545,6 +5624,42 @@ class GetAlertPoliciesAlertPolicyCollectionItemResult(dict):
|
|
5545
5624
|
return pulumi.get(self, "time_updated")
|
5546
5625
|
|
5547
5626
|
|
5627
|
+
@pulumi.output_type
|
5628
|
+
class GetAlertPoliciesAlertPolicyCollectionItemAlertPolicyRuleDetailResult(dict):
|
5629
|
+
def __init__(__self__, *,
|
5630
|
+
description: str,
|
5631
|
+
display_name: str,
|
5632
|
+
expression: str):
|
5633
|
+
"""
|
5634
|
+
:param str description: The description of the alert policy.
|
5635
|
+
:param str display_name: A filter to return only resources that match the specified display name.
|
5636
|
+
"""
|
5637
|
+
pulumi.set(__self__, "description", description)
|
5638
|
+
pulumi.set(__self__, "display_name", display_name)
|
5639
|
+
pulumi.set(__self__, "expression", expression)
|
5640
|
+
|
5641
|
+
@property
|
5642
|
+
@pulumi.getter
|
5643
|
+
def description(self) -> str:
|
5644
|
+
"""
|
5645
|
+
The description of the alert policy.
|
5646
|
+
"""
|
5647
|
+
return pulumi.get(self, "description")
|
5648
|
+
|
5649
|
+
@property
|
5650
|
+
@pulumi.getter(name="displayName")
|
5651
|
+
def display_name(self) -> str:
|
5652
|
+
"""
|
5653
|
+
A filter to return only resources that match the specified display name.
|
5654
|
+
"""
|
5655
|
+
return pulumi.get(self, "display_name")
|
5656
|
+
|
5657
|
+
@property
|
5658
|
+
@pulumi.getter
|
5659
|
+
def expression(self) -> str:
|
5660
|
+
return pulumi.get(self, "expression")
|
5661
|
+
|
5662
|
+
|
5548
5663
|
@pulumi.output_type
|
5549
5664
|
class GetAlertPoliciesFilterResult(dict):
|
5550
5665
|
def __init__(__self__, *,
|
@@ -5573,77 +5688,87 @@ class GetAlertPoliciesFilterResult(dict):
|
|
5573
5688
|
|
5574
5689
|
|
5575
5690
|
@pulumi.output_type
|
5576
|
-
class
|
5691
|
+
class GetAlertPolicyAlertPolicyRuleDetailResult(dict):
|
5577
5692
|
def __init__(__self__, *,
|
5578
5693
|
description: str,
|
5579
|
-
|
5580
|
-
|
5694
|
+
display_name: str,
|
5695
|
+
expression: str):
|
5581
5696
|
"""
|
5582
|
-
:param str description:
|
5583
|
-
:param str
|
5584
|
-
:param str key: The unique key of the alert policy rule.
|
5697
|
+
:param str description: The description of the alert policy.
|
5698
|
+
:param str display_name: The display name of the alert policy.
|
5585
5699
|
"""
|
5586
5700
|
pulumi.set(__self__, "description", description)
|
5701
|
+
pulumi.set(__self__, "display_name", display_name)
|
5587
5702
|
pulumi.set(__self__, "expression", expression)
|
5588
|
-
pulumi.set(__self__, "key", key)
|
5589
5703
|
|
5590
5704
|
@property
|
5591
5705
|
@pulumi.getter
|
5592
5706
|
def description(self) -> str:
|
5593
5707
|
"""
|
5594
|
-
|
5708
|
+
The description of the alert policy.
|
5595
5709
|
"""
|
5596
5710
|
return pulumi.get(self, "description")
|
5597
5711
|
|
5598
5712
|
@property
|
5599
|
-
@pulumi.getter
|
5600
|
-
def
|
5713
|
+
@pulumi.getter(name="displayName")
|
5714
|
+
def display_name(self) -> str:
|
5601
5715
|
"""
|
5602
|
-
The
|
5716
|
+
The display name of the alert policy.
|
5603
5717
|
"""
|
5604
|
-
return pulumi.get(self, "
|
5718
|
+
return pulumi.get(self, "display_name")
|
5605
5719
|
|
5606
5720
|
@property
|
5607
5721
|
@pulumi.getter
|
5608
|
-
def
|
5609
|
-
""
|
5610
|
-
The unique key of the alert policy rule.
|
5611
|
-
"""
|
5612
|
-
return pulumi.get(self, "key")
|
5722
|
+
def expression(self) -> str:
|
5723
|
+
return pulumi.get(self, "expression")
|
5613
5724
|
|
5614
5725
|
|
5615
5726
|
@pulumi.output_type
|
5616
5727
|
class GetAlertPolicyRulesAlertPolicyRuleCollectionResult(dict):
|
5617
5728
|
def __init__(__self__, *,
|
5618
5729
|
items: Sequence['outputs.GetAlertPolicyRulesAlertPolicyRuleCollectionItemResult']):
|
5619
|
-
"""
|
5620
|
-
:param Sequence['GetAlertPolicyRulesAlertPolicyRuleCollectionItemArgs'] items: Array of alert policy rules summary
|
5621
|
-
"""
|
5622
5730
|
pulumi.set(__self__, "items", items)
|
5623
5731
|
|
5624
5732
|
@property
|
5625
5733
|
@pulumi.getter
|
5626
5734
|
def items(self) -> Sequence['outputs.GetAlertPolicyRulesAlertPolicyRuleCollectionItemResult']:
|
5627
|
-
"""
|
5628
|
-
Array of alert policy rules summary
|
5629
|
-
"""
|
5630
5735
|
return pulumi.get(self, "items")
|
5631
5736
|
|
5632
5737
|
|
5633
5738
|
@pulumi.output_type
|
5634
5739
|
class GetAlertPolicyRulesAlertPolicyRuleCollectionItemResult(dict):
|
5635
5740
|
def __init__(__self__, *,
|
5741
|
+
alert_policy_id: str,
|
5636
5742
|
description: str,
|
5743
|
+
display_name: str,
|
5637
5744
|
expression: str,
|
5638
|
-
key: str
|
5745
|
+
key: str,
|
5746
|
+
state: str,
|
5747
|
+
time_created: str):
|
5639
5748
|
"""
|
5749
|
+
:param str alert_policy_id: The OCID of the alert policy.
|
5640
5750
|
:param str description: Describes the alert policy rule.
|
5751
|
+
:param str display_name: The display name of the alert policy rule.
|
5641
5752
|
:param str expression: The conditional expression of the alert policy rule which evaluates to boolean value.
|
5642
5753
|
:param str key: The unique key of the alert policy rule.
|
5754
|
+
:param str state: The current state of the alert policy rule.
|
5755
|
+
:param str time_created: Creation date and time of the alert policy rule, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
5643
5756
|
"""
|
5757
|
+
pulumi.set(__self__, "alert_policy_id", alert_policy_id)
|
5644
5758
|
pulumi.set(__self__, "description", description)
|
5759
|
+
pulumi.set(__self__, "display_name", display_name)
|
5645
5760
|
pulumi.set(__self__, "expression", expression)
|
5646
5761
|
pulumi.set(__self__, "key", key)
|
5762
|
+
pulumi.set(__self__, "state", state)
|
5763
|
+
pulumi.set(__self__, "time_created", time_created)
|
5764
|
+
|
5765
|
+
@property
|
5766
|
+
@pulumi.getter(name="alertPolicyId")
|
5767
|
+
def alert_policy_id(self) -> str:
|
5768
|
+
"""
|
5769
|
+
The OCID of the alert policy.
|
5770
|
+
"""
|
5771
|
+
return pulumi.get(self, "alert_policy_id")
|
5647
5772
|
|
5648
5773
|
@property
|
5649
5774
|
@pulumi.getter
|
@@ -5653,6 +5778,14 @@ class GetAlertPolicyRulesAlertPolicyRuleCollectionItemResult(dict):
|
|
5653
5778
|
"""
|
5654
5779
|
return pulumi.get(self, "description")
|
5655
5780
|
|
5781
|
+
@property
|
5782
|
+
@pulumi.getter(name="displayName")
|
5783
|
+
def display_name(self) -> str:
|
5784
|
+
"""
|
5785
|
+
The display name of the alert policy rule.
|
5786
|
+
"""
|
5787
|
+
return pulumi.get(self, "display_name")
|
5788
|
+
|
5656
5789
|
@property
|
5657
5790
|
@pulumi.getter
|
5658
5791
|
def expression(self) -> str:
|
@@ -5669,6 +5802,22 @@ class GetAlertPolicyRulesAlertPolicyRuleCollectionItemResult(dict):
|
|
5669
5802
|
"""
|
5670
5803
|
return pulumi.get(self, "key")
|
5671
5804
|
|
5805
|
+
@property
|
5806
|
+
@pulumi.getter
|
5807
|
+
def state(self) -> str:
|
5808
|
+
"""
|
5809
|
+
The current state of the alert policy rule.
|
5810
|
+
"""
|
5811
|
+
return pulumi.get(self, "state")
|
5812
|
+
|
5813
|
+
@property
|
5814
|
+
@pulumi.getter(name="timeCreated")
|
5815
|
+
def time_created(self) -> str:
|
5816
|
+
"""
|
5817
|
+
Creation date and time of the alert policy rule, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
5818
|
+
"""
|
5819
|
+
return pulumi.get(self, "time_created")
|
5820
|
+
|
5672
5821
|
|
5673
5822
|
@pulumi.output_type
|
5674
5823
|
class GetAlertPolicyRulesFilterResult(dict):
|
@@ -5713,6 +5862,8 @@ class GetAlertsAlertCollectionResult(dict):
|
|
5713
5862
|
class GetAlertsAlertCollectionItemResult(dict):
|
5714
5863
|
def __init__(__self__, *,
|
5715
5864
|
alert_id: str,
|
5865
|
+
alert_policy_rule_key: str,
|
5866
|
+
alert_policy_rule_name: str,
|
5716
5867
|
alert_type: str,
|
5717
5868
|
comment: str,
|
5718
5869
|
compartment_id: str,
|
@@ -5736,6 +5887,8 @@ class GetAlertsAlertCollectionItemResult(dict):
|
|
5736
5887
|
time_created: str,
|
5737
5888
|
time_updated: str):
|
5738
5889
|
"""
|
5890
|
+
:param str alert_policy_rule_key: The key of the rule of alert policy that triggered alert.
|
5891
|
+
:param str alert_policy_rule_name: The display name of the rule of alert policy that triggered alert.
|
5739
5892
|
:param str alert_type: Type of the alert. Indicates the Data Safe feature triggering the alert.
|
5740
5893
|
:param str comment: A comment for the alert. Entered by the user.
|
5741
5894
|
:param str compartment_id: A filter to return only resources that match the specified compartment OCID.
|
@@ -5760,6 +5913,8 @@ class GetAlertsAlertCollectionItemResult(dict):
|
|
5760
5913
|
:param str time_updated: Last date and time the alert was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
5761
5914
|
"""
|
5762
5915
|
pulumi.set(__self__, "alert_id", alert_id)
|
5916
|
+
pulumi.set(__self__, "alert_policy_rule_key", alert_policy_rule_key)
|
5917
|
+
pulumi.set(__self__, "alert_policy_rule_name", alert_policy_rule_name)
|
5763
5918
|
pulumi.set(__self__, "alert_type", alert_type)
|
5764
5919
|
pulumi.set(__self__, "comment", comment)
|
5765
5920
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -5788,6 +5943,22 @@ class GetAlertsAlertCollectionItemResult(dict):
|
|
5788
5943
|
def alert_id(self) -> str:
|
5789
5944
|
return pulumi.get(self, "alert_id")
|
5790
5945
|
|
5946
|
+
@property
|
5947
|
+
@pulumi.getter(name="alertPolicyRuleKey")
|
5948
|
+
def alert_policy_rule_key(self) -> str:
|
5949
|
+
"""
|
5950
|
+
The key of the rule of alert policy that triggered alert.
|
5951
|
+
"""
|
5952
|
+
return pulumi.get(self, "alert_policy_rule_key")
|
5953
|
+
|
5954
|
+
@property
|
5955
|
+
@pulumi.getter(name="alertPolicyRuleName")
|
5956
|
+
def alert_policy_rule_name(self) -> str:
|
5957
|
+
"""
|
5958
|
+
The display name of the rule of alert policy that triggered alert.
|
5959
|
+
"""
|
5960
|
+
return pulumi.get(self, "alert_policy_rule_name")
|
5961
|
+
|
5791
5962
|
@property
|
5792
5963
|
@pulumi.getter(name="alertType")
|
5793
5964
|
def alert_type(self) -> str:
|
@@ -14140,6 +14311,7 @@ class GetReportDefinitionsReportDefinitionCollectionItemResult(dict):
|
|
14140
14311
|
freeform_tags: Mapping[str, Any],
|
14141
14312
|
id: str,
|
14142
14313
|
is_seeded: bool,
|
14314
|
+
lifecycle_details: str,
|
14143
14315
|
parent_id: str,
|
14144
14316
|
record_time_span: str,
|
14145
14317
|
schedule: str,
|
@@ -14168,6 +14340,7 @@ class GetReportDefinitionsReportDefinitionCollectionItemResult(dict):
|
|
14168
14340
|
:param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
14169
14341
|
:param str id: The OCID of the report definition.
|
14170
14342
|
:param bool is_seeded: A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
|
14343
|
+
:param str lifecycle_details: Details about the current state of the report definition in Data Safe.
|
14171
14344
|
:param str parent_id: The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
|
14172
14345
|
:param str record_time_span: The time span for the records in the report to be scheduled. <period-value><period> Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
|
14173
14346
|
:param str schedule: The schedule to generate the report periodically in the specified format: <version-string>;<version-specific-schedule>
|
@@ -14196,6 +14369,7 @@ class GetReportDefinitionsReportDefinitionCollectionItemResult(dict):
|
|
14196
14369
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
14197
14370
|
pulumi.set(__self__, "id", id)
|
14198
14371
|
pulumi.set(__self__, "is_seeded", is_seeded)
|
14372
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
14199
14373
|
pulumi.set(__self__, "parent_id", parent_id)
|
14200
14374
|
pulumi.set(__self__, "record_time_span", record_time_span)
|
14201
14375
|
pulumi.set(__self__, "schedule", schedule)
|
@@ -14322,6 +14496,14 @@ class GetReportDefinitionsReportDefinitionCollectionItemResult(dict):
|
|
14322
14496
|
"""
|
14323
14497
|
return pulumi.get(self, "is_seeded")
|
14324
14498
|
|
14499
|
+
@property
|
14500
|
+
@pulumi.getter(name="lifecycleDetails")
|
14501
|
+
def lifecycle_details(self) -> str:
|
14502
|
+
"""
|
14503
|
+
Details about the current state of the report definition in Data Safe.
|
14504
|
+
"""
|
14505
|
+
return pulumi.get(self, "lifecycle_details")
|
14506
|
+
|
14325
14507
|
@property
|
14326
14508
|
@pulumi.getter(name="parentId")
|
14327
14509
|
def parent_id(self) -> str:
|
@@ -14712,6 +14894,7 @@ class GetReportsReportCollectionItemResult(dict):
|
|
14712
14894
|
display_name: str,
|
14713
14895
|
freeform_tags: Mapping[str, Any],
|
14714
14896
|
id: str,
|
14897
|
+
lifecycle_details: str,
|
14715
14898
|
mime_type: str,
|
14716
14899
|
report_definition_id: str,
|
14717
14900
|
report_id: str,
|
@@ -14726,6 +14909,7 @@ class GetReportsReportCollectionItemResult(dict):
|
|
14726
14909
|
:param str display_name: The name of the report definition to query.
|
14727
14910
|
:param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
14728
14911
|
:param str id: The OCID of the report.
|
14912
|
+
:param str lifecycle_details: Details about the current state of the report in Data Safe.
|
14729
14913
|
:param str mime_type: Specifies the format of report to be .xls or .pdf or .json
|
14730
14914
|
:param str report_definition_id: The ID of the report definition to filter the list of reports
|
14731
14915
|
:param str state: An optional filter to return only resources that match the specified lifecycle state.
|
@@ -14739,6 +14923,7 @@ class GetReportsReportCollectionItemResult(dict):
|
|
14739
14923
|
pulumi.set(__self__, "display_name", display_name)
|
14740
14924
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
14741
14925
|
pulumi.set(__self__, "id", id)
|
14926
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
14742
14927
|
pulumi.set(__self__, "mime_type", mime_type)
|
14743
14928
|
pulumi.set(__self__, "report_definition_id", report_definition_id)
|
14744
14929
|
pulumi.set(__self__, "report_id", report_id)
|
@@ -14795,6 +14980,14 @@ class GetReportsReportCollectionItemResult(dict):
|
|
14795
14980
|
"""
|
14796
14981
|
return pulumi.get(self, "id")
|
14797
14982
|
|
14983
|
+
@property
|
14984
|
+
@pulumi.getter(name="lifecycleDetails")
|
14985
|
+
def lifecycle_details(self) -> str:
|
14986
|
+
"""
|
14987
|
+
Details about the current state of the report in Data Safe.
|
14988
|
+
"""
|
14989
|
+
return pulumi.get(self, "lifecycle_details")
|
14990
|
+
|
14798
14991
|
@property
|
14799
14992
|
@pulumi.getter(name="mimeType")
|
14800
14993
|
def mime_type(self) -> str:
|
@@ -24797,6 +24990,7 @@ class GetTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItem
|
|
24797
24990
|
freeform_tags: Mapping[str, Any],
|
24798
24991
|
id: str,
|
24799
24992
|
is_enabled: bool,
|
24993
|
+
lifecycle_details: str,
|
24800
24994
|
policy_id: str,
|
24801
24995
|
state: str,
|
24802
24996
|
system_tags: Mapping[str, Any],
|
@@ -24810,7 +25004,8 @@ class GetTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItem
|
|
24810
25004
|
:param str display_name: The display name of the target-alert policy association.
|
24811
25005
|
:param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
24812
25006
|
:param str id: The OCID of the target-alert policy association.
|
24813
|
-
:param bool is_enabled: Indicates if the target-alert policy association is enabled or disabled.
|
25007
|
+
:param bool is_enabled: Indicates if the target-alert policy association is enabled or disabled by user.
|
25008
|
+
:param str lifecycle_details: Details about the current state of the target-alert policy association.
|
24814
25009
|
:param str policy_id: The OCID of the alert policy.
|
24815
25010
|
:param str state: An optional filter to return only alert policies that have the given life-cycle state.
|
24816
25011
|
:param Mapping[str, Any] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
@@ -24825,6 +25020,7 @@ class GetTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItem
|
|
24825
25020
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
24826
25021
|
pulumi.set(__self__, "id", id)
|
24827
25022
|
pulumi.set(__self__, "is_enabled", is_enabled)
|
25023
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
24828
25024
|
pulumi.set(__self__, "policy_id", policy_id)
|
24829
25025
|
pulumi.set(__self__, "state", state)
|
24830
25026
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -24884,10 +25080,18 @@ class GetTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItem
|
|
24884
25080
|
@pulumi.getter(name="isEnabled")
|
24885
25081
|
def is_enabled(self) -> bool:
|
24886
25082
|
"""
|
24887
|
-
Indicates if the target-alert policy association is enabled or disabled.
|
25083
|
+
Indicates if the target-alert policy association is enabled or disabled by user.
|
24888
25084
|
"""
|
24889
25085
|
return pulumi.get(self, "is_enabled")
|
24890
25086
|
|
25087
|
+
@property
|
25088
|
+
@pulumi.getter(name="lifecycleDetails")
|
25089
|
+
def lifecycle_details(self) -> str:
|
25090
|
+
"""
|
25091
|
+
Details about the current state of the target-alert policy association.
|
25092
|
+
"""
|
25093
|
+
return pulumi.get(self, "lifecycle_details")
|
25094
|
+
|
24891
25095
|
@property
|
24892
25096
|
@pulumi.getter(name="policyId")
|
24893
25097
|
def policy_id(self) -> str:
|
pulumi_oci/datasafe/report.py
CHANGED
@@ -98,6 +98,7 @@ class _ReportState:
|
|
98
98
|
description: Optional[pulumi.Input[str]] = None,
|
99
99
|
display_name: Optional[pulumi.Input[str]] = None,
|
100
100
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
101
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
101
102
|
mime_type: Optional[pulumi.Input[str]] = None,
|
102
103
|
report_definition_id: Optional[pulumi.Input[str]] = None,
|
103
104
|
report_id: Optional[pulumi.Input[str]] = None,
|
@@ -112,6 +113,7 @@ class _ReportState:
|
|
112
113
|
:param pulumi.Input[str] description: Specifies a description of the report.
|
113
114
|
:param pulumi.Input[str] display_name: Name of the report.
|
114
115
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
116
|
+
:param pulumi.Input[str] lifecycle_details: Details about the current state of the report in Data Safe.
|
115
117
|
:param pulumi.Input[str] mime_type: Specifies the format of report to be .xls or .pdf or .json
|
116
118
|
:param pulumi.Input[str] report_definition_id: The OCID of the report definition.
|
117
119
|
:param pulumi.Input[str] report_id: Unique report identifier
|
@@ -134,6 +136,8 @@ class _ReportState:
|
|
134
136
|
pulumi.set(__self__, "display_name", display_name)
|
135
137
|
if freeform_tags is not None:
|
136
138
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
139
|
+
if lifecycle_details is not None:
|
140
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
137
141
|
if mime_type is not None:
|
138
142
|
pulumi.set(__self__, "mime_type", mime_type)
|
139
143
|
if report_definition_id is not None:
|
@@ -209,6 +213,18 @@ class _ReportState:
|
|
209
213
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
210
214
|
pulumi.set(self, "freeform_tags", value)
|
211
215
|
|
216
|
+
@property
|
217
|
+
@pulumi.getter(name="lifecycleDetails")
|
218
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
219
|
+
"""
|
220
|
+
Details about the current state of the report in Data Safe.
|
221
|
+
"""
|
222
|
+
return pulumi.get(self, "lifecycle_details")
|
223
|
+
|
224
|
+
@lifecycle_details.setter
|
225
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
226
|
+
pulumi.set(self, "lifecycle_details", value)
|
227
|
+
|
212
228
|
@property
|
213
229
|
@pulumi.getter(name="mimeType")
|
214
230
|
def mime_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -387,6 +403,7 @@ class Report(pulumi.CustomResource):
|
|
387
403
|
__props__.__dict__["report_id"] = report_id
|
388
404
|
__props__.__dict__["description"] = None
|
389
405
|
__props__.__dict__["display_name"] = None
|
406
|
+
__props__.__dict__["lifecycle_details"] = None
|
390
407
|
__props__.__dict__["mime_type"] = None
|
391
408
|
__props__.__dict__["report_definition_id"] = None
|
392
409
|
__props__.__dict__["state"] = None
|
@@ -408,6 +425,7 @@ class Report(pulumi.CustomResource):
|
|
408
425
|
description: Optional[pulumi.Input[str]] = None,
|
409
426
|
display_name: Optional[pulumi.Input[str]] = None,
|
410
427
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
428
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
411
429
|
mime_type: Optional[pulumi.Input[str]] = None,
|
412
430
|
report_definition_id: Optional[pulumi.Input[str]] = None,
|
413
431
|
report_id: Optional[pulumi.Input[str]] = None,
|
@@ -427,6 +445,7 @@ class Report(pulumi.CustomResource):
|
|
427
445
|
:param pulumi.Input[str] description: Specifies a description of the report.
|
428
446
|
:param pulumi.Input[str] display_name: Name of the report.
|
429
447
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
448
|
+
:param pulumi.Input[str] lifecycle_details: Details about the current state of the report in Data Safe.
|
430
449
|
:param pulumi.Input[str] mime_type: Specifies the format of report to be .xls or .pdf or .json
|
431
450
|
:param pulumi.Input[str] report_definition_id: The OCID of the report definition.
|
432
451
|
:param pulumi.Input[str] report_id: Unique report identifier
|
@@ -448,6 +467,7 @@ class Report(pulumi.CustomResource):
|
|
448
467
|
__props__.__dict__["description"] = description
|
449
468
|
__props__.__dict__["display_name"] = display_name
|
450
469
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
470
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
451
471
|
__props__.__dict__["mime_type"] = mime_type
|
452
472
|
__props__.__dict__["report_definition_id"] = report_definition_id
|
453
473
|
__props__.__dict__["report_id"] = report_id
|
@@ -497,6 +517,14 @@ class Report(pulumi.CustomResource):
|
|
497
517
|
"""
|
498
518
|
return pulumi.get(self, "freeform_tags")
|
499
519
|
|
520
|
+
@property
|
521
|
+
@pulumi.getter(name="lifecycleDetails")
|
522
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
523
|
+
"""
|
524
|
+
Details about the current state of the report in Data Safe.
|
525
|
+
"""
|
526
|
+
return pulumi.get(self, "lifecycle_details")
|
527
|
+
|
500
528
|
@property
|
501
529
|
@pulumi.getter(name="mimeType")
|
502
530
|
def mime_type(self) -> pulumi.Output[str]:
|