pulumi-oci 1.19.0a1705693078__py3-none-any.whl → 1.20.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +59 -0
- pulumi_oci/adm/_inputs.py +99 -18
- pulumi_oci/adm/get_remediation_run_application_dependency_recommendations.py +23 -3
- pulumi_oci/adm/get_vulnerability_audit.py +31 -5
- pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerabilities.py +43 -6
- pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerability.py +27 -1
- pulumi_oci/adm/get_vulnerability_audits.py +54 -3
- pulumi_oci/adm/outputs.py +296 -31
- pulumi_oci/adm/remediation_recipe.py +2 -0
- pulumi_oci/adm/vulnerability_audit.py +96 -37
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +40 -0
- pulumi_oci/database/cloud_vm_cluster.py +22 -1
- pulumi_oci/database/get_system_versions.py +173 -0
- pulumi_oci/database/outputs.py +88 -0
- pulumi_oci/database/vm_cluster.py +22 -1
- pulumi_oci/datasafe/__init__.py +22 -0
- pulumi_oci/datasafe/_inputs.py +1826 -161
- pulumi_oci/datasafe/audit_trail.py +140 -0
- pulumi_oci/datasafe/discovery_mod.py +7 -7
- pulumi_oci/datasafe/get_audit_trail.py +66 -1
- pulumi_oci/datasafe/get_discovery_job.py +1 -1
- pulumi_oci/datasafe/get_discovery_jobs_result.py +1 -1
- pulumi_oci/datasafe/get_discovery_jobs_results.py +1 -1
- pulumi_oci/datasafe/get_masking_policies_masking_column.py +1 -1
- pulumi_oci/datasafe/get_masking_policies_masking_columns.py +1 -1
- pulumi_oci/datasafe/get_masking_policy.py +1 -1
- pulumi_oci/datasafe/get_report.py +1 -1
- pulumi_oci/datasafe/get_security_assessment.py +3 -3
- pulumi_oci/datasafe/get_security_assessment_comparison.py +5 -5
- pulumi_oci/datasafe/get_security_assessment_finding.py +29 -3
- pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +276 -0
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -7
- pulumi_oci/datasafe/get_security_assessment_findings_change_audit_logs.py +309 -0
- pulumi_oci/datasafe/get_security_assessment_security_feature_analytics.py +198 -0
- pulumi_oci/datasafe/get_security_assessment_security_features.py +377 -0
- pulumi_oci/datasafe/get_security_assessments.py +2 -2
- pulumi_oci/datasafe/get_security_policies.py +253 -0
- pulumi_oci/datasafe/get_security_policy.py +235 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +261 -0
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +165 -0
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +180 -0
- pulumi_oci/datasafe/get_security_policy_deployments.py +293 -0
- pulumi_oci/datasafe/get_security_policy_report.py +248 -0
- pulumi_oci/datasafe/get_security_policy_report_database_table_access_entries.py +158 -0
- pulumi_oci/datasafe/get_security_policy_report_database_table_access_entry.py +408 -0
- pulumi_oci/datasafe/get_security_policy_report_database_view_access_entries.py +178 -0
- pulumi_oci/datasafe/get_security_policy_report_database_view_access_entry.py +382 -0
- pulumi_oci/datasafe/get_security_policy_report_role_grant_paths.py +177 -0
- pulumi_oci/datasafe/get_security_policy_reports.py +273 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
- pulumi_oci/datasafe/get_target_database.py +27 -4
- pulumi_oci/datasafe/get_target_database_peer_target_database.py +263 -0
- pulumi_oci/datasafe/get_target_database_peer_target_databases.py +133 -0
- pulumi_oci/datasafe/get_target_databases.py +1 -1
- pulumi_oci/datasafe/get_user_assessment.py +5 -5
- pulumi_oci/datasafe/get_user_assessment_comparison.py +2 -2
- pulumi_oci/datasafe/get_user_assessment_user_access_analytics.py +133 -0
- pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
- pulumi_oci/datasafe/get_user_assessment_users.py +42 -2
- pulumi_oci/datasafe/get_user_assessments.py +2 -2
- pulumi_oci/datasafe/masking_policies_masking_column.py +7 -7
- pulumi_oci/datasafe/masking_policy.py +9 -9
- pulumi_oci/datasafe/outputs.py +16686 -9777
- pulumi_oci/datasafe/report.py +559 -0
- pulumi_oci/datasafe/security_assessment.py +12 -12
- pulumi_oci/datasafe/sensitive_data_model.py +7 -7
- pulumi_oci/datasafe/set_security_assessment_baseline.py +7 -7
- pulumi_oci/datasafe/set_user_assessment_baseline.py +7 -7
- pulumi_oci/datasafe/target_database.py +146 -25
- pulumi_oci/datasafe/target_database_peer_target_database.py +634 -0
- pulumi_oci/datasafe/user_assessment.py +20 -20
- pulumi_oci/generativeai/__init__.py +18 -0
- pulumi_oci/generativeai/_inputs.py +534 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
- pulumi_oci/generativeai/endpoint.py +717 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
- pulumi_oci/generativeai/get_endpoint.py +275 -0
- pulumi_oci/generativeai/get_endpoints.py +183 -0
- pulumi_oci/generativeai/get_model.py +353 -0
- pulumi_oci/generativeai/get_models.py +220 -0
- pulumi_oci/generativeai/model.py +858 -0
- pulumi_oci/generativeai/outputs.py +1721 -0
- pulumi_oci/marketplace/get_publication.py +14 -1
- pulumi_oci/marketplace/outputs.py +11 -0
- pulumi_oci/marketplace/publication.py +28 -0
- pulumi_oci/monitoring/__init__.py +3 -0
- pulumi_oci/monitoring/_inputs.py +82 -4
- pulumi_oci/monitoring/alarm.py +15 -15
- pulumi_oci/monitoring/alarm_suppression.py +745 -0
- pulumi_oci/monitoring/get_alarm.py +5 -5
- pulumi_oci/monitoring/get_alarm_history_collection.py +4 -4
- pulumi_oci/monitoring/get_alarm_statuses.py +3 -1
- pulumi_oci/monitoring/get_alarm_suppression.py +276 -0
- pulumi_oci/monitoring/get_alarm_suppressions.py +192 -0
- pulumi_oci/monitoring/get_metric_data.py +12 -8
- pulumi_oci/monitoring/get_metrics.py +2 -2
- pulumi_oci/monitoring/outputs.py +355 -50
- pulumi_oci/networkfirewall/_inputs.py +25 -20
- pulumi_oci/networkfirewall/outputs.py +40 -30
- pulumi_oci/stackmonitoring/__init__.py +3 -0
- pulumi_oci/stackmonitoring/_inputs.py +143 -0
- pulumi_oci/stackmonitoring/get_process_set.py +236 -0
- pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
- pulumi_oci/stackmonitoring/outputs.py +422 -0
- pulumi_oci/stackmonitoring/process_set.py +548 -0
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/RECORD +111 -70
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/top_level.txt +0 -0
@@ -22,7 +22,7 @@ class GetPublicationResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getPublication.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, freeform_tags=None, icons=None, id=None, is_agreement_acknowledged=None, listing_type=None, long_description=None, name=None, package_details=None, package_type=None, publication_id=None, short_description=None, state=None, support_contacts=None, supported_operating_systems=None, time_created=None):
|
25
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, freeform_tags=None, icons=None, id=None, is_agreement_acknowledged=None, listing_type=None, long_description=None, name=None, package_details=None, package_type=None, publication_id=None, short_description=None, state=None, support_contacts=None, supported_operating_systems=None, system_tags=None, time_created=None):
|
26
26
|
if compartment_id and not isinstance(compartment_id, str):
|
27
27
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
28
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -71,6 +71,9 @@ class GetPublicationResult:
|
|
71
71
|
if supported_operating_systems and not isinstance(supported_operating_systems, list):
|
72
72
|
raise TypeError("Expected argument 'supported_operating_systems' to be a list")
|
73
73
|
pulumi.set(__self__, "supported_operating_systems", supported_operating_systems)
|
74
|
+
if system_tags and not isinstance(system_tags, dict):
|
75
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
76
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
74
77
|
if time_created and not isinstance(time_created, str):
|
75
78
|
raise TypeError("Expected argument 'time_created' to be a str")
|
76
79
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -194,6 +197,14 @@ class GetPublicationResult:
|
|
194
197
|
"""
|
195
198
|
return pulumi.get(self, "supported_operating_systems")
|
196
199
|
|
200
|
+
@property
|
201
|
+
@pulumi.getter(name="systemTags")
|
202
|
+
def system_tags(self) -> Mapping[str, Any]:
|
203
|
+
"""
|
204
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
205
|
+
"""
|
206
|
+
return pulumi.get(self, "system_tags")
|
207
|
+
|
197
208
|
@property
|
198
209
|
@pulumi.getter(name="timeCreated")
|
199
210
|
def time_created(self) -> str:
|
@@ -225,6 +236,7 @@ class AwaitableGetPublicationResult(GetPublicationResult):
|
|
225
236
|
state=self.state,
|
226
237
|
support_contacts=self.support_contacts,
|
227
238
|
supported_operating_systems=self.supported_operating_systems,
|
239
|
+
system_tags=self.system_tags,
|
228
240
|
time_created=self.time_created)
|
229
241
|
|
230
242
|
|
@@ -269,6 +281,7 @@ def get_publication(publication_id: Optional[str] = None,
|
|
269
281
|
state=pulumi.get(__ret__, 'state'),
|
270
282
|
support_contacts=pulumi.get(__ret__, 'support_contacts'),
|
271
283
|
supported_operating_systems=pulumi.get(__ret__, 'supported_operating_systems'),
|
284
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
272
285
|
time_created=pulumi.get(__ret__, 'time_created'))
|
273
286
|
|
274
287
|
|
@@ -2904,6 +2904,7 @@ class GetPublicationsPublicationResult(dict):
|
|
2904
2904
|
state: str,
|
2905
2905
|
support_contacts: Sequence['outputs.GetPublicationsPublicationSupportContactResult'],
|
2906
2906
|
supported_operating_systems: Sequence['outputs.GetPublicationsPublicationSupportedOperatingSystemResult'],
|
2907
|
+
system_tags: Mapping[str, Any],
|
2907
2908
|
time_created: str):
|
2908
2909
|
"""
|
2909
2910
|
:param str compartment_id: The unique identifier for the compartment.
|
@@ -2919,6 +2920,7 @@ class GetPublicationsPublicationResult(dict):
|
|
2919
2920
|
:param str state: The lifecycle state of the publication.
|
2920
2921
|
:param Sequence['GetPublicationsPublicationSupportContactArgs'] support_contacts: Contact information for getting support from the publisher for the listing.
|
2921
2922
|
:param Sequence['GetPublicationsPublicationSupportedOperatingSystemArgs'] supported_operating_systems: The list of operating systems supported by the listing.
|
2923
|
+
:param Mapping[str, Any] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
2922
2924
|
:param str time_created: The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2923
2925
|
"""
|
2924
2926
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -2936,6 +2938,7 @@ class GetPublicationsPublicationResult(dict):
|
|
2936
2938
|
pulumi.set(__self__, "state", state)
|
2937
2939
|
pulumi.set(__self__, "support_contacts", support_contacts)
|
2938
2940
|
pulumi.set(__self__, "supported_operating_systems", supported_operating_systems)
|
2941
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
2939
2942
|
pulumi.set(__self__, "time_created", time_created)
|
2940
2943
|
|
2941
2944
|
@property
|
@@ -3052,6 +3055,14 @@ class GetPublicationsPublicationResult(dict):
|
|
3052
3055
|
"""
|
3053
3056
|
return pulumi.get(self, "supported_operating_systems")
|
3054
3057
|
|
3058
|
+
@property
|
3059
|
+
@pulumi.getter(name="systemTags")
|
3060
|
+
def system_tags(self) -> Mapping[str, Any]:
|
3061
|
+
"""
|
3062
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
3063
|
+
"""
|
3064
|
+
return pulumi.get(self, "system_tags")
|
3065
|
+
|
3055
3066
|
@property
|
3056
3067
|
@pulumi.getter(name="timeCreated")
|
3057
3068
|
def time_created(self) -> str:
|
@@ -192,6 +192,7 @@ class _PublicationState:
|
|
192
192
|
state: Optional[pulumi.Input[str]] = None,
|
193
193
|
support_contacts: Optional[pulumi.Input[Sequence[pulumi.Input['PublicationSupportContactArgs']]]] = None,
|
194
194
|
supported_operating_systems: Optional[pulumi.Input[Sequence[pulumi.Input['PublicationSupportedOperatingSystemArgs']]]] = None,
|
195
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
195
196
|
time_created: Optional[pulumi.Input[str]] = None):
|
196
197
|
"""
|
197
198
|
Input properties used for looking up and filtering Publication resources.
|
@@ -209,6 +210,7 @@ class _PublicationState:
|
|
209
210
|
:param pulumi.Input[str] state: The lifecycle state of the publication.
|
210
211
|
:param pulumi.Input[Sequence[pulumi.Input['PublicationSupportContactArgs']]] support_contacts: (Updatable) Contact information for getting support from the publisher for the listing.
|
211
212
|
:param pulumi.Input[Sequence[pulumi.Input['PublicationSupportedOperatingSystemArgs']]] supported_operating_systems: The list of operating systems supported by the listing.
|
213
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
212
214
|
:param pulumi.Input[str] time_created: The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
213
215
|
"""
|
214
216
|
if compartment_id is not None:
|
@@ -239,6 +241,8 @@ class _PublicationState:
|
|
239
241
|
pulumi.set(__self__, "support_contacts", support_contacts)
|
240
242
|
if supported_operating_systems is not None:
|
241
243
|
pulumi.set(__self__, "supported_operating_systems", supported_operating_systems)
|
244
|
+
if system_tags is not None:
|
245
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
242
246
|
if time_created is not None:
|
243
247
|
pulumi.set(__self__, "time_created", time_created)
|
244
248
|
|
@@ -410,6 +414,18 @@ class _PublicationState:
|
|
410
414
|
def supported_operating_systems(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PublicationSupportedOperatingSystemArgs']]]]):
|
411
415
|
pulumi.set(self, "supported_operating_systems", value)
|
412
416
|
|
417
|
+
@property
|
418
|
+
@pulumi.getter(name="systemTags")
|
419
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
420
|
+
"""
|
421
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
422
|
+
"""
|
423
|
+
return pulumi.get(self, "system_tags")
|
424
|
+
|
425
|
+
@system_tags.setter
|
426
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
427
|
+
pulumi.set(self, "system_tags", value)
|
428
|
+
|
413
429
|
@property
|
414
430
|
@pulumi.getter(name="timeCreated")
|
415
431
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -620,6 +636,7 @@ class Publication(pulumi.CustomResource):
|
|
620
636
|
__props__.__dict__["package_type"] = None
|
621
637
|
__props__.__dict__["state"] = None
|
622
638
|
__props__.__dict__["supported_operating_systems"] = None
|
639
|
+
__props__.__dict__["system_tags"] = None
|
623
640
|
__props__.__dict__["time_created"] = None
|
624
641
|
super(Publication, __self__).__init__(
|
625
642
|
'oci:Marketplace/publication:Publication',
|
@@ -645,6 +662,7 @@ class Publication(pulumi.CustomResource):
|
|
645
662
|
state: Optional[pulumi.Input[str]] = None,
|
646
663
|
support_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportContactArgs']]]]] = None,
|
647
664
|
supported_operating_systems: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportedOperatingSystemArgs']]]]] = None,
|
665
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
648
666
|
time_created: Optional[pulumi.Input[str]] = None) -> 'Publication':
|
649
667
|
"""
|
650
668
|
Get an existing Publication resource's state with the given name, id, and optional extra
|
@@ -667,6 +685,7 @@ class Publication(pulumi.CustomResource):
|
|
667
685
|
:param pulumi.Input[str] state: The lifecycle state of the publication.
|
668
686
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportContactArgs']]]] support_contacts: (Updatable) Contact information for getting support from the publisher for the listing.
|
669
687
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportedOperatingSystemArgs']]]] supported_operating_systems: The list of operating systems supported by the listing.
|
688
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
670
689
|
:param pulumi.Input[str] time_created: The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
671
690
|
"""
|
672
691
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -687,6 +706,7 @@ class Publication(pulumi.CustomResource):
|
|
687
706
|
__props__.__dict__["state"] = state
|
688
707
|
__props__.__dict__["support_contacts"] = support_contacts
|
689
708
|
__props__.__dict__["supported_operating_systems"] = supported_operating_systems
|
709
|
+
__props__.__dict__["system_tags"] = system_tags
|
690
710
|
__props__.__dict__["time_created"] = time_created
|
691
711
|
return Publication(resource_name, opts=opts, __props__=__props__)
|
692
712
|
|
@@ -802,6 +822,14 @@ class Publication(pulumi.CustomResource):
|
|
802
822
|
"""
|
803
823
|
return pulumi.get(self, "supported_operating_systems")
|
804
824
|
|
825
|
+
@property
|
826
|
+
@pulumi.getter(name="systemTags")
|
827
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
828
|
+
"""
|
829
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
830
|
+
"""
|
831
|
+
return pulumi.get(self, "system_tags")
|
832
|
+
|
805
833
|
@property
|
806
834
|
@pulumi.getter(name="timeCreated")
|
807
835
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -6,9 +6,12 @@ from .. import _utilities
|
|
6
6
|
import typing
|
7
7
|
# Export this package's modules as members:
|
8
8
|
from .alarm import *
|
9
|
+
from .alarm_suppression import *
|
9
10
|
from .get_alarm import *
|
10
11
|
from .get_alarm_history_collection import *
|
11
12
|
from .get_alarm_statuses import *
|
13
|
+
from .get_alarm_suppression import *
|
14
|
+
from .get_alarm_suppressions import *
|
12
15
|
from .get_alarms import *
|
13
16
|
from .get_metric_data import *
|
14
17
|
from .get_metrics import *
|
pulumi_oci/monitoring/_inputs.py
CHANGED
@@ -11,7 +11,9 @@ from .. import _utilities
|
|
11
11
|
|
12
12
|
__all__ = [
|
13
13
|
'AlarmSuppressionArgs',
|
14
|
+
'AlarmSuppressionAlarmSuppressionTargetArgs',
|
14
15
|
'GetAlarmStatusesFilterArgs',
|
16
|
+
'GetAlarmSuppressionsFilterArgs',
|
15
17
|
'GetAlarmsFilterArgs',
|
16
18
|
'GetMetricDataFilterArgs',
|
17
19
|
'GetMetricsFilterArgs',
|
@@ -24,8 +26,8 @@ class AlarmSuppressionArgs:
|
|
24
26
|
time_suppress_until: pulumi.Input[str],
|
25
27
|
description: Optional[pulumi.Input[str]] = None):
|
26
28
|
"""
|
27
|
-
:param pulumi.Input[str] time_suppress_from: (Updatable) The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `
|
28
|
-
:param pulumi.Input[str] time_suppress_until: (Updatable) The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `
|
29
|
+
:param pulumi.Input[str] time_suppress_from: (Updatable) The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `2023-02-01T01:02:29.600Z`
|
30
|
+
:param pulumi.Input[str] time_suppress_until: (Updatable) The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `2023-02-01T02:02:29.600Z`
|
29
31
|
|
30
32
|
|
31
33
|
** IMPORTANT **
|
@@ -45,7 +47,7 @@ class AlarmSuppressionArgs:
|
|
45
47
|
@pulumi.getter(name="timeSuppressFrom")
|
46
48
|
def time_suppress_from(self) -> pulumi.Input[str]:
|
47
49
|
"""
|
48
|
-
(Updatable) The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `
|
50
|
+
(Updatable) The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `2023-02-01T01:02:29.600Z`
|
49
51
|
"""
|
50
52
|
return pulumi.get(self, "time_suppress_from")
|
51
53
|
|
@@ -57,7 +59,7 @@ class AlarmSuppressionArgs:
|
|
57
59
|
@pulumi.getter(name="timeSuppressUntil")
|
58
60
|
def time_suppress_until(self) -> pulumi.Input[str]:
|
59
61
|
"""
|
60
|
-
(Updatable) The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `
|
62
|
+
(Updatable) The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: `2023-02-01T02:02:29.600Z`
|
61
63
|
|
62
64
|
|
63
65
|
** IMPORTANT **
|
@@ -86,6 +88,43 @@ class AlarmSuppressionArgs:
|
|
86
88
|
pulumi.set(self, "description", value)
|
87
89
|
|
88
90
|
|
91
|
+
@pulumi.input_type
|
92
|
+
class AlarmSuppressionAlarmSuppressionTargetArgs:
|
93
|
+
def __init__(__self__, *,
|
94
|
+
alarm_id: pulumi.Input[str],
|
95
|
+
target_type: pulumi.Input[str]):
|
96
|
+
"""
|
97
|
+
:param pulumi.Input[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.
|
98
|
+
:param pulumi.Input[str] target_type: The type of the alarm suppression target.
|
99
|
+
"""
|
100
|
+
pulumi.set(__self__, "alarm_id", alarm_id)
|
101
|
+
pulumi.set(__self__, "target_type", target_type)
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="alarmId")
|
105
|
+
def alarm_id(self) -> pulumi.Input[str]:
|
106
|
+
"""
|
107
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "alarm_id")
|
110
|
+
|
111
|
+
@alarm_id.setter
|
112
|
+
def alarm_id(self, value: pulumi.Input[str]):
|
113
|
+
pulumi.set(self, "alarm_id", value)
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="targetType")
|
117
|
+
def target_type(self) -> pulumi.Input[str]:
|
118
|
+
"""
|
119
|
+
The type of the alarm suppression target.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "target_type")
|
122
|
+
|
123
|
+
@target_type.setter
|
124
|
+
def target_type(self, value: pulumi.Input[str]):
|
125
|
+
pulumi.set(self, "target_type", value)
|
126
|
+
|
127
|
+
|
89
128
|
@pulumi.input_type
|
90
129
|
class GetAlarmStatusesFilterArgs:
|
91
130
|
def __init__(__self__, *,
|
@@ -125,6 +164,45 @@ class GetAlarmStatusesFilterArgs:
|
|
125
164
|
pulumi.set(self, "regex", value)
|
126
165
|
|
127
166
|
|
167
|
+
@pulumi.input_type
|
168
|
+
class GetAlarmSuppressionsFilterArgs:
|
169
|
+
def __init__(__self__, *,
|
170
|
+
name: str,
|
171
|
+
values: Sequence[str],
|
172
|
+
regex: Optional[bool] = None):
|
173
|
+
pulumi.set(__self__, "name", name)
|
174
|
+
pulumi.set(__self__, "values", values)
|
175
|
+
if regex is not None:
|
176
|
+
pulumi.set(__self__, "regex", regex)
|
177
|
+
|
178
|
+
@property
|
179
|
+
@pulumi.getter
|
180
|
+
def name(self) -> str:
|
181
|
+
return pulumi.get(self, "name")
|
182
|
+
|
183
|
+
@name.setter
|
184
|
+
def name(self, value: str):
|
185
|
+
pulumi.set(self, "name", value)
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter
|
189
|
+
def values(self) -> Sequence[str]:
|
190
|
+
return pulumi.get(self, "values")
|
191
|
+
|
192
|
+
@values.setter
|
193
|
+
def values(self, value: Sequence[str]):
|
194
|
+
pulumi.set(self, "values", value)
|
195
|
+
|
196
|
+
@property
|
197
|
+
@pulumi.getter
|
198
|
+
def regex(self) -> Optional[bool]:
|
199
|
+
return pulumi.get(self, "regex")
|
200
|
+
|
201
|
+
@regex.setter
|
202
|
+
def regex(self, value: Optional[bool]):
|
203
|
+
pulumi.set(self, "regex", value)
|
204
|
+
|
205
|
+
|
128
206
|
@pulumi.input_type
|
129
207
|
class GetAlarmsFilterArgs:
|
130
208
|
def __init__(__self__, *,
|
pulumi_oci/monitoring/alarm.py
CHANGED
@@ -38,7 +38,7 @@ class AlarmArgs:
|
|
38
38
|
"""
|
39
39
|
The set of arguments for constructing a Alarm resource.
|
40
40
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the alarm.
|
41
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] destinations: (Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications
|
41
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] destinations: (Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications, Streaming. Limit: One destination per supported destination service.
|
42
42
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name for the alarm. It does not have to be unique, and it's changeable. Avoid entering confidential information.
|
43
43
|
|
44
44
|
This value determines the title of each alarm notification.
|
@@ -136,7 +136,7 @@ class AlarmArgs:
|
|
136
136
|
@pulumi.getter
|
137
137
|
def destinations(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
138
138
|
"""
|
139
|
-
(Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications
|
139
|
+
(Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications, Streaming. Limit: One destination per supported destination service.
|
140
140
|
"""
|
141
141
|
return pulumi.get(self, "destinations")
|
142
142
|
|
@@ -411,7 +411,7 @@ class _AlarmState:
|
|
411
411
|
: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. Example: `High CPU usage alert. Follow runbook instructions for resolution.`
|
412
412
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the alarm.
|
413
413
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"Operations.CostCenter": "42"}`
|
414
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] destinations: (Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications
|
414
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] destinations: (Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications, Streaming. Limit: One destination per supported destination service.
|
415
415
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name for the alarm. It does not have to be unique, and it's changeable. Avoid entering confidential information.
|
416
416
|
|
417
417
|
This value determines the title of each alarm notification.
|
@@ -460,8 +460,8 @@ class _AlarmState:
|
|
460
460
|
:param pulumi.Input[str] severity: (Updatable) The perceived type of response required when the alarm is in the "FIRING" state. Example: `CRITICAL`
|
461
461
|
:param pulumi.Input[str] state: The current lifecycle state of the alarm. Example: `DELETED`
|
462
462
|
:param pulumi.Input['AlarmSuppressionArgs'] suppression: (Updatable) The configuration details for suppressing an alarm.
|
463
|
-
:param pulumi.Input[str] time_created: The date and time the alarm was created. Format defined by RFC3339. Example: `
|
464
|
-
:param pulumi.Input[str] time_updated: The date and time the alarm was last updated. Format defined by RFC3339. Example: `
|
463
|
+
:param pulumi.Input[str] time_created: The date and time the alarm was created. Format defined by RFC3339. Example: `2023-02-01T01:02:29.600Z`
|
464
|
+
:param pulumi.Input[str] time_updated: The date and time the alarm was last updated. Format defined by RFC3339. Example: `2023-02-03T01:02:29.600Z`
|
465
465
|
"""
|
466
466
|
if body is not None:
|
467
467
|
pulumi.set(__self__, "body", body)
|
@@ -548,7 +548,7 @@ class _AlarmState:
|
|
548
548
|
@pulumi.getter
|
549
549
|
def destinations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
550
550
|
"""
|
551
|
-
(Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications
|
551
|
+
(Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications, Streaming. Limit: One destination per supported destination service.
|
552
552
|
"""
|
553
553
|
return pulumi.get(self, "destinations")
|
554
554
|
|
@@ -784,7 +784,7 @@ class _AlarmState:
|
|
784
784
|
@pulumi.getter(name="timeCreated")
|
785
785
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
786
786
|
"""
|
787
|
-
The date and time the alarm was created. Format defined by RFC3339. Example: `
|
787
|
+
The date and time the alarm was created. Format defined by RFC3339. Example: `2023-02-01T01:02:29.600Z`
|
788
788
|
"""
|
789
789
|
return pulumi.get(self, "time_created")
|
790
790
|
|
@@ -796,7 +796,7 @@ class _AlarmState:
|
|
796
796
|
@pulumi.getter(name="timeUpdated")
|
797
797
|
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
798
798
|
"""
|
799
|
-
The date and time the alarm was last updated. Format defined by RFC3339. Example: `
|
799
|
+
The date and time the alarm was last updated. Format defined by RFC3339. Example: `2023-02-03T01:02:29.600Z`
|
800
800
|
"""
|
801
801
|
return pulumi.get(self, "time_updated")
|
802
802
|
|
@@ -892,7 +892,7 @@ class Alarm(pulumi.CustomResource):
|
|
892
892
|
: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. Example: `High CPU usage alert. Follow runbook instructions for resolution.`
|
893
893
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the alarm.
|
894
894
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"Operations.CostCenter": "42"}`
|
895
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] destinations: (Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications
|
895
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] destinations: (Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications, Streaming. Limit: One destination per supported destination service.
|
896
896
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name for the alarm. It does not have to be unique, and it's changeable. Avoid entering confidential information.
|
897
897
|
|
898
898
|
This value determines the title of each alarm notification.
|
@@ -1127,7 +1127,7 @@ class Alarm(pulumi.CustomResource):
|
|
1127
1127
|
: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. Example: `High CPU usage alert. Follow runbook instructions for resolution.`
|
1128
1128
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the alarm.
|
1129
1129
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"Operations.CostCenter": "42"}`
|
1130
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] destinations: (Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications
|
1130
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] destinations: (Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications, Streaming. Limit: One destination per supported destination service.
|
1131
1131
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name for the alarm. It does not have to be unique, and it's changeable. Avoid entering confidential information.
|
1132
1132
|
|
1133
1133
|
This value determines the title of each alarm notification.
|
@@ -1176,8 +1176,8 @@ class Alarm(pulumi.CustomResource):
|
|
1176
1176
|
:param pulumi.Input[str] severity: (Updatable) The perceived type of response required when the alarm is in the "FIRING" state. Example: `CRITICAL`
|
1177
1177
|
:param pulumi.Input[str] state: The current lifecycle state of the alarm. Example: `DELETED`
|
1178
1178
|
:param pulumi.Input[pulumi.InputType['AlarmSuppressionArgs']] suppression: (Updatable) The configuration details for suppressing an alarm.
|
1179
|
-
:param pulumi.Input[str] time_created: The date and time the alarm was created. Format defined by RFC3339. Example: `
|
1180
|
-
:param pulumi.Input[str] time_updated: The date and time the alarm was last updated. Format defined by RFC3339. Example: `
|
1179
|
+
:param pulumi.Input[str] time_created: The date and time the alarm was created. Format defined by RFC3339. Example: `2023-02-01T01:02:29.600Z`
|
1180
|
+
:param pulumi.Input[str] time_updated: The date and time the alarm was last updated. Format defined by RFC3339. Example: `2023-02-03T01:02:29.600Z`
|
1181
1181
|
"""
|
1182
1182
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1183
1183
|
|
@@ -1235,7 +1235,7 @@ class Alarm(pulumi.CustomResource):
|
|
1235
1235
|
@pulumi.getter
|
1236
1236
|
def destinations(self) -> pulumi.Output[Sequence[str]]:
|
1237
1237
|
"""
|
1238
|
-
(Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications
|
1238
|
+
(Updatable) A list of destinations for alarm notifications. Each destination is represented by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a related resource, such as a [topic](https://docs.cloud.oracle.com/iaas/api/#/en/notification/latest/NotificationTopic). Supported destination services: Notifications, Streaming. Limit: One destination per supported destination service.
|
1239
1239
|
"""
|
1240
1240
|
return pulumi.get(self, "destinations")
|
1241
1241
|
|
@@ -1403,7 +1403,7 @@ class Alarm(pulumi.CustomResource):
|
|
1403
1403
|
@pulumi.getter(name="timeCreated")
|
1404
1404
|
def time_created(self) -> pulumi.Output[str]:
|
1405
1405
|
"""
|
1406
|
-
The date and time the alarm was created. Format defined by RFC3339. Example: `
|
1406
|
+
The date and time the alarm was created. Format defined by RFC3339. Example: `2023-02-01T01:02:29.600Z`
|
1407
1407
|
"""
|
1408
1408
|
return pulumi.get(self, "time_created")
|
1409
1409
|
|
@@ -1411,7 +1411,7 @@ class Alarm(pulumi.CustomResource):
|
|
1411
1411
|
@pulumi.getter(name="timeUpdated")
|
1412
1412
|
def time_updated(self) -> pulumi.Output[str]:
|
1413
1413
|
"""
|
1414
|
-
The date and time the alarm was last updated. Format defined by RFC3339. Example: `
|
1414
|
+
The date and time the alarm was last updated. Format defined by RFC3339. Example: `2023-02-03T01:02:29.600Z`
|
1415
1415
|
"""
|
1416
1416
|
return pulumi.get(self, "time_updated")
|
1417
1417
|
|