pulumi-oci 1.35.0a1715356469__py3-none-any.whl → 1.36.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 +208 -0
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +40 -0
- pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
- pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
- pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
- pulumi_oci/core/outputs.py +261 -0
- pulumi_oci/database/_inputs.py +192 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/get_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_vm_cluster.py +14 -1
- pulumi_oci/database/outputs.py +418 -0
- pulumi_oci/database/vm_cluster.py +55 -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 +1 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/email/__init__.py +3 -0
- pulumi_oci/email/_inputs.py +46 -0
- pulumi_oci/email/dkim.py +4 -4
- pulumi_oci/email/email_domain.py +77 -0
- pulumi_oci/email/email_return_path.py +642 -0
- pulumi_oci/email/get_email_domain.py +27 -1
- pulumi_oci/email/get_email_return_path.py +274 -0
- pulumi_oci/email/get_email_return_paths.py +203 -0
- pulumi_oci/email/outputs.py +231 -0
- pulumi_oci/loadbalancer/_inputs.py +16 -0
- pulumi_oci/loadbalancer/listener.py +2 -0
- pulumi_oci/loadbalancer/outputs.py +14 -0
- pulumi_oci/loganalytics/namespace.py +4 -4
- pulumi_oci/networkloadbalancer/get_listener.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +51 -2
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/osmanagementhub/__init__.py +48 -0
- pulumi_oci/osmanagementhub/_inputs.py +3635 -493
- pulumi_oci/osmanagementhub/event.py +701 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
- pulumi_oci/osmanagementhub/get_errata.py +283 -0
- pulumi_oci/osmanagementhub/get_erratum.py +308 -0
- pulumi_oci/osmanagementhub/get_event.py +314 -0
- pulumi_oci/osmanagementhub/get_events.py +314 -0
- pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
- pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
- pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
- pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
- pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
- pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
- pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
- pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
- pulumi_oci/osmanagementhub/get_management_station.py +42 -19
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
- pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
- pulumi_oci/osmanagementhub/get_profile.py +51 -12
- pulumi_oci/osmanagementhub/get_profiles.py +76 -16
- pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
- pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
- pulumi_oci/osmanagementhub/get_software_package.py +301 -0
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
- pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
- pulumi_oci/osmanagementhub/get_software_source.py +109 -18
- pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
- pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
- pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
- pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
- pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
- pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
- pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
- pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
- pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
- pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
- pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
- pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
- pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
- pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
- pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
- pulumi_oci/osmanagementhub/management_station.py +184 -81
- pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
- pulumi_oci/osmanagementhub/outputs.py +10867 -2365
- pulumi_oci/osmanagementhub/profile.py +200 -78
- pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
- pulumi_oci/osmanagementhub/software_source.py +365 -181
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
- pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
- pulumi_oci/pulumi-plugin.json +2 -1
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +119 -64
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,701 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = ['EventArgs', 'Event']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class EventArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
event_id: pulumi.Input[str],
|
20
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
21
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
22
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None):
|
23
|
+
"""
|
24
|
+
The set of arguments for constructing a Event resource.
|
25
|
+
:param pulumi.Input[str] event_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the event.
|
26
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
27
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
28
|
+
: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"}`
|
29
|
+
|
30
|
+
|
31
|
+
** IMPORTANT **
|
32
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
33
|
+
"""
|
34
|
+
pulumi.set(__self__, "event_id", event_id)
|
35
|
+
if compartment_id is not None:
|
36
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
37
|
+
if defined_tags is not None:
|
38
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
39
|
+
if freeform_tags is not None:
|
40
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
41
|
+
|
42
|
+
@property
|
43
|
+
@pulumi.getter(name="eventId")
|
44
|
+
def event_id(self) -> pulumi.Input[str]:
|
45
|
+
"""
|
46
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the event.
|
47
|
+
"""
|
48
|
+
return pulumi.get(self, "event_id")
|
49
|
+
|
50
|
+
@event_id.setter
|
51
|
+
def event_id(self, value: pulumi.Input[str]):
|
52
|
+
pulumi.set(self, "event_id", value)
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter(name="compartmentId")
|
56
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
57
|
+
"""
|
58
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "compartment_id")
|
61
|
+
|
62
|
+
@compartment_id.setter
|
63
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
64
|
+
pulumi.set(self, "compartment_id", value)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="definedTags")
|
68
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
69
|
+
"""
|
70
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
71
|
+
"""
|
72
|
+
return pulumi.get(self, "defined_tags")
|
73
|
+
|
74
|
+
@defined_tags.setter
|
75
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
76
|
+
pulumi.set(self, "defined_tags", value)
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="freeformTags")
|
80
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
81
|
+
"""
|
82
|
+
(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"}`
|
83
|
+
|
84
|
+
|
85
|
+
** IMPORTANT **
|
86
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "freeform_tags")
|
89
|
+
|
90
|
+
@freeform_tags.setter
|
91
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
92
|
+
pulumi.set(self, "freeform_tags", value)
|
93
|
+
|
94
|
+
|
95
|
+
@pulumi.input_type
|
96
|
+
class _EventState:
|
97
|
+
def __init__(__self__, *,
|
98
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
99
|
+
datas: Optional[pulumi.Input[Sequence[pulumi.Input['EventDataArgs']]]] = None,
|
100
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
101
|
+
event_details: Optional[pulumi.Input[str]] = None,
|
102
|
+
event_id: Optional[pulumi.Input[str]] = None,
|
103
|
+
event_summary: Optional[pulumi.Input[str]] = None,
|
104
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
105
|
+
is_managed_by_autonomous_linux: Optional[pulumi.Input[bool]] = None,
|
106
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
107
|
+
resource_id: Optional[pulumi.Input[str]] = None,
|
108
|
+
state: Optional[pulumi.Input[str]] = None,
|
109
|
+
system_details: Optional[pulumi.Input[Sequence[pulumi.Input['EventSystemDetailArgs']]]] = None,
|
110
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
111
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
112
|
+
time_occurred: Optional[pulumi.Input[str]] = None,
|
113
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
114
|
+
type: Optional[pulumi.Input[str]] = None):
|
115
|
+
"""
|
116
|
+
Input properties used for looking up and filtering Event resources.
|
117
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
118
|
+
:param pulumi.Input[Sequence[pulumi.Input['EventDataArgs']]] datas: Provides additional information for a management station event.
|
119
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
120
|
+
:param pulumi.Input[str] event_details: Details of an event.
|
121
|
+
:param pulumi.Input[str] event_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the event.
|
122
|
+
:param pulumi.Input[str] event_summary: Summary of the event.
|
123
|
+
: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"}`
|
124
|
+
|
125
|
+
|
126
|
+
** IMPORTANT **
|
127
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
128
|
+
:param pulumi.Input[bool] is_managed_by_autonomous_linux: Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
|
129
|
+
:param pulumi.Input[str] lifecycle_details: Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
|
130
|
+
:param pulumi.Input[str] resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance or resource where the event occurred.
|
131
|
+
:param pulumi.Input[str] state: The current state of the event.
|
132
|
+
:param pulumi.Input[Sequence[pulumi.Input['EventSystemDetailArgs']]] system_details: Provides information about the system architecture and operating system.
|
133
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
134
|
+
:param pulumi.Input[str] time_created: The date and time the Event was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
135
|
+
:param pulumi.Input[str] time_occurred: The date and time that the event occurred.
|
136
|
+
:param pulumi.Input[str] time_updated: The date and time that the event was updated (in [RFC 3339](https://tools.ietf.org/html/rfc3339) format). Example: `2016-08-25T21:10:29.600Z`
|
137
|
+
:param pulumi.Input[str] type: Event type:
|
138
|
+
"""
|
139
|
+
if compartment_id is not None:
|
140
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
141
|
+
if datas is not None:
|
142
|
+
pulumi.set(__self__, "datas", datas)
|
143
|
+
if defined_tags is not None:
|
144
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
145
|
+
if event_details is not None:
|
146
|
+
pulumi.set(__self__, "event_details", event_details)
|
147
|
+
if event_id is not None:
|
148
|
+
pulumi.set(__self__, "event_id", event_id)
|
149
|
+
if event_summary is not None:
|
150
|
+
pulumi.set(__self__, "event_summary", event_summary)
|
151
|
+
if freeform_tags is not None:
|
152
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
153
|
+
if is_managed_by_autonomous_linux is not None:
|
154
|
+
pulumi.set(__self__, "is_managed_by_autonomous_linux", is_managed_by_autonomous_linux)
|
155
|
+
if lifecycle_details is not None:
|
156
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
157
|
+
if resource_id is not None:
|
158
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
159
|
+
if state is not None:
|
160
|
+
pulumi.set(__self__, "state", state)
|
161
|
+
if system_details is not None:
|
162
|
+
pulumi.set(__self__, "system_details", system_details)
|
163
|
+
if system_tags is not None:
|
164
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
165
|
+
if time_created is not None:
|
166
|
+
pulumi.set(__self__, "time_created", time_created)
|
167
|
+
if time_occurred is not None:
|
168
|
+
pulumi.set(__self__, "time_occurred", time_occurred)
|
169
|
+
if time_updated is not None:
|
170
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
171
|
+
if type is not None:
|
172
|
+
pulumi.set(__self__, "type", type)
|
173
|
+
|
174
|
+
@property
|
175
|
+
@pulumi.getter(name="compartmentId")
|
176
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
177
|
+
"""
|
178
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
179
|
+
"""
|
180
|
+
return pulumi.get(self, "compartment_id")
|
181
|
+
|
182
|
+
@compartment_id.setter
|
183
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
184
|
+
pulumi.set(self, "compartment_id", value)
|
185
|
+
|
186
|
+
@property
|
187
|
+
@pulumi.getter
|
188
|
+
def datas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EventDataArgs']]]]:
|
189
|
+
"""
|
190
|
+
Provides additional information for a management station event.
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "datas")
|
193
|
+
|
194
|
+
@datas.setter
|
195
|
+
def datas(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EventDataArgs']]]]):
|
196
|
+
pulumi.set(self, "datas", value)
|
197
|
+
|
198
|
+
@property
|
199
|
+
@pulumi.getter(name="definedTags")
|
200
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
201
|
+
"""
|
202
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
203
|
+
"""
|
204
|
+
return pulumi.get(self, "defined_tags")
|
205
|
+
|
206
|
+
@defined_tags.setter
|
207
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
208
|
+
pulumi.set(self, "defined_tags", value)
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter(name="eventDetails")
|
212
|
+
def event_details(self) -> Optional[pulumi.Input[str]]:
|
213
|
+
"""
|
214
|
+
Details of an event.
|
215
|
+
"""
|
216
|
+
return pulumi.get(self, "event_details")
|
217
|
+
|
218
|
+
@event_details.setter
|
219
|
+
def event_details(self, value: Optional[pulumi.Input[str]]):
|
220
|
+
pulumi.set(self, "event_details", value)
|
221
|
+
|
222
|
+
@property
|
223
|
+
@pulumi.getter(name="eventId")
|
224
|
+
def event_id(self) -> Optional[pulumi.Input[str]]:
|
225
|
+
"""
|
226
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the event.
|
227
|
+
"""
|
228
|
+
return pulumi.get(self, "event_id")
|
229
|
+
|
230
|
+
@event_id.setter
|
231
|
+
def event_id(self, value: Optional[pulumi.Input[str]]):
|
232
|
+
pulumi.set(self, "event_id", value)
|
233
|
+
|
234
|
+
@property
|
235
|
+
@pulumi.getter(name="eventSummary")
|
236
|
+
def event_summary(self) -> Optional[pulumi.Input[str]]:
|
237
|
+
"""
|
238
|
+
Summary of the event.
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "event_summary")
|
241
|
+
|
242
|
+
@event_summary.setter
|
243
|
+
def event_summary(self, value: Optional[pulumi.Input[str]]):
|
244
|
+
pulumi.set(self, "event_summary", value)
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter(name="freeformTags")
|
248
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
249
|
+
"""
|
250
|
+
(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"}`
|
251
|
+
|
252
|
+
|
253
|
+
** IMPORTANT **
|
254
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
255
|
+
"""
|
256
|
+
return pulumi.get(self, "freeform_tags")
|
257
|
+
|
258
|
+
@freeform_tags.setter
|
259
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
260
|
+
pulumi.set(self, "freeform_tags", value)
|
261
|
+
|
262
|
+
@property
|
263
|
+
@pulumi.getter(name="isManagedByAutonomousLinux")
|
264
|
+
def is_managed_by_autonomous_linux(self) -> Optional[pulumi.Input[bool]]:
|
265
|
+
"""
|
266
|
+
Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
|
267
|
+
"""
|
268
|
+
return pulumi.get(self, "is_managed_by_autonomous_linux")
|
269
|
+
|
270
|
+
@is_managed_by_autonomous_linux.setter
|
271
|
+
def is_managed_by_autonomous_linux(self, value: Optional[pulumi.Input[bool]]):
|
272
|
+
pulumi.set(self, "is_managed_by_autonomous_linux", value)
|
273
|
+
|
274
|
+
@property
|
275
|
+
@pulumi.getter(name="lifecycleDetails")
|
276
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
277
|
+
"""
|
278
|
+
Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
|
279
|
+
"""
|
280
|
+
return pulumi.get(self, "lifecycle_details")
|
281
|
+
|
282
|
+
@lifecycle_details.setter
|
283
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
284
|
+
pulumi.set(self, "lifecycle_details", value)
|
285
|
+
|
286
|
+
@property
|
287
|
+
@pulumi.getter(name="resourceId")
|
288
|
+
def resource_id(self) -> Optional[pulumi.Input[str]]:
|
289
|
+
"""
|
290
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance or resource where the event occurred.
|
291
|
+
"""
|
292
|
+
return pulumi.get(self, "resource_id")
|
293
|
+
|
294
|
+
@resource_id.setter
|
295
|
+
def resource_id(self, value: Optional[pulumi.Input[str]]):
|
296
|
+
pulumi.set(self, "resource_id", value)
|
297
|
+
|
298
|
+
@property
|
299
|
+
@pulumi.getter
|
300
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
301
|
+
"""
|
302
|
+
The current state of the event.
|
303
|
+
"""
|
304
|
+
return pulumi.get(self, "state")
|
305
|
+
|
306
|
+
@state.setter
|
307
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
308
|
+
pulumi.set(self, "state", value)
|
309
|
+
|
310
|
+
@property
|
311
|
+
@pulumi.getter(name="systemDetails")
|
312
|
+
def system_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EventSystemDetailArgs']]]]:
|
313
|
+
"""
|
314
|
+
Provides information about the system architecture and operating system.
|
315
|
+
"""
|
316
|
+
return pulumi.get(self, "system_details")
|
317
|
+
|
318
|
+
@system_details.setter
|
319
|
+
def system_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EventSystemDetailArgs']]]]):
|
320
|
+
pulumi.set(self, "system_details", value)
|
321
|
+
|
322
|
+
@property
|
323
|
+
@pulumi.getter(name="systemTags")
|
324
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
325
|
+
"""
|
326
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
327
|
+
"""
|
328
|
+
return pulumi.get(self, "system_tags")
|
329
|
+
|
330
|
+
@system_tags.setter
|
331
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
332
|
+
pulumi.set(self, "system_tags", value)
|
333
|
+
|
334
|
+
@property
|
335
|
+
@pulumi.getter(name="timeCreated")
|
336
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
337
|
+
"""
|
338
|
+
The date and time the Event was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
339
|
+
"""
|
340
|
+
return pulumi.get(self, "time_created")
|
341
|
+
|
342
|
+
@time_created.setter
|
343
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
344
|
+
pulumi.set(self, "time_created", value)
|
345
|
+
|
346
|
+
@property
|
347
|
+
@pulumi.getter(name="timeOccurred")
|
348
|
+
def time_occurred(self) -> Optional[pulumi.Input[str]]:
|
349
|
+
"""
|
350
|
+
The date and time that the event occurred.
|
351
|
+
"""
|
352
|
+
return pulumi.get(self, "time_occurred")
|
353
|
+
|
354
|
+
@time_occurred.setter
|
355
|
+
def time_occurred(self, value: Optional[pulumi.Input[str]]):
|
356
|
+
pulumi.set(self, "time_occurred", value)
|
357
|
+
|
358
|
+
@property
|
359
|
+
@pulumi.getter(name="timeUpdated")
|
360
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
361
|
+
"""
|
362
|
+
The date and time that the event was updated (in [RFC 3339](https://tools.ietf.org/html/rfc3339) format). Example: `2016-08-25T21:10:29.600Z`
|
363
|
+
"""
|
364
|
+
return pulumi.get(self, "time_updated")
|
365
|
+
|
366
|
+
@time_updated.setter
|
367
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
368
|
+
pulumi.set(self, "time_updated", value)
|
369
|
+
|
370
|
+
@property
|
371
|
+
@pulumi.getter
|
372
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
373
|
+
"""
|
374
|
+
Event type:
|
375
|
+
"""
|
376
|
+
return pulumi.get(self, "type")
|
377
|
+
|
378
|
+
@type.setter
|
379
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
380
|
+
pulumi.set(self, "type", value)
|
381
|
+
|
382
|
+
|
383
|
+
class Event(pulumi.CustomResource):
|
384
|
+
@overload
|
385
|
+
def __init__(__self__,
|
386
|
+
resource_name: str,
|
387
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
388
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
389
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
390
|
+
event_id: Optional[pulumi.Input[str]] = None,
|
391
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
392
|
+
__props__=None):
|
393
|
+
"""
|
394
|
+
This resource provides the Event resource in Oracle Cloud Infrastructure Os Management Hub service.
|
395
|
+
|
396
|
+
Updates the tags for an event.
|
397
|
+
|
398
|
+
## Import
|
399
|
+
|
400
|
+
Events can be imported using the `id`, e.g.
|
401
|
+
|
402
|
+
```sh
|
403
|
+
$ pulumi import oci:OsManagementHub/event:Event test_event "id"
|
404
|
+
```
|
405
|
+
|
406
|
+
:param str resource_name: The name of the resource.
|
407
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
408
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
409
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
410
|
+
:param pulumi.Input[str] event_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the event.
|
411
|
+
: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"}`
|
412
|
+
|
413
|
+
|
414
|
+
** IMPORTANT **
|
415
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
416
|
+
"""
|
417
|
+
...
|
418
|
+
@overload
|
419
|
+
def __init__(__self__,
|
420
|
+
resource_name: str,
|
421
|
+
args: EventArgs,
|
422
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
423
|
+
"""
|
424
|
+
This resource provides the Event resource in Oracle Cloud Infrastructure Os Management Hub service.
|
425
|
+
|
426
|
+
Updates the tags for an event.
|
427
|
+
|
428
|
+
## Import
|
429
|
+
|
430
|
+
Events can be imported using the `id`, e.g.
|
431
|
+
|
432
|
+
```sh
|
433
|
+
$ pulumi import oci:OsManagementHub/event:Event test_event "id"
|
434
|
+
```
|
435
|
+
|
436
|
+
:param str resource_name: The name of the resource.
|
437
|
+
:param EventArgs args: The arguments to use to populate this resource's properties.
|
438
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
439
|
+
"""
|
440
|
+
...
|
441
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
442
|
+
resource_args, opts = _utilities.get_resource_args_opts(EventArgs, pulumi.ResourceOptions, *args, **kwargs)
|
443
|
+
if resource_args is not None:
|
444
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
445
|
+
else:
|
446
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
447
|
+
|
448
|
+
def _internal_init(__self__,
|
449
|
+
resource_name: str,
|
450
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
451
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
452
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
453
|
+
event_id: Optional[pulumi.Input[str]] = None,
|
454
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
455
|
+
__props__=None):
|
456
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
457
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
458
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
459
|
+
if opts.id is None:
|
460
|
+
if __props__ is not None:
|
461
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
462
|
+
__props__ = EventArgs.__new__(EventArgs)
|
463
|
+
|
464
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
465
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
466
|
+
if event_id is None and not opts.urn:
|
467
|
+
raise TypeError("Missing required property 'event_id'")
|
468
|
+
__props__.__dict__["event_id"] = event_id
|
469
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
470
|
+
__props__.__dict__["datas"] = None
|
471
|
+
__props__.__dict__["event_details"] = None
|
472
|
+
__props__.__dict__["event_summary"] = None
|
473
|
+
__props__.__dict__["is_managed_by_autonomous_linux"] = None
|
474
|
+
__props__.__dict__["lifecycle_details"] = None
|
475
|
+
__props__.__dict__["resource_id"] = None
|
476
|
+
__props__.__dict__["state"] = None
|
477
|
+
__props__.__dict__["system_details"] = None
|
478
|
+
__props__.__dict__["system_tags"] = None
|
479
|
+
__props__.__dict__["time_created"] = None
|
480
|
+
__props__.__dict__["time_occurred"] = None
|
481
|
+
__props__.__dict__["time_updated"] = None
|
482
|
+
__props__.__dict__["type"] = None
|
483
|
+
super(Event, __self__).__init__(
|
484
|
+
'oci:OsManagementHub/event:Event',
|
485
|
+
resource_name,
|
486
|
+
__props__,
|
487
|
+
opts)
|
488
|
+
|
489
|
+
@staticmethod
|
490
|
+
def get(resource_name: str,
|
491
|
+
id: pulumi.Input[str],
|
492
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
493
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
494
|
+
datas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventDataArgs']]]]] = None,
|
495
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
496
|
+
event_details: Optional[pulumi.Input[str]] = None,
|
497
|
+
event_id: Optional[pulumi.Input[str]] = None,
|
498
|
+
event_summary: Optional[pulumi.Input[str]] = None,
|
499
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
500
|
+
is_managed_by_autonomous_linux: Optional[pulumi.Input[bool]] = None,
|
501
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
502
|
+
resource_id: Optional[pulumi.Input[str]] = None,
|
503
|
+
state: Optional[pulumi.Input[str]] = None,
|
504
|
+
system_details: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventSystemDetailArgs']]]]] = None,
|
505
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
506
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
507
|
+
time_occurred: Optional[pulumi.Input[str]] = None,
|
508
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
509
|
+
type: Optional[pulumi.Input[str]] = None) -> 'Event':
|
510
|
+
"""
|
511
|
+
Get an existing Event resource's state with the given name, id, and optional extra
|
512
|
+
properties used to qualify the lookup.
|
513
|
+
|
514
|
+
:param str resource_name: The unique name of the resulting resource.
|
515
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
516
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
517
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
518
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventDataArgs']]]] datas: Provides additional information for a management station event.
|
519
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
520
|
+
:param pulumi.Input[str] event_details: Details of an event.
|
521
|
+
:param pulumi.Input[str] event_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the event.
|
522
|
+
:param pulumi.Input[str] event_summary: Summary of the event.
|
523
|
+
: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"}`
|
524
|
+
|
525
|
+
|
526
|
+
** IMPORTANT **
|
527
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
528
|
+
:param pulumi.Input[bool] is_managed_by_autonomous_linux: Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
|
529
|
+
:param pulumi.Input[str] lifecycle_details: Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
|
530
|
+
:param pulumi.Input[str] resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance or resource where the event occurred.
|
531
|
+
:param pulumi.Input[str] state: The current state of the event.
|
532
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['EventSystemDetailArgs']]]] system_details: Provides information about the system architecture and operating system.
|
533
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
534
|
+
:param pulumi.Input[str] time_created: The date and time the Event was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
535
|
+
:param pulumi.Input[str] time_occurred: The date and time that the event occurred.
|
536
|
+
:param pulumi.Input[str] time_updated: The date and time that the event was updated (in [RFC 3339](https://tools.ietf.org/html/rfc3339) format). Example: `2016-08-25T21:10:29.600Z`
|
537
|
+
:param pulumi.Input[str] type: Event type:
|
538
|
+
"""
|
539
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
540
|
+
|
541
|
+
__props__ = _EventState.__new__(_EventState)
|
542
|
+
|
543
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
544
|
+
__props__.__dict__["datas"] = datas
|
545
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
546
|
+
__props__.__dict__["event_details"] = event_details
|
547
|
+
__props__.__dict__["event_id"] = event_id
|
548
|
+
__props__.__dict__["event_summary"] = event_summary
|
549
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
550
|
+
__props__.__dict__["is_managed_by_autonomous_linux"] = is_managed_by_autonomous_linux
|
551
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
552
|
+
__props__.__dict__["resource_id"] = resource_id
|
553
|
+
__props__.__dict__["state"] = state
|
554
|
+
__props__.__dict__["system_details"] = system_details
|
555
|
+
__props__.__dict__["system_tags"] = system_tags
|
556
|
+
__props__.__dict__["time_created"] = time_created
|
557
|
+
__props__.__dict__["time_occurred"] = time_occurred
|
558
|
+
__props__.__dict__["time_updated"] = time_updated
|
559
|
+
__props__.__dict__["type"] = type
|
560
|
+
return Event(resource_name, opts=opts, __props__=__props__)
|
561
|
+
|
562
|
+
@property
|
563
|
+
@pulumi.getter(name="compartmentId")
|
564
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
565
|
+
"""
|
566
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
567
|
+
"""
|
568
|
+
return pulumi.get(self, "compartment_id")
|
569
|
+
|
570
|
+
@property
|
571
|
+
@pulumi.getter
|
572
|
+
def datas(self) -> pulumi.Output[Sequence['outputs.EventData']]:
|
573
|
+
"""
|
574
|
+
Provides additional information for a management station event.
|
575
|
+
"""
|
576
|
+
return pulumi.get(self, "datas")
|
577
|
+
|
578
|
+
@property
|
579
|
+
@pulumi.getter(name="definedTags")
|
580
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
581
|
+
"""
|
582
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
583
|
+
"""
|
584
|
+
return pulumi.get(self, "defined_tags")
|
585
|
+
|
586
|
+
@property
|
587
|
+
@pulumi.getter(name="eventDetails")
|
588
|
+
def event_details(self) -> pulumi.Output[str]:
|
589
|
+
"""
|
590
|
+
Details of an event.
|
591
|
+
"""
|
592
|
+
return pulumi.get(self, "event_details")
|
593
|
+
|
594
|
+
@property
|
595
|
+
@pulumi.getter(name="eventId")
|
596
|
+
def event_id(self) -> pulumi.Output[str]:
|
597
|
+
"""
|
598
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the event.
|
599
|
+
"""
|
600
|
+
return pulumi.get(self, "event_id")
|
601
|
+
|
602
|
+
@property
|
603
|
+
@pulumi.getter(name="eventSummary")
|
604
|
+
def event_summary(self) -> pulumi.Output[str]:
|
605
|
+
"""
|
606
|
+
Summary of the event.
|
607
|
+
"""
|
608
|
+
return pulumi.get(self, "event_summary")
|
609
|
+
|
610
|
+
@property
|
611
|
+
@pulumi.getter(name="freeformTags")
|
612
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
613
|
+
"""
|
614
|
+
(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"}`
|
615
|
+
|
616
|
+
|
617
|
+
** IMPORTANT **
|
618
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
619
|
+
"""
|
620
|
+
return pulumi.get(self, "freeform_tags")
|
621
|
+
|
622
|
+
@property
|
623
|
+
@pulumi.getter(name="isManagedByAutonomousLinux")
|
624
|
+
def is_managed_by_autonomous_linux(self) -> pulumi.Output[bool]:
|
625
|
+
"""
|
626
|
+
Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
|
627
|
+
"""
|
628
|
+
return pulumi.get(self, "is_managed_by_autonomous_linux")
|
629
|
+
|
630
|
+
@property
|
631
|
+
@pulumi.getter(name="lifecycleDetails")
|
632
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
633
|
+
"""
|
634
|
+
Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
|
635
|
+
"""
|
636
|
+
return pulumi.get(self, "lifecycle_details")
|
637
|
+
|
638
|
+
@property
|
639
|
+
@pulumi.getter(name="resourceId")
|
640
|
+
def resource_id(self) -> pulumi.Output[str]:
|
641
|
+
"""
|
642
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance or resource where the event occurred.
|
643
|
+
"""
|
644
|
+
return pulumi.get(self, "resource_id")
|
645
|
+
|
646
|
+
@property
|
647
|
+
@pulumi.getter
|
648
|
+
def state(self) -> pulumi.Output[str]:
|
649
|
+
"""
|
650
|
+
The current state of the event.
|
651
|
+
"""
|
652
|
+
return pulumi.get(self, "state")
|
653
|
+
|
654
|
+
@property
|
655
|
+
@pulumi.getter(name="systemDetails")
|
656
|
+
def system_details(self) -> pulumi.Output[Sequence['outputs.EventSystemDetail']]:
|
657
|
+
"""
|
658
|
+
Provides information about the system architecture and operating system.
|
659
|
+
"""
|
660
|
+
return pulumi.get(self, "system_details")
|
661
|
+
|
662
|
+
@property
|
663
|
+
@pulumi.getter(name="systemTags")
|
664
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
665
|
+
"""
|
666
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
667
|
+
"""
|
668
|
+
return pulumi.get(self, "system_tags")
|
669
|
+
|
670
|
+
@property
|
671
|
+
@pulumi.getter(name="timeCreated")
|
672
|
+
def time_created(self) -> pulumi.Output[str]:
|
673
|
+
"""
|
674
|
+
The date and time the Event was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
675
|
+
"""
|
676
|
+
return pulumi.get(self, "time_created")
|
677
|
+
|
678
|
+
@property
|
679
|
+
@pulumi.getter(name="timeOccurred")
|
680
|
+
def time_occurred(self) -> pulumi.Output[str]:
|
681
|
+
"""
|
682
|
+
The date and time that the event occurred.
|
683
|
+
"""
|
684
|
+
return pulumi.get(self, "time_occurred")
|
685
|
+
|
686
|
+
@property
|
687
|
+
@pulumi.getter(name="timeUpdated")
|
688
|
+
def time_updated(self) -> pulumi.Output[str]:
|
689
|
+
"""
|
690
|
+
The date and time that the event was updated (in [RFC 3339](https://tools.ietf.org/html/rfc3339) format). Example: `2016-08-25T21:10:29.600Z`
|
691
|
+
"""
|
692
|
+
return pulumi.get(self, "time_updated")
|
693
|
+
|
694
|
+
@property
|
695
|
+
@pulumi.getter
|
696
|
+
def type(self) -> pulumi.Output[str]:
|
697
|
+
"""
|
698
|
+
Event type:
|
699
|
+
"""
|
700
|
+
return pulumi.get(self, "type")
|
701
|
+
|