pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. pulumi_oci/__init__.py +145 -0
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/core/_inputs.py +648 -159
  6. pulumi_oci/core/cluster_network.py +7 -7
  7. pulumi_oci/core/get_instance.py +29 -1
  8. pulumi_oci/core/get_vcn.py +15 -1
  9. pulumi_oci/core/get_vnic.py +15 -1
  10. pulumi_oci/core/instance.py +87 -0
  11. pulumi_oci/core/instance_configuration.py +12 -0
  12. pulumi_oci/core/ipsec.py +183 -23
  13. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  14. pulumi_oci/core/outputs.py +709 -107
  15. pulumi_oci/core/service_gateway.py +13 -7
  16. pulumi_oci/core/vcn.py +65 -23
  17. pulumi_oci/core/virtual_network.py +35 -1
  18. pulumi_oci/core/vnic_attachment.py +2 -0
  19. pulumi_oci/database/_inputs.py +905 -27
  20. pulumi_oci/database/autonomous_database.py +48 -28
  21. pulumi_oci/database/autonomous_database_backup.py +12 -12
  22. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  23. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  24. pulumi_oci/database/backup.py +12 -12
  25. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  27. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  28. pulumi_oci/database/database.py +15 -15
  29. pulumi_oci/database/database_upgrade.py +12 -12
  30. pulumi_oci/database/db_system.py +9 -9
  31. pulumi_oci/database/exadata_infrastructure.py +2 -0
  32. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  33. pulumi_oci/database/get_autonomous_database.py +18 -4
  34. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  35. pulumi_oci/database/get_autonomous_databases.py +88 -5
  36. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  37. pulumi_oci/database/get_database.py +3 -3
  38. pulumi_oci/database/get_pluggable_database.py +12 -1
  39. pulumi_oci/database/get_vm_cluster.py +15 -1
  40. pulumi_oci/database/outputs.py +1431 -74
  41. pulumi_oci/database/pluggable_database.py +34 -0
  42. pulumi_oci/database/vm_cluster.py +71 -0
  43. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  44. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  45. pulumi_oci/datasafe/__init__.py +12 -0
  46. pulumi_oci/datasafe/_inputs.py +441 -0
  47. pulumi_oci/datasafe/get_reports.py +23 -1
  48. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  49. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  50. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  51. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  52. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  53. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  54. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  55. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  56. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  57. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  58. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  59. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  60. pulumi_oci/datasafe/outputs.py +1808 -2
  61. pulumi_oci/desktops/_inputs.py +223 -7
  62. pulumi_oci/desktops/desktop_pool.py +186 -21
  63. pulumi_oci/desktops/get_desktop_pool.py +47 -5
  64. pulumi_oci/desktops/outputs.py +480 -19
  65. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  66. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  67. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  68. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  69. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  70. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  71. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  72. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  73. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  74. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  75. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  76. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  77. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  78. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  79. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  80. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  81. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  82. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  83. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  84. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  85. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  86. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  87. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  88. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  89. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  90. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  91. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  92. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  93. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  94. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  95. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  96. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  97. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  98. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  99. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  100. pulumi_oci/fleetappsmanagement/property.py +697 -0
  101. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  102. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  103. pulumi_oci/functions/outputs.py +11 -0
  104. pulumi_oci/fusionapps/_inputs.py +21 -20
  105. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  106. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  107. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  108. pulumi_oci/fusionapps/outputs.py +11 -10
  109. pulumi_oci/integration/__init__.py +1 -0
  110. pulumi_oci/integration/_inputs.py +289 -2
  111. pulumi_oci/integration/get_integration_instance.py +65 -1
  112. pulumi_oci/integration/integration_instance.py +172 -0
  113. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  114. pulumi_oci/integration/outputs.py +587 -19
  115. pulumi_oci/loadbalancer/_inputs.py +20 -0
  116. pulumi_oci/loadbalancer/listener.py +4 -2
  117. pulumi_oci/loadbalancer/outputs.py +16 -2
  118. pulumi_oci/monitoring/_inputs.py +137 -16
  119. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  120. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  121. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  122. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  123. pulumi_oci/monitoring/outputs.py +291 -18
  124. pulumi_oci/mysql/mysql_db_system.py +7 -7
  125. pulumi_oci/objectstorage/__init__.py +3 -0
  126. pulumi_oci/objectstorage/_inputs.py +97 -0
  127. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  128. pulumi_oci/objectstorage/get_objects.py +6 -6
  129. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  130. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  131. pulumi_oci/objectstorage/outputs.py +258 -0
  132. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  133. pulumi_oci/objectstorage/storage_object.py +7 -7
  134. pulumi_oci/opsi/_inputs.py +268 -114
  135. pulumi_oci/opsi/database_insight.py +162 -21
  136. pulumi_oci/opsi/exadata_insight.py +44 -0
  137. pulumi_oci/opsi/get_database_insight.py +40 -1
  138. pulumi_oci/opsi/get_host_insights.py +2 -2
  139. pulumi_oci/opsi/host_insight.py +0 -48
  140. pulumi_oci/opsi/outputs.py +405 -109
  141. pulumi_oci/pulumi-plugin.json +1 -1
  142. pulumi_oci/securityattribute/__init__.py +15 -0
  143. pulumi_oci/securityattribute/_inputs.py +209 -0
  144. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  145. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  146. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  147. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  148. pulumi_oci/securityattribute/outputs.py +466 -0
  149. pulumi_oci/securityattribute/security_attribute.py +588 -0
  150. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  151. pulumi_oci/stackmonitoring/__init__.py +5 -0
  152. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  153. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  154. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  155. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  156. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  157. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  158. pulumi_oci/stackmonitoring/outputs.py +603 -0
  159. pulumi_oci/zpr/__init__.py +14 -0
  160. pulumi_oci/zpr/_inputs.py +79 -0
  161. pulumi_oci/zpr/configuration.py +516 -0
  162. pulumi_oci/zpr/get_configuration.py +230 -0
  163. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  164. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  165. pulumi_oci/zpr/outputs.py +203 -0
  166. pulumi_oci/zpr/zpr_policy.py +614 -0
  167. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
  168. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
  169. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
  170. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,323 @@
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 sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'GetPropertyResult',
19
+ 'AwaitableGetPropertyResult',
20
+ 'get_property',
21
+ 'get_property_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetPropertyResult:
26
+ """
27
+ A collection of values returned by getProperty.
28
+ """
29
+ def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, property_id=None, resource_region=None, scope=None, selection=None, state=None, system_tags=None, time_created=None, time_updated=None, type=None, value_type=None, values=None):
30
+ if compartment_id and not isinstance(compartment_id, str):
31
+ raise TypeError("Expected argument 'compartment_id' to be a str")
32
+ pulumi.set(__self__, "compartment_id", compartment_id)
33
+ if defined_tags and not isinstance(defined_tags, dict):
34
+ raise TypeError("Expected argument 'defined_tags' to be a dict")
35
+ pulumi.set(__self__, "defined_tags", defined_tags)
36
+ if display_name and not isinstance(display_name, str):
37
+ raise TypeError("Expected argument 'display_name' to be a str")
38
+ pulumi.set(__self__, "display_name", display_name)
39
+ if freeform_tags and not isinstance(freeform_tags, dict):
40
+ raise TypeError("Expected argument 'freeform_tags' to be a dict")
41
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
42
+ if id and not isinstance(id, str):
43
+ raise TypeError("Expected argument 'id' to be a str")
44
+ pulumi.set(__self__, "id", id)
45
+ if lifecycle_details and not isinstance(lifecycle_details, str):
46
+ raise TypeError("Expected argument 'lifecycle_details' to be a str")
47
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
48
+ if property_id and not isinstance(property_id, str):
49
+ raise TypeError("Expected argument 'property_id' to be a str")
50
+ pulumi.set(__self__, "property_id", property_id)
51
+ if resource_region and not isinstance(resource_region, str):
52
+ raise TypeError("Expected argument 'resource_region' to be a str")
53
+ pulumi.set(__self__, "resource_region", resource_region)
54
+ if scope and not isinstance(scope, str):
55
+ raise TypeError("Expected argument 'scope' to be a str")
56
+ pulumi.set(__self__, "scope", scope)
57
+ if selection and not isinstance(selection, str):
58
+ raise TypeError("Expected argument 'selection' to be a str")
59
+ pulumi.set(__self__, "selection", selection)
60
+ if state and not isinstance(state, str):
61
+ raise TypeError("Expected argument 'state' to be a str")
62
+ pulumi.set(__self__, "state", state)
63
+ if system_tags and not isinstance(system_tags, dict):
64
+ raise TypeError("Expected argument 'system_tags' to be a dict")
65
+ pulumi.set(__self__, "system_tags", system_tags)
66
+ if time_created and not isinstance(time_created, str):
67
+ raise TypeError("Expected argument 'time_created' to be a str")
68
+ pulumi.set(__self__, "time_created", time_created)
69
+ if time_updated and not isinstance(time_updated, str):
70
+ raise TypeError("Expected argument 'time_updated' to be a str")
71
+ pulumi.set(__self__, "time_updated", time_updated)
72
+ if type and not isinstance(type, str):
73
+ raise TypeError("Expected argument 'type' to be a str")
74
+ pulumi.set(__self__, "type", type)
75
+ if value_type and not isinstance(value_type, str):
76
+ raise TypeError("Expected argument 'value_type' to be a str")
77
+ pulumi.set(__self__, "value_type", value_type)
78
+ if values and not isinstance(values, list):
79
+ raise TypeError("Expected argument 'values' to be a list")
80
+ pulumi.set(__self__, "values", values)
81
+
82
+ @property
83
+ @pulumi.getter(name="compartmentId")
84
+ def compartment_id(self) -> str:
85
+ """
86
+ Tenancy OCID
87
+ """
88
+ return pulumi.get(self, "compartment_id")
89
+
90
+ @property
91
+ @pulumi.getter(name="definedTags")
92
+ def defined_tags(self) -> Mapping[str, str]:
93
+ """
94
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
95
+ """
96
+ return pulumi.get(self, "defined_tags")
97
+
98
+ @property
99
+ @pulumi.getter(name="displayName")
100
+ def display_name(self) -> str:
101
+ """
102
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
103
+ """
104
+ return pulumi.get(self, "display_name")
105
+
106
+ @property
107
+ @pulumi.getter(name="freeformTags")
108
+ def freeform_tags(self) -> Mapping[str, str]:
109
+ """
110
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
111
+ """
112
+ return pulumi.get(self, "freeform_tags")
113
+
114
+ @property
115
+ @pulumi.getter
116
+ def id(self) -> str:
117
+ """
118
+ The OCID of the resource.
119
+ """
120
+ return pulumi.get(self, "id")
121
+
122
+ @property
123
+ @pulumi.getter(name="lifecycleDetails")
124
+ def lifecycle_details(self) -> str:
125
+ """
126
+ A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
127
+ """
128
+ return pulumi.get(self, "lifecycle_details")
129
+
130
+ @property
131
+ @pulumi.getter(name="propertyId")
132
+ def property_id(self) -> str:
133
+ return pulumi.get(self, "property_id")
134
+
135
+ @property
136
+ @pulumi.getter(name="resourceRegion")
137
+ def resource_region(self) -> str:
138
+ """
139
+ Associated region
140
+ """
141
+ return pulumi.get(self, "resource_region")
142
+
143
+ @property
144
+ @pulumi.getter
145
+ def scope(self) -> str:
146
+ """
147
+ The scope of the property
148
+ """
149
+ return pulumi.get(self, "scope")
150
+
151
+ @property
152
+ @pulumi.getter
153
+ def selection(self) -> str:
154
+ """
155
+ Text selection of the category
156
+ """
157
+ return pulumi.get(self, "selection")
158
+
159
+ @property
160
+ @pulumi.getter
161
+ def state(self) -> str:
162
+ """
163
+ The current state of the Property.
164
+ """
165
+ return pulumi.get(self, "state")
166
+
167
+ @property
168
+ @pulumi.getter(name="systemTags")
169
+ def system_tags(self) -> Mapping[str, str]:
170
+ """
171
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
172
+ """
173
+ return pulumi.get(self, "system_tags")
174
+
175
+ @property
176
+ @pulumi.getter(name="timeCreated")
177
+ def time_created(self) -> str:
178
+ """
179
+ The time this resource was created. An RFC3339 formatted datetime string.
180
+ """
181
+ return pulumi.get(self, "time_created")
182
+
183
+ @property
184
+ @pulumi.getter(name="timeUpdated")
185
+ def time_updated(self) -> str:
186
+ """
187
+ The time this resource was last updated. An RFC3339 formatted datetime string.
188
+ """
189
+ return pulumi.get(self, "time_updated")
190
+
191
+ @property
192
+ @pulumi.getter
193
+ def type(self) -> str:
194
+ """
195
+ The type of the property.
196
+ """
197
+ return pulumi.get(self, "type")
198
+
199
+ @property
200
+ @pulumi.getter(name="valueType")
201
+ def value_type(self) -> str:
202
+ """
203
+ Format of the value
204
+ """
205
+ return pulumi.get(self, "value_type")
206
+
207
+ @property
208
+ @pulumi.getter
209
+ def values(self) -> Sequence[str]:
210
+ """
211
+ Values of the property (must be a single value if selection = 'single choice')
212
+ """
213
+ return pulumi.get(self, "values")
214
+
215
+
216
+ class AwaitableGetPropertyResult(GetPropertyResult):
217
+ # pylint: disable=using-constant-test
218
+ def __await__(self):
219
+ if False:
220
+ yield self
221
+ return GetPropertyResult(
222
+ compartment_id=self.compartment_id,
223
+ defined_tags=self.defined_tags,
224
+ display_name=self.display_name,
225
+ freeform_tags=self.freeform_tags,
226
+ id=self.id,
227
+ lifecycle_details=self.lifecycle_details,
228
+ property_id=self.property_id,
229
+ resource_region=self.resource_region,
230
+ scope=self.scope,
231
+ selection=self.selection,
232
+ state=self.state,
233
+ system_tags=self.system_tags,
234
+ time_created=self.time_created,
235
+ time_updated=self.time_updated,
236
+ type=self.type,
237
+ value_type=self.value_type,
238
+ values=self.values)
239
+
240
+
241
+ def get_property(property_id: Optional[str] = None,
242
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPropertyResult:
243
+ """
244
+ This data source provides details about a specific Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
245
+
246
+ Gets a Property by identifier
247
+
248
+ ## Example Usage
249
+
250
+ ```python
251
+ import pulumi
252
+ import pulumi_oci as oci
253
+
254
+ test_property = oci.FleetAppsManagement.get_property(property_id=test_property_oci_fleet_apps_management_property["id"])
255
+ ```
256
+
257
+
258
+ :param str property_id: unique Property identifier
259
+ """
260
+ __args__ = dict()
261
+ __args__['propertyId'] = property_id
262
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
263
+ __ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getProperty:getProperty', __args__, opts=opts, typ=GetPropertyResult).value
264
+
265
+ return AwaitableGetPropertyResult(
266
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
267
+ defined_tags=pulumi.get(__ret__, 'defined_tags'),
268
+ display_name=pulumi.get(__ret__, 'display_name'),
269
+ freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
270
+ id=pulumi.get(__ret__, 'id'),
271
+ lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
272
+ property_id=pulumi.get(__ret__, 'property_id'),
273
+ resource_region=pulumi.get(__ret__, 'resource_region'),
274
+ scope=pulumi.get(__ret__, 'scope'),
275
+ selection=pulumi.get(__ret__, 'selection'),
276
+ state=pulumi.get(__ret__, 'state'),
277
+ system_tags=pulumi.get(__ret__, 'system_tags'),
278
+ time_created=pulumi.get(__ret__, 'time_created'),
279
+ time_updated=pulumi.get(__ret__, 'time_updated'),
280
+ type=pulumi.get(__ret__, 'type'),
281
+ value_type=pulumi.get(__ret__, 'value_type'),
282
+ values=pulumi.get(__ret__, 'values'))
283
+ def get_property_output(property_id: Optional[pulumi.Input[str]] = None,
284
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPropertyResult]:
285
+ """
286
+ This data source provides details about a specific Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
287
+
288
+ Gets a Property by identifier
289
+
290
+ ## Example Usage
291
+
292
+ ```python
293
+ import pulumi
294
+ import pulumi_oci as oci
295
+
296
+ test_property = oci.FleetAppsManagement.get_property(property_id=test_property_oci_fleet_apps_management_property["id"])
297
+ ```
298
+
299
+
300
+ :param str property_id: unique Property identifier
301
+ """
302
+ __args__ = dict()
303
+ __args__['propertyId'] = property_id
304
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
305
+ __ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getProperty:getProperty', __args__, opts=opts, typ=GetPropertyResult)
306
+ return __ret__.apply(lambda __response__: GetPropertyResult(
307
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
308
+ defined_tags=pulumi.get(__response__, 'defined_tags'),
309
+ display_name=pulumi.get(__response__, 'display_name'),
310
+ freeform_tags=pulumi.get(__response__, 'freeform_tags'),
311
+ id=pulumi.get(__response__, 'id'),
312
+ lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
313
+ property_id=pulumi.get(__response__, 'property_id'),
314
+ resource_region=pulumi.get(__response__, 'resource_region'),
315
+ scope=pulumi.get(__response__, 'scope'),
316
+ selection=pulumi.get(__response__, 'selection'),
317
+ state=pulumi.get(__response__, 'state'),
318
+ system_tags=pulumi.get(__response__, 'system_tags'),
319
+ time_created=pulumi.get(__response__, 'time_created'),
320
+ time_updated=pulumi.get(__response__, 'time_updated'),
321
+ type=pulumi.get(__response__, 'type'),
322
+ value_type=pulumi.get(__response__, 'value_type'),
323
+ values=pulumi.get(__response__, 'values')))