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,697 @@
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__ = ['PropertyArgs', 'Property']
18
+
19
+ @pulumi.input_type
20
+ class PropertyArgs:
21
+ def __init__(__self__, *,
22
+ compartment_id: pulumi.Input[str],
23
+ selection: pulumi.Input[str],
24
+ value_type: pulumi.Input[str],
25
+ display_name: Optional[pulumi.Input[str]] = None,
26
+ values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
27
+ """
28
+ The set of arguments for constructing a Property resource.
29
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
30
+ :param pulumi.Input[str] selection: (Updatable) Text selection of the category
31
+ :param pulumi.Input[str] value_type: (Updatable) Format of the value
32
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
33
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] values: (Updatable) Values of the property (must be a single value if selection = 'single choice')
34
+
35
+
36
+ ** IMPORTANT **
37
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
38
+ """
39
+ pulumi.set(__self__, "compartment_id", compartment_id)
40
+ pulumi.set(__self__, "selection", selection)
41
+ pulumi.set(__self__, "value_type", value_type)
42
+ if display_name is not None:
43
+ pulumi.set(__self__, "display_name", display_name)
44
+ if values is not None:
45
+ pulumi.set(__self__, "values", values)
46
+
47
+ @property
48
+ @pulumi.getter(name="compartmentId")
49
+ def compartment_id(self) -> pulumi.Input[str]:
50
+ """
51
+ Tenancy OCID
52
+ """
53
+ return pulumi.get(self, "compartment_id")
54
+
55
+ @compartment_id.setter
56
+ def compartment_id(self, value: pulumi.Input[str]):
57
+ pulumi.set(self, "compartment_id", value)
58
+
59
+ @property
60
+ @pulumi.getter
61
+ def selection(self) -> pulumi.Input[str]:
62
+ """
63
+ (Updatable) Text selection of the category
64
+ """
65
+ return pulumi.get(self, "selection")
66
+
67
+ @selection.setter
68
+ def selection(self, value: pulumi.Input[str]):
69
+ pulumi.set(self, "selection", value)
70
+
71
+ @property
72
+ @pulumi.getter(name="valueType")
73
+ def value_type(self) -> pulumi.Input[str]:
74
+ """
75
+ (Updatable) Format of the value
76
+ """
77
+ return pulumi.get(self, "value_type")
78
+
79
+ @value_type.setter
80
+ def value_type(self, value: pulumi.Input[str]):
81
+ pulumi.set(self, "value_type", value)
82
+
83
+ @property
84
+ @pulumi.getter(name="displayName")
85
+ def display_name(self) -> Optional[pulumi.Input[str]]:
86
+ """
87
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
88
+ """
89
+ return pulumi.get(self, "display_name")
90
+
91
+ @display_name.setter
92
+ def display_name(self, value: Optional[pulumi.Input[str]]):
93
+ pulumi.set(self, "display_name", value)
94
+
95
+ @property
96
+ @pulumi.getter
97
+ def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
98
+ """
99
+ (Updatable) Values of the property (must be a single value if selection = 'single choice')
100
+
101
+
102
+ ** IMPORTANT **
103
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
104
+ """
105
+ return pulumi.get(self, "values")
106
+
107
+ @values.setter
108
+ def values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
109
+ pulumi.set(self, "values", value)
110
+
111
+
112
+ @pulumi.input_type
113
+ class _PropertyState:
114
+ def __init__(__self__, *,
115
+ compartment_id: Optional[pulumi.Input[str]] = None,
116
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
117
+ display_name: Optional[pulumi.Input[str]] = None,
118
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
119
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
120
+ resource_region: Optional[pulumi.Input[str]] = None,
121
+ scope: Optional[pulumi.Input[str]] = None,
122
+ selection: Optional[pulumi.Input[str]] = None,
123
+ state: Optional[pulumi.Input[str]] = None,
124
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
125
+ time_created: Optional[pulumi.Input[str]] = None,
126
+ time_updated: Optional[pulumi.Input[str]] = None,
127
+ type: Optional[pulumi.Input[str]] = None,
128
+ value_type: Optional[pulumi.Input[str]] = None,
129
+ values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
130
+ """
131
+ Input properties used for looking up and filtering Property resources.
132
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
133
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
134
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
135
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
136
+ :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
137
+ :param pulumi.Input[str] resource_region: Associated region
138
+ :param pulumi.Input[str] scope: The scope of the property
139
+ :param pulumi.Input[str] selection: (Updatable) Text selection of the category
140
+ :param pulumi.Input[str] state: The current state of the Property.
141
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
142
+ :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
143
+ :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
144
+ :param pulumi.Input[str] type: The type of the property.
145
+ :param pulumi.Input[str] value_type: (Updatable) Format of the value
146
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] values: (Updatable) Values of the property (must be a single value if selection = 'single choice')
147
+
148
+
149
+ ** IMPORTANT **
150
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
151
+ """
152
+ if compartment_id is not None:
153
+ pulumi.set(__self__, "compartment_id", compartment_id)
154
+ if defined_tags is not None:
155
+ pulumi.set(__self__, "defined_tags", defined_tags)
156
+ if display_name is not None:
157
+ pulumi.set(__self__, "display_name", display_name)
158
+ if freeform_tags is not None:
159
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
160
+ if lifecycle_details is not None:
161
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
162
+ if resource_region is not None:
163
+ pulumi.set(__self__, "resource_region", resource_region)
164
+ if scope is not None:
165
+ pulumi.set(__self__, "scope", scope)
166
+ if selection is not None:
167
+ pulumi.set(__self__, "selection", selection)
168
+ if state is not None:
169
+ pulumi.set(__self__, "state", state)
170
+ if system_tags is not None:
171
+ pulumi.set(__self__, "system_tags", system_tags)
172
+ if time_created is not None:
173
+ pulumi.set(__self__, "time_created", time_created)
174
+ if time_updated is not None:
175
+ pulumi.set(__self__, "time_updated", time_updated)
176
+ if type is not None:
177
+ pulumi.set(__self__, "type", type)
178
+ if value_type is not None:
179
+ pulumi.set(__self__, "value_type", value_type)
180
+ if values is not None:
181
+ pulumi.set(__self__, "values", values)
182
+
183
+ @property
184
+ @pulumi.getter(name="compartmentId")
185
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
186
+ """
187
+ Tenancy OCID
188
+ """
189
+ return pulumi.get(self, "compartment_id")
190
+
191
+ @compartment_id.setter
192
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
193
+ pulumi.set(self, "compartment_id", value)
194
+
195
+ @property
196
+ @pulumi.getter(name="definedTags")
197
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
198
+ """
199
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
200
+ """
201
+ return pulumi.get(self, "defined_tags")
202
+
203
+ @defined_tags.setter
204
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
205
+ pulumi.set(self, "defined_tags", value)
206
+
207
+ @property
208
+ @pulumi.getter(name="displayName")
209
+ def display_name(self) -> Optional[pulumi.Input[str]]:
210
+ """
211
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
212
+ """
213
+ return pulumi.get(self, "display_name")
214
+
215
+ @display_name.setter
216
+ def display_name(self, value: Optional[pulumi.Input[str]]):
217
+ pulumi.set(self, "display_name", value)
218
+
219
+ @property
220
+ @pulumi.getter(name="freeformTags")
221
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
222
+ """
223
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
224
+ """
225
+ return pulumi.get(self, "freeform_tags")
226
+
227
+ @freeform_tags.setter
228
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
229
+ pulumi.set(self, "freeform_tags", value)
230
+
231
+ @property
232
+ @pulumi.getter(name="lifecycleDetails")
233
+ def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
234
+ """
235
+ A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
236
+ """
237
+ return pulumi.get(self, "lifecycle_details")
238
+
239
+ @lifecycle_details.setter
240
+ def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
241
+ pulumi.set(self, "lifecycle_details", value)
242
+
243
+ @property
244
+ @pulumi.getter(name="resourceRegion")
245
+ def resource_region(self) -> Optional[pulumi.Input[str]]:
246
+ """
247
+ Associated region
248
+ """
249
+ return pulumi.get(self, "resource_region")
250
+
251
+ @resource_region.setter
252
+ def resource_region(self, value: Optional[pulumi.Input[str]]):
253
+ pulumi.set(self, "resource_region", value)
254
+
255
+ @property
256
+ @pulumi.getter
257
+ def scope(self) -> Optional[pulumi.Input[str]]:
258
+ """
259
+ The scope of the property
260
+ """
261
+ return pulumi.get(self, "scope")
262
+
263
+ @scope.setter
264
+ def scope(self, value: Optional[pulumi.Input[str]]):
265
+ pulumi.set(self, "scope", value)
266
+
267
+ @property
268
+ @pulumi.getter
269
+ def selection(self) -> Optional[pulumi.Input[str]]:
270
+ """
271
+ (Updatable) Text selection of the category
272
+ """
273
+ return pulumi.get(self, "selection")
274
+
275
+ @selection.setter
276
+ def selection(self, value: Optional[pulumi.Input[str]]):
277
+ pulumi.set(self, "selection", value)
278
+
279
+ @property
280
+ @pulumi.getter
281
+ def state(self) -> Optional[pulumi.Input[str]]:
282
+ """
283
+ The current state of the Property.
284
+ """
285
+ return pulumi.get(self, "state")
286
+
287
+ @state.setter
288
+ def state(self, value: Optional[pulumi.Input[str]]):
289
+ pulumi.set(self, "state", value)
290
+
291
+ @property
292
+ @pulumi.getter(name="systemTags")
293
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
294
+ """
295
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
296
+ """
297
+ return pulumi.get(self, "system_tags")
298
+
299
+ @system_tags.setter
300
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
301
+ pulumi.set(self, "system_tags", value)
302
+
303
+ @property
304
+ @pulumi.getter(name="timeCreated")
305
+ def time_created(self) -> Optional[pulumi.Input[str]]:
306
+ """
307
+ The time this resource was created. An RFC3339 formatted datetime string.
308
+ """
309
+ return pulumi.get(self, "time_created")
310
+
311
+ @time_created.setter
312
+ def time_created(self, value: Optional[pulumi.Input[str]]):
313
+ pulumi.set(self, "time_created", value)
314
+
315
+ @property
316
+ @pulumi.getter(name="timeUpdated")
317
+ def time_updated(self) -> Optional[pulumi.Input[str]]:
318
+ """
319
+ The time this resource was last updated. An RFC3339 formatted datetime string.
320
+ """
321
+ return pulumi.get(self, "time_updated")
322
+
323
+ @time_updated.setter
324
+ def time_updated(self, value: Optional[pulumi.Input[str]]):
325
+ pulumi.set(self, "time_updated", value)
326
+
327
+ @property
328
+ @pulumi.getter
329
+ def type(self) -> Optional[pulumi.Input[str]]:
330
+ """
331
+ The type of the property.
332
+ """
333
+ return pulumi.get(self, "type")
334
+
335
+ @type.setter
336
+ def type(self, value: Optional[pulumi.Input[str]]):
337
+ pulumi.set(self, "type", value)
338
+
339
+ @property
340
+ @pulumi.getter(name="valueType")
341
+ def value_type(self) -> Optional[pulumi.Input[str]]:
342
+ """
343
+ (Updatable) Format of the value
344
+ """
345
+ return pulumi.get(self, "value_type")
346
+
347
+ @value_type.setter
348
+ def value_type(self, value: Optional[pulumi.Input[str]]):
349
+ pulumi.set(self, "value_type", value)
350
+
351
+ @property
352
+ @pulumi.getter
353
+ def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
354
+ """
355
+ (Updatable) Values of the property (must be a single value if selection = 'single choice')
356
+
357
+
358
+ ** IMPORTANT **
359
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
360
+ """
361
+ return pulumi.get(self, "values")
362
+
363
+ @values.setter
364
+ def values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
365
+ pulumi.set(self, "values", value)
366
+
367
+
368
+ class Property(pulumi.CustomResource):
369
+ @overload
370
+ def __init__(__self__,
371
+ resource_name: str,
372
+ opts: Optional[pulumi.ResourceOptions] = None,
373
+ compartment_id: Optional[pulumi.Input[str]] = None,
374
+ display_name: Optional[pulumi.Input[str]] = None,
375
+ selection: Optional[pulumi.Input[str]] = None,
376
+ value_type: Optional[pulumi.Input[str]] = None,
377
+ values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
378
+ __props__=None):
379
+ """
380
+ This resource provides the Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
381
+
382
+ Creates a new Property.
383
+
384
+ ## Example Usage
385
+
386
+ ```python
387
+ import pulumi
388
+ import pulumi_oci as oci
389
+
390
+ test_property = oci.fleet_apps_management.Property("test_property",
391
+ compartment_id=compartment_id,
392
+ selection=property_selection,
393
+ value_type=property_value_type,
394
+ display_name=property_display_name,
395
+ values=property_values)
396
+ ```
397
+
398
+ ## Import
399
+
400
+ Properties can be imported using the `id`, e.g.
401
+
402
+ ```sh
403
+ $ pulumi import oci:FleetAppsManagement/property:Property test_property "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: Tenancy OCID
409
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
410
+ :param pulumi.Input[str] selection: (Updatable) Text selection of the category
411
+ :param pulumi.Input[str] value_type: (Updatable) Format of the value
412
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] values: (Updatable) Values of the property (must be a single value if selection = 'single choice')
413
+
414
+
415
+ ** IMPORTANT **
416
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
417
+ """
418
+ ...
419
+ @overload
420
+ def __init__(__self__,
421
+ resource_name: str,
422
+ args: PropertyArgs,
423
+ opts: Optional[pulumi.ResourceOptions] = None):
424
+ """
425
+ This resource provides the Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
426
+
427
+ Creates a new Property.
428
+
429
+ ## Example Usage
430
+
431
+ ```python
432
+ import pulumi
433
+ import pulumi_oci as oci
434
+
435
+ test_property = oci.fleet_apps_management.Property("test_property",
436
+ compartment_id=compartment_id,
437
+ selection=property_selection,
438
+ value_type=property_value_type,
439
+ display_name=property_display_name,
440
+ values=property_values)
441
+ ```
442
+
443
+ ## Import
444
+
445
+ Properties can be imported using the `id`, e.g.
446
+
447
+ ```sh
448
+ $ pulumi import oci:FleetAppsManagement/property:Property test_property "id"
449
+ ```
450
+
451
+ :param str resource_name: The name of the resource.
452
+ :param PropertyArgs args: The arguments to use to populate this resource's properties.
453
+ :param pulumi.ResourceOptions opts: Options for the resource.
454
+ """
455
+ ...
456
+ def __init__(__self__, resource_name: str, *args, **kwargs):
457
+ resource_args, opts = _utilities.get_resource_args_opts(PropertyArgs, pulumi.ResourceOptions, *args, **kwargs)
458
+ if resource_args is not None:
459
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
460
+ else:
461
+ __self__._internal_init(resource_name, *args, **kwargs)
462
+
463
+ def _internal_init(__self__,
464
+ resource_name: str,
465
+ opts: Optional[pulumi.ResourceOptions] = None,
466
+ compartment_id: Optional[pulumi.Input[str]] = None,
467
+ display_name: Optional[pulumi.Input[str]] = None,
468
+ selection: Optional[pulumi.Input[str]] = None,
469
+ value_type: Optional[pulumi.Input[str]] = None,
470
+ values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
471
+ __props__=None):
472
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
473
+ if not isinstance(opts, pulumi.ResourceOptions):
474
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
475
+ if opts.id is None:
476
+ if __props__ is not None:
477
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
478
+ __props__ = PropertyArgs.__new__(PropertyArgs)
479
+
480
+ if compartment_id is None and not opts.urn:
481
+ raise TypeError("Missing required property 'compartment_id'")
482
+ __props__.__dict__["compartment_id"] = compartment_id
483
+ __props__.__dict__["display_name"] = display_name
484
+ if selection is None and not opts.urn:
485
+ raise TypeError("Missing required property 'selection'")
486
+ __props__.__dict__["selection"] = selection
487
+ if value_type is None and not opts.urn:
488
+ raise TypeError("Missing required property 'value_type'")
489
+ __props__.__dict__["value_type"] = value_type
490
+ __props__.__dict__["values"] = values
491
+ __props__.__dict__["defined_tags"] = None
492
+ __props__.__dict__["freeform_tags"] = None
493
+ __props__.__dict__["lifecycle_details"] = None
494
+ __props__.__dict__["resource_region"] = None
495
+ __props__.__dict__["scope"] = None
496
+ __props__.__dict__["state"] = None
497
+ __props__.__dict__["system_tags"] = None
498
+ __props__.__dict__["time_created"] = None
499
+ __props__.__dict__["time_updated"] = None
500
+ __props__.__dict__["type"] = None
501
+ super(Property, __self__).__init__(
502
+ 'oci:FleetAppsManagement/property:Property',
503
+ resource_name,
504
+ __props__,
505
+ opts)
506
+
507
+ @staticmethod
508
+ def get(resource_name: str,
509
+ id: pulumi.Input[str],
510
+ opts: Optional[pulumi.ResourceOptions] = None,
511
+ compartment_id: Optional[pulumi.Input[str]] = None,
512
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
513
+ display_name: Optional[pulumi.Input[str]] = None,
514
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
515
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
516
+ resource_region: Optional[pulumi.Input[str]] = None,
517
+ scope: Optional[pulumi.Input[str]] = None,
518
+ selection: Optional[pulumi.Input[str]] = None,
519
+ state: Optional[pulumi.Input[str]] = None,
520
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
521
+ time_created: Optional[pulumi.Input[str]] = None,
522
+ time_updated: Optional[pulumi.Input[str]] = None,
523
+ type: Optional[pulumi.Input[str]] = None,
524
+ value_type: Optional[pulumi.Input[str]] = None,
525
+ values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'Property':
526
+ """
527
+ Get an existing Property resource's state with the given name, id, and optional extra
528
+ properties used to qualify the lookup.
529
+
530
+ :param str resource_name: The unique name of the resulting resource.
531
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
532
+ :param pulumi.ResourceOptions opts: Options for the resource.
533
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
534
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
535
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
536
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
537
+ :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
538
+ :param pulumi.Input[str] resource_region: Associated region
539
+ :param pulumi.Input[str] scope: The scope of the property
540
+ :param pulumi.Input[str] selection: (Updatable) Text selection of the category
541
+ :param pulumi.Input[str] state: The current state of the Property.
542
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
543
+ :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
544
+ :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
545
+ :param pulumi.Input[str] type: The type of the property.
546
+ :param pulumi.Input[str] value_type: (Updatable) Format of the value
547
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] values: (Updatable) Values of the property (must be a single value if selection = 'single choice')
548
+
549
+
550
+ ** IMPORTANT **
551
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
552
+ """
553
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
554
+
555
+ __props__ = _PropertyState.__new__(_PropertyState)
556
+
557
+ __props__.__dict__["compartment_id"] = compartment_id
558
+ __props__.__dict__["defined_tags"] = defined_tags
559
+ __props__.__dict__["display_name"] = display_name
560
+ __props__.__dict__["freeform_tags"] = freeform_tags
561
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
562
+ __props__.__dict__["resource_region"] = resource_region
563
+ __props__.__dict__["scope"] = scope
564
+ __props__.__dict__["selection"] = selection
565
+ __props__.__dict__["state"] = state
566
+ __props__.__dict__["system_tags"] = system_tags
567
+ __props__.__dict__["time_created"] = time_created
568
+ __props__.__dict__["time_updated"] = time_updated
569
+ __props__.__dict__["type"] = type
570
+ __props__.__dict__["value_type"] = value_type
571
+ __props__.__dict__["values"] = values
572
+ return Property(resource_name, opts=opts, __props__=__props__)
573
+
574
+ @property
575
+ @pulumi.getter(name="compartmentId")
576
+ def compartment_id(self) -> pulumi.Output[str]:
577
+ """
578
+ Tenancy OCID
579
+ """
580
+ return pulumi.get(self, "compartment_id")
581
+
582
+ @property
583
+ @pulumi.getter(name="definedTags")
584
+ def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
585
+ """
586
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
587
+ """
588
+ return pulumi.get(self, "defined_tags")
589
+
590
+ @property
591
+ @pulumi.getter(name="displayName")
592
+ def display_name(self) -> pulumi.Output[str]:
593
+ """
594
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
595
+ """
596
+ return pulumi.get(self, "display_name")
597
+
598
+ @property
599
+ @pulumi.getter(name="freeformTags")
600
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
601
+ """
602
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
603
+ """
604
+ return pulumi.get(self, "freeform_tags")
605
+
606
+ @property
607
+ @pulumi.getter(name="lifecycleDetails")
608
+ def lifecycle_details(self) -> pulumi.Output[str]:
609
+ """
610
+ A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
611
+ """
612
+ return pulumi.get(self, "lifecycle_details")
613
+
614
+ @property
615
+ @pulumi.getter(name="resourceRegion")
616
+ def resource_region(self) -> pulumi.Output[str]:
617
+ """
618
+ Associated region
619
+ """
620
+ return pulumi.get(self, "resource_region")
621
+
622
+ @property
623
+ @pulumi.getter
624
+ def scope(self) -> pulumi.Output[str]:
625
+ """
626
+ The scope of the property
627
+ """
628
+ return pulumi.get(self, "scope")
629
+
630
+ @property
631
+ @pulumi.getter
632
+ def selection(self) -> pulumi.Output[str]:
633
+ """
634
+ (Updatable) Text selection of the category
635
+ """
636
+ return pulumi.get(self, "selection")
637
+
638
+ @property
639
+ @pulumi.getter
640
+ def state(self) -> pulumi.Output[str]:
641
+ """
642
+ The current state of the Property.
643
+ """
644
+ return pulumi.get(self, "state")
645
+
646
+ @property
647
+ @pulumi.getter(name="systemTags")
648
+ def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
649
+ """
650
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
651
+ """
652
+ return pulumi.get(self, "system_tags")
653
+
654
+ @property
655
+ @pulumi.getter(name="timeCreated")
656
+ def time_created(self) -> pulumi.Output[str]:
657
+ """
658
+ The time this resource was created. An RFC3339 formatted datetime string.
659
+ """
660
+ return pulumi.get(self, "time_created")
661
+
662
+ @property
663
+ @pulumi.getter(name="timeUpdated")
664
+ def time_updated(self) -> pulumi.Output[str]:
665
+ """
666
+ The time this resource was last updated. An RFC3339 formatted datetime string.
667
+ """
668
+ return pulumi.get(self, "time_updated")
669
+
670
+ @property
671
+ @pulumi.getter
672
+ def type(self) -> pulumi.Output[str]:
673
+ """
674
+ The type of the property.
675
+ """
676
+ return pulumi.get(self, "type")
677
+
678
+ @property
679
+ @pulumi.getter(name="valueType")
680
+ def value_type(self) -> pulumi.Output[str]:
681
+ """
682
+ (Updatable) Format of the value
683
+ """
684
+ return pulumi.get(self, "value_type")
685
+
686
+ @property
687
+ @pulumi.getter
688
+ def values(self) -> pulumi.Output[Sequence[str]]:
689
+ """
690
+ (Updatable) Values of the property (must be a single value if selection = 'single choice')
691
+
692
+
693
+ ** IMPORTANT **
694
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
695
+ """
696
+ return pulumi.get(self, "values")
697
+