pulumi-oci 3.1.0a1750143229__py3-none-any.whl → 3.1.0a1751948424__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 (282) hide show
  1. pulumi_oci/__init__.py +299 -0
  2. pulumi_oci/capacitymanagement/__init__.py +18 -0
  3. pulumi_oci/capacitymanagement/_inputs.py +459 -0
  4. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
  5. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
  6. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
  7. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
  8. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
  9. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
  10. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
  11. pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
  12. pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
  13. pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
  14. pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
  15. pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
  16. pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
  17. pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
  18. pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
  19. pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
  20. pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
  21. pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
  22. pulumi_oci/capacitymanagement/outputs.py +3499 -1230
  23. pulumi_oci/containerengine/get_cluster.py +7 -7
  24. pulumi_oci/core/__init__.py +4 -0
  25. pulumi_oci/core/_inputs.py +477 -0
  26. pulumi_oci/core/compute_host.py +910 -0
  27. pulumi_oci/core/compute_host_group.py +648 -0
  28. pulumi_oci/core/dedicated_vm_host.py +56 -0
  29. pulumi_oci/core/get_compute_host.py +72 -1
  30. pulumi_oci/core/get_compute_host_group.py +269 -0
  31. pulumi_oci/core/get_compute_host_groups.py +148 -0
  32. pulumi_oci/core/get_compute_hosts.py +37 -1
  33. pulumi_oci/core/get_dedicated_vm_host.py +29 -1
  34. pulumi_oci/core/outputs.py +912 -24
  35. pulumi_oci/database/__init__.py +2 -0
  36. pulumi_oci/database/_inputs.py +739 -52
  37. pulumi_oci/database/autonomous_container_database.py +141 -12
  38. pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
  39. pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
  40. pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
  41. pulumi_oci/database/autonomous_database_software_image.py +28 -0
  42. pulumi_oci/database/autonomous_vm_cluster.py +28 -0
  43. pulumi_oci/database/backup_destination.py +28 -0
  44. pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
  45. pulumi_oci/database/cloud_vm_cluster.py +82 -7
  46. pulumi_oci/database/database.py +28 -0
  47. pulumi_oci/database/database_software_image.py +28 -0
  48. pulumi_oci/database/database_upgrade.py +28 -0
  49. pulumi_oci/database/db_home.py +28 -0
  50. pulumi_oci/database/db_node.py +28 -0
  51. pulumi_oci/database/db_system.py +28 -0
  52. pulumi_oci/database/exadata_infrastructure.py +28 -0
  53. pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
  54. pulumi_oci/database/external_container_database.py +28 -0
  55. pulumi_oci/database/external_database_connector.py +28 -0
  56. pulumi_oci/database/external_non_container_database.py +28 -0
  57. pulumi_oci/database/external_pluggable_database.py +28 -0
  58. pulumi_oci/database/get_autonomous_container_database.py +52 -2
  59. pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
  60. pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
  61. pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
  62. pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
  63. pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
  64. pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
  65. pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
  66. pulumi_oci/database/get_backup_destination.py +15 -1
  67. pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
  68. pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
  69. pulumi_oci/database/get_database.py +15 -1
  70. pulumi_oci/database/get_database_software_image.py +15 -1
  71. pulumi_oci/database/get_db_home.py +15 -1
  72. pulumi_oci/database/get_db_node.py +15 -1
  73. pulumi_oci/database/get_db_nodes.py +2 -2
  74. pulumi_oci/database/get_db_server.py +15 -1
  75. pulumi_oci/database/get_exadata_infrastructure.py +15 -1
  76. pulumi_oci/database/get_external_container_database.py +15 -1
  77. pulumi_oci/database/get_external_database_connector.py +15 -1
  78. pulumi_oci/database/get_external_non_container_database.py +15 -1
  79. pulumi_oci/database/get_external_pluggable_database.py +15 -1
  80. pulumi_oci/database/get_key_store.py +15 -1
  81. pulumi_oci/database/get_maintenance_run.py +15 -1
  82. pulumi_oci/database/get_oneoff_patch.py +15 -1
  83. pulumi_oci/database/get_pluggable_database.py +15 -1
  84. pulumi_oci/database/get_vm_cluster.py +15 -1
  85. pulumi_oci/database/get_vm_cluster_network.py +15 -1
  86. pulumi_oci/database/key_store.py +28 -0
  87. pulumi_oci/database/maintenance_run.py +28 -0
  88. pulumi_oci/database/oneoff_patch.py +28 -0
  89. pulumi_oci/database/outputs.py +1624 -54
  90. pulumi_oci/database/pluggable_database.py +28 -0
  91. pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
  92. pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
  93. pulumi_oci/database/vm_cluster.py +28 -0
  94. pulumi_oci/database/vm_cluster_network.py +28 -0
  95. pulumi_oci/databasemanagement/__init__.py +7 -0
  96. pulumi_oci/databasemanagement/_inputs.py +196 -0
  97. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
  98. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
  99. pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
  100. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
  101. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
  102. pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
  105. pulumi_oci/databasemanagement/outputs.py +1330 -19
  106. pulumi_oci/databasemigration/_inputs.py +94 -0
  107. pulumi_oci/databasemigration/get_migration.py +15 -1
  108. pulumi_oci/databasemigration/get_migrations.py +15 -1
  109. pulumi_oci/databasemigration/job.py +28 -0
  110. pulumi_oci/databasemigration/migration.py +52 -3
  111. pulumi_oci/databasemigration/outputs.py +73 -0
  112. pulumi_oci/dataflow/_inputs.py +20 -0
  113. pulumi_oci/dataflow/outputs.py +36 -0
  114. pulumi_oci/fleetappsmanagement/__init__.py +48 -0
  115. pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
  116. pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
  117. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
  118. pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
  119. pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
  120. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  121. pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
  122. pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
  123. pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
  124. pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
  125. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
  126. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
  127. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
  128. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
  129. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
  130. pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
  131. pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
  132. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
  133. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
  134. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
  135. pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
  136. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
  137. pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
  138. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
  139. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
  140. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  141. pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
  142. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
  143. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
  144. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
  145. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
  146. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
  147. pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
  148. pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
  149. pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
  150. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
  151. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
  152. pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
  153. pulumi_oci/fleetappsmanagement/get_property.py +1 -1
  154. pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
  155. pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
  156. pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
  157. pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
  158. pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
  159. pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
  160. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
  161. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
  162. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
  163. pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
  164. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
  165. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
  166. pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
  167. pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
  168. pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
  169. pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
  170. pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
  171. pulumi_oci/fleetappsmanagement/patch.py +980 -0
  172. pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
  173. pulumi_oci/fleetappsmanagement/property.py +28 -27
  174. pulumi_oci/fleetappsmanagement/provision.py +1195 -0
  175. pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
  176. pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
  177. pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
  178. pulumi_oci/fleetappsmanagement/task_record.py +786 -0
  179. pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
  180. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
  181. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
  182. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
  183. pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
  184. pulumi_oci/goldengate/_inputs.py +449 -3
  185. pulumi_oci/goldengate/connection.py +200 -56
  186. pulumi_oci/goldengate/get_connection.py +59 -28
  187. pulumi_oci/goldengate/get_connections.py +0 -3
  188. pulumi_oci/goldengate/outputs.py +886 -22
  189. pulumi_oci/loadbalancer/_inputs.py +24 -6
  190. pulumi_oci/loadbalancer/backend.py +35 -7
  191. pulumi_oci/loadbalancer/backend_set.py +35 -7
  192. pulumi_oci/loadbalancer/listener.py +7 -7
  193. pulumi_oci/loadbalancer/load_balancer.py +81 -0
  194. pulumi_oci/loadbalancer/outputs.py +29 -10
  195. pulumi_oci/loganalytics/__init__.py +3 -0
  196. pulumi_oci/loganalytics/_inputs.py +123 -0
  197. pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
  198. pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
  199. pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
  200. pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
  201. pulumi_oci/loganalytics/outputs.py +258 -0
  202. pulumi_oci/mysql/_inputs.py +274 -0
  203. pulumi_oci/mysql/get_mysql_backup.py +29 -1
  204. pulumi_oci/mysql/get_mysql_backups.py +23 -1
  205. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  206. pulumi_oci/mysql/get_replica.py +15 -1
  207. pulumi_oci/mysql/mysql_backup.py +98 -2
  208. pulumi_oci/mysql/mysql_db_system.py +57 -0
  209. pulumi_oci/mysql/outputs.py +594 -0
  210. pulumi_oci/mysql/replica.py +28 -0
  211. pulumi_oci/nosql/__init__.py +2 -0
  212. pulumi_oci/nosql/_inputs.py +129 -3
  213. pulumi_oci/nosql/configuration.py +383 -0
  214. pulumi_oci/nosql/get_configuration.py +162 -0
  215. pulumi_oci/nosql/index.py +7 -7
  216. pulumi_oci/nosql/outputs.py +164 -2
  217. pulumi_oci/nosql/table_replica.py +9 -9
  218. pulumi_oci/oci/__init__.py +56 -0
  219. pulumi_oci/oci/_inputs.py +1615 -0
  220. pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
  221. pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
  222. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
  223. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
  224. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
  225. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
  226. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
  227. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
  228. pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
  229. pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
  230. pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
  231. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
  232. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
  233. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
  234. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
  235. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
  236. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
  237. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
  238. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
  239. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
  240. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
  241. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
  242. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
  243. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
  244. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
  245. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
  246. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
  247. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
  248. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
  249. pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
  250. pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
  251. pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
  252. pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
  253. pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
  254. pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
  255. pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
  256. pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
  257. pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
  258. pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
  259. pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
  260. pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
  261. pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
  262. pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
  263. pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
  264. pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
  265. pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
  266. pulumi_oci/oci/outputs.py +5617 -0
  267. pulumi_oci/pulumi-plugin.json +1 -1
  268. pulumi_oci/redis/__init__.py +8 -0
  269. pulumi_oci/redis/_inputs.py +179 -0
  270. pulumi_oci/redis/get_oci_cache_user.py +283 -0
  271. pulumi_oci/redis/get_oci_cache_users.py +192 -0
  272. pulumi_oci/redis/oci_cache_user.py +695 -0
  273. pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
  274. pulumi_oci/redis/outputs.py +330 -0
  275. pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
  276. pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
  277. pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
  278. pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
  279. {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
  280. {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
  281. {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
  282. {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,585 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from .. import _utilities
17
+
18
+ __all__ = ['FleetPropertyInitArgs', 'FleetProperty']
19
+
20
+ @pulumi.input_type
21
+ class FleetPropertyInitArgs:
22
+ def __init__(__self__, *,
23
+ compartment_id: pulumi.Input[builtins.str],
24
+ fleet_id: pulumi.Input[builtins.str],
25
+ property_id: pulumi.Input[builtins.str],
26
+ value: pulumi.Input[builtins.str]):
27
+ """
28
+ The set of arguments for constructing a FleetProperty resource.
29
+ :param pulumi.Input[builtins.str] compartment_id: Compartment OCID
30
+ :param pulumi.Input[builtins.str] fleet_id: Unique Fleet identifier.
31
+ :param pulumi.Input[builtins.str] property_id: OCID referring to global level metadata property.
32
+ :param pulumi.Input[builtins.str] value: (Updatable) Value of the Property.
33
+
34
+
35
+ ** IMPORTANT **
36
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
37
+ """
38
+ pulumi.set(__self__, "compartment_id", compartment_id)
39
+ pulumi.set(__self__, "fleet_id", fleet_id)
40
+ pulumi.set(__self__, "property_id", property_id)
41
+ pulumi.set(__self__, "value", value)
42
+
43
+ @property
44
+ @pulumi.getter(name="compartmentId")
45
+ def compartment_id(self) -> pulumi.Input[builtins.str]:
46
+ """
47
+ Compartment OCID
48
+ """
49
+ return pulumi.get(self, "compartment_id")
50
+
51
+ @compartment_id.setter
52
+ def compartment_id(self, value: pulumi.Input[builtins.str]):
53
+ pulumi.set(self, "compartment_id", value)
54
+
55
+ @property
56
+ @pulumi.getter(name="fleetId")
57
+ def fleet_id(self) -> pulumi.Input[builtins.str]:
58
+ """
59
+ Unique Fleet identifier.
60
+ """
61
+ return pulumi.get(self, "fleet_id")
62
+
63
+ @fleet_id.setter
64
+ def fleet_id(self, value: pulumi.Input[builtins.str]):
65
+ pulumi.set(self, "fleet_id", value)
66
+
67
+ @property
68
+ @pulumi.getter(name="propertyId")
69
+ def property_id(self) -> pulumi.Input[builtins.str]:
70
+ """
71
+ OCID referring to global level metadata property.
72
+ """
73
+ return pulumi.get(self, "property_id")
74
+
75
+ @property_id.setter
76
+ def property_id(self, value: pulumi.Input[builtins.str]):
77
+ pulumi.set(self, "property_id", value)
78
+
79
+ @property
80
+ @pulumi.getter
81
+ def value(self) -> pulumi.Input[builtins.str]:
82
+ """
83
+ (Updatable) Value of the Property.
84
+
85
+
86
+ ** IMPORTANT **
87
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
88
+ """
89
+ return pulumi.get(self, "value")
90
+
91
+ @value.setter
92
+ def value(self, value: pulumi.Input[builtins.str]):
93
+ pulumi.set(self, "value", value)
94
+
95
+
96
+ @pulumi.input_type
97
+ class _FleetPropertyState:
98
+ def __init__(__self__, *,
99
+ allowed_values: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
100
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
101
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
102
+ fleet_id: Optional[pulumi.Input[builtins.str]] = None,
103
+ property_id: Optional[pulumi.Input[builtins.str]] = None,
104
+ selection_type: Optional[pulumi.Input[builtins.str]] = None,
105
+ state: Optional[pulumi.Input[builtins.str]] = None,
106
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
107
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
108
+ time_updated: Optional[pulumi.Input[builtins.str]] = None,
109
+ value: Optional[pulumi.Input[builtins.str]] = None,
110
+ value_type: Optional[pulumi.Input[builtins.str]] = None):
111
+ """
112
+ Input properties used for looking up and filtering FleetProperty resources.
113
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] allowed_values: Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
114
+ :param pulumi.Input[builtins.str] compartment_id: Compartment OCID
115
+ :param pulumi.Input[builtins.str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
116
+ :param pulumi.Input[builtins.str] fleet_id: Unique Fleet identifier.
117
+ :param pulumi.Input[builtins.str] property_id: OCID referring to global level metadata property.
118
+ :param pulumi.Input[builtins.str] selection_type: Text selection of the property.
119
+ :param pulumi.Input[builtins.str] state: The current state of the FleetProperty.
120
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
121
+ :param pulumi.Input[builtins.str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
122
+ :param pulumi.Input[builtins.str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
123
+ :param pulumi.Input[builtins.str] value: (Updatable) Value of the Property.
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[builtins.str] value_type: Format of the value.
129
+ """
130
+ if allowed_values is not None:
131
+ pulumi.set(__self__, "allowed_values", allowed_values)
132
+ if compartment_id is not None:
133
+ pulumi.set(__self__, "compartment_id", compartment_id)
134
+ if display_name is not None:
135
+ pulumi.set(__self__, "display_name", display_name)
136
+ if fleet_id is not None:
137
+ pulumi.set(__self__, "fleet_id", fleet_id)
138
+ if property_id is not None:
139
+ pulumi.set(__self__, "property_id", property_id)
140
+ if selection_type is not None:
141
+ pulumi.set(__self__, "selection_type", selection_type)
142
+ if state is not None:
143
+ pulumi.set(__self__, "state", state)
144
+ if system_tags is not None:
145
+ pulumi.set(__self__, "system_tags", system_tags)
146
+ if time_created is not None:
147
+ pulumi.set(__self__, "time_created", time_created)
148
+ if time_updated is not None:
149
+ pulumi.set(__self__, "time_updated", time_updated)
150
+ if value is not None:
151
+ pulumi.set(__self__, "value", value)
152
+ if value_type is not None:
153
+ pulumi.set(__self__, "value_type", value_type)
154
+
155
+ @property
156
+ @pulumi.getter(name="allowedValues")
157
+ def allowed_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
158
+ """
159
+ Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
160
+ """
161
+ return pulumi.get(self, "allowed_values")
162
+
163
+ @allowed_values.setter
164
+ def allowed_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
165
+ pulumi.set(self, "allowed_values", value)
166
+
167
+ @property
168
+ @pulumi.getter(name="compartmentId")
169
+ def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
170
+ """
171
+ Compartment OCID
172
+ """
173
+ return pulumi.get(self, "compartment_id")
174
+
175
+ @compartment_id.setter
176
+ def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
177
+ pulumi.set(self, "compartment_id", value)
178
+
179
+ @property
180
+ @pulumi.getter(name="displayName")
181
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
182
+ """
183
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
184
+ """
185
+ return pulumi.get(self, "display_name")
186
+
187
+ @display_name.setter
188
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
189
+ pulumi.set(self, "display_name", value)
190
+
191
+ @property
192
+ @pulumi.getter(name="fleetId")
193
+ def fleet_id(self) -> Optional[pulumi.Input[builtins.str]]:
194
+ """
195
+ Unique Fleet identifier.
196
+ """
197
+ return pulumi.get(self, "fleet_id")
198
+
199
+ @fleet_id.setter
200
+ def fleet_id(self, value: Optional[pulumi.Input[builtins.str]]):
201
+ pulumi.set(self, "fleet_id", value)
202
+
203
+ @property
204
+ @pulumi.getter(name="propertyId")
205
+ def property_id(self) -> Optional[pulumi.Input[builtins.str]]:
206
+ """
207
+ OCID referring to global level metadata property.
208
+ """
209
+ return pulumi.get(self, "property_id")
210
+
211
+ @property_id.setter
212
+ def property_id(self, value: Optional[pulumi.Input[builtins.str]]):
213
+ pulumi.set(self, "property_id", value)
214
+
215
+ @property
216
+ @pulumi.getter(name="selectionType")
217
+ def selection_type(self) -> Optional[pulumi.Input[builtins.str]]:
218
+ """
219
+ Text selection of the property.
220
+ """
221
+ return pulumi.get(self, "selection_type")
222
+
223
+ @selection_type.setter
224
+ def selection_type(self, value: Optional[pulumi.Input[builtins.str]]):
225
+ pulumi.set(self, "selection_type", value)
226
+
227
+ @property
228
+ @pulumi.getter
229
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
230
+ """
231
+ The current state of the FleetProperty.
232
+ """
233
+ return pulumi.get(self, "state")
234
+
235
+ @state.setter
236
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
237
+ pulumi.set(self, "state", value)
238
+
239
+ @property
240
+ @pulumi.getter(name="systemTags")
241
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
242
+ """
243
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
244
+ """
245
+ return pulumi.get(self, "system_tags")
246
+
247
+ @system_tags.setter
248
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
249
+ pulumi.set(self, "system_tags", value)
250
+
251
+ @property
252
+ @pulumi.getter(name="timeCreated")
253
+ def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
254
+ """
255
+ The time this resource was created. An RFC3339 formatted datetime string.
256
+ """
257
+ return pulumi.get(self, "time_created")
258
+
259
+ @time_created.setter
260
+ def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
261
+ pulumi.set(self, "time_created", value)
262
+
263
+ @property
264
+ @pulumi.getter(name="timeUpdated")
265
+ def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
266
+ """
267
+ The time this resource was last updated. An RFC3339 formatted datetime string.
268
+ """
269
+ return pulumi.get(self, "time_updated")
270
+
271
+ @time_updated.setter
272
+ def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
273
+ pulumi.set(self, "time_updated", value)
274
+
275
+ @property
276
+ @pulumi.getter
277
+ def value(self) -> Optional[pulumi.Input[builtins.str]]:
278
+ """
279
+ (Updatable) Value of the Property.
280
+
281
+
282
+ ** IMPORTANT **
283
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
284
+ """
285
+ return pulumi.get(self, "value")
286
+
287
+ @value.setter
288
+ def value(self, value: Optional[pulumi.Input[builtins.str]]):
289
+ pulumi.set(self, "value", value)
290
+
291
+ @property
292
+ @pulumi.getter(name="valueType")
293
+ def value_type(self) -> Optional[pulumi.Input[builtins.str]]:
294
+ """
295
+ Format of the value.
296
+ """
297
+ return pulumi.get(self, "value_type")
298
+
299
+ @value_type.setter
300
+ def value_type(self, value: Optional[pulumi.Input[builtins.str]]):
301
+ pulumi.set(self, "value_type", value)
302
+
303
+
304
+ @pulumi.type_token("oci:FleetAppsManagement/fleetProperty:FleetProperty")
305
+ class FleetProperty(pulumi.CustomResource):
306
+ @overload
307
+ def __init__(__self__,
308
+ resource_name: str,
309
+ opts: Optional[pulumi.ResourceOptions] = None,
310
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
311
+ fleet_id: Optional[pulumi.Input[builtins.str]] = None,
312
+ property_id: Optional[pulumi.Input[builtins.str]] = None,
313
+ value: Optional[pulumi.Input[builtins.str]] = None,
314
+ __props__=None):
315
+ """
316
+ This resource provides the Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
317
+
318
+ Add an existing global property to a fleet in Fleet Application Management.
319
+
320
+ ## Example Usage
321
+
322
+ ```python
323
+ import pulumi
324
+ import pulumi_oci as oci
325
+
326
+ test_fleet_property = oci.fleet_apps_management.FleetProperty("test_fleet_property",
327
+ fleet_id=test_fleet["id"],
328
+ property_id=test_property["id"],
329
+ value=fleet_property_value)
330
+ ```
331
+
332
+ ## Import
333
+
334
+ Import is not supported for this resource.
335
+
336
+ :param str resource_name: The name of the resource.
337
+ :param pulumi.ResourceOptions opts: Options for the resource.
338
+ :param pulumi.Input[builtins.str] compartment_id: Compartment OCID
339
+ :param pulumi.Input[builtins.str] fleet_id: Unique Fleet identifier.
340
+ :param pulumi.Input[builtins.str] property_id: OCID referring to global level metadata property.
341
+ :param pulumi.Input[builtins.str] value: (Updatable) Value of the Property.
342
+
343
+
344
+ ** IMPORTANT **
345
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
346
+ """
347
+ ...
348
+ @overload
349
+ def __init__(__self__,
350
+ resource_name: str,
351
+ args: FleetPropertyInitArgs,
352
+ opts: Optional[pulumi.ResourceOptions] = None):
353
+ """
354
+ This resource provides the Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
355
+
356
+ Add an existing global property to a fleet in Fleet Application Management.
357
+
358
+ ## Example Usage
359
+
360
+ ```python
361
+ import pulumi
362
+ import pulumi_oci as oci
363
+
364
+ test_fleet_property = oci.fleet_apps_management.FleetProperty("test_fleet_property",
365
+ fleet_id=test_fleet["id"],
366
+ property_id=test_property["id"],
367
+ value=fleet_property_value)
368
+ ```
369
+
370
+ ## Import
371
+
372
+ Import is not supported for this resource.
373
+
374
+ :param str resource_name: The name of the resource.
375
+ :param FleetPropertyInitArgs args: The arguments to use to populate this resource's properties.
376
+ :param pulumi.ResourceOptions opts: Options for the resource.
377
+ """
378
+ ...
379
+ def __init__(__self__, resource_name: str, *args, **kwargs):
380
+ resource_args, opts = _utilities.get_resource_args_opts(FleetPropertyInitArgs, pulumi.ResourceOptions, *args, **kwargs)
381
+ if resource_args is not None:
382
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
383
+ else:
384
+ __self__._internal_init(resource_name, *args, **kwargs)
385
+
386
+ def _internal_init(__self__,
387
+ resource_name: str,
388
+ opts: Optional[pulumi.ResourceOptions] = None,
389
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
390
+ fleet_id: Optional[pulumi.Input[builtins.str]] = None,
391
+ property_id: Optional[pulumi.Input[builtins.str]] = None,
392
+ value: Optional[pulumi.Input[builtins.str]] = None,
393
+ __props__=None):
394
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
395
+ if not isinstance(opts, pulumi.ResourceOptions):
396
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
397
+ if opts.id is None:
398
+ if __props__ is not None:
399
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
400
+ __props__ = FleetPropertyInitArgs.__new__(FleetPropertyInitArgs)
401
+
402
+ if compartment_id is None and not opts.urn:
403
+ raise TypeError("Missing required property 'compartment_id'")
404
+ __props__.__dict__["compartment_id"] = compartment_id
405
+ if fleet_id is None and not opts.urn:
406
+ raise TypeError("Missing required property 'fleet_id'")
407
+ __props__.__dict__["fleet_id"] = fleet_id
408
+ if property_id is None and not opts.urn:
409
+ raise TypeError("Missing required property 'property_id'")
410
+ __props__.__dict__["property_id"] = property_id
411
+ if value is None and not opts.urn:
412
+ raise TypeError("Missing required property 'value'")
413
+ __props__.__dict__["value"] = value
414
+ __props__.__dict__["allowed_values"] = None
415
+ __props__.__dict__["display_name"] = None
416
+ __props__.__dict__["selection_type"] = None
417
+ __props__.__dict__["state"] = None
418
+ __props__.__dict__["system_tags"] = None
419
+ __props__.__dict__["time_created"] = None
420
+ __props__.__dict__["time_updated"] = None
421
+ __props__.__dict__["value_type"] = None
422
+ super(FleetProperty, __self__).__init__(
423
+ 'oci:FleetAppsManagement/fleetProperty:FleetProperty',
424
+ resource_name,
425
+ __props__,
426
+ opts)
427
+
428
+ @staticmethod
429
+ def get(resource_name: str,
430
+ id: pulumi.Input[str],
431
+ opts: Optional[pulumi.ResourceOptions] = None,
432
+ allowed_values: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
433
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
434
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
435
+ fleet_id: Optional[pulumi.Input[builtins.str]] = None,
436
+ property_id: Optional[pulumi.Input[builtins.str]] = None,
437
+ selection_type: Optional[pulumi.Input[builtins.str]] = None,
438
+ state: Optional[pulumi.Input[builtins.str]] = None,
439
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
440
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
441
+ time_updated: Optional[pulumi.Input[builtins.str]] = None,
442
+ value: Optional[pulumi.Input[builtins.str]] = None,
443
+ value_type: Optional[pulumi.Input[builtins.str]] = None) -> 'FleetProperty':
444
+ """
445
+ Get an existing FleetProperty resource's state with the given name, id, and optional extra
446
+ properties used to qualify the lookup.
447
+
448
+ :param str resource_name: The unique name of the resulting resource.
449
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
450
+ :param pulumi.ResourceOptions opts: Options for the resource.
451
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] allowed_values: Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
452
+ :param pulumi.Input[builtins.str] compartment_id: Compartment OCID
453
+ :param pulumi.Input[builtins.str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
454
+ :param pulumi.Input[builtins.str] fleet_id: Unique Fleet identifier.
455
+ :param pulumi.Input[builtins.str] property_id: OCID referring to global level metadata property.
456
+ :param pulumi.Input[builtins.str] selection_type: Text selection of the property.
457
+ :param pulumi.Input[builtins.str] state: The current state of the FleetProperty.
458
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
459
+ :param pulumi.Input[builtins.str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
460
+ :param pulumi.Input[builtins.str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
461
+ :param pulumi.Input[builtins.str] value: (Updatable) Value of the Property.
462
+
463
+
464
+ ** IMPORTANT **
465
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
466
+ :param pulumi.Input[builtins.str] value_type: Format of the value.
467
+ """
468
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
469
+
470
+ __props__ = _FleetPropertyState.__new__(_FleetPropertyState)
471
+
472
+ __props__.__dict__["allowed_values"] = allowed_values
473
+ __props__.__dict__["compartment_id"] = compartment_id
474
+ __props__.__dict__["display_name"] = display_name
475
+ __props__.__dict__["fleet_id"] = fleet_id
476
+ __props__.__dict__["property_id"] = property_id
477
+ __props__.__dict__["selection_type"] = selection_type
478
+ __props__.__dict__["state"] = state
479
+ __props__.__dict__["system_tags"] = system_tags
480
+ __props__.__dict__["time_created"] = time_created
481
+ __props__.__dict__["time_updated"] = time_updated
482
+ __props__.__dict__["value"] = value
483
+ __props__.__dict__["value_type"] = value_type
484
+ return FleetProperty(resource_name, opts=opts, __props__=__props__)
485
+
486
+ @property
487
+ @pulumi.getter(name="allowedValues")
488
+ def allowed_values(self) -> pulumi.Output[Sequence[builtins.str]]:
489
+ """
490
+ Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
491
+ """
492
+ return pulumi.get(self, "allowed_values")
493
+
494
+ @property
495
+ @pulumi.getter(name="compartmentId")
496
+ def compartment_id(self) -> pulumi.Output[builtins.str]:
497
+ """
498
+ Compartment OCID
499
+ """
500
+ return pulumi.get(self, "compartment_id")
501
+
502
+ @property
503
+ @pulumi.getter(name="displayName")
504
+ def display_name(self) -> pulumi.Output[builtins.str]:
505
+ """
506
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
507
+ """
508
+ return pulumi.get(self, "display_name")
509
+
510
+ @property
511
+ @pulumi.getter(name="fleetId")
512
+ def fleet_id(self) -> pulumi.Output[builtins.str]:
513
+ """
514
+ Unique Fleet identifier.
515
+ """
516
+ return pulumi.get(self, "fleet_id")
517
+
518
+ @property
519
+ @pulumi.getter(name="propertyId")
520
+ def property_id(self) -> pulumi.Output[builtins.str]:
521
+ """
522
+ OCID referring to global level metadata property.
523
+ """
524
+ return pulumi.get(self, "property_id")
525
+
526
+ @property
527
+ @pulumi.getter(name="selectionType")
528
+ def selection_type(self) -> pulumi.Output[builtins.str]:
529
+ """
530
+ Text selection of the property.
531
+ """
532
+ return pulumi.get(self, "selection_type")
533
+
534
+ @property
535
+ @pulumi.getter
536
+ def state(self) -> pulumi.Output[builtins.str]:
537
+ """
538
+ The current state of the FleetProperty.
539
+ """
540
+ return pulumi.get(self, "state")
541
+
542
+ @property
543
+ @pulumi.getter(name="systemTags")
544
+ def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
545
+ """
546
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
547
+ """
548
+ return pulumi.get(self, "system_tags")
549
+
550
+ @property
551
+ @pulumi.getter(name="timeCreated")
552
+ def time_created(self) -> pulumi.Output[builtins.str]:
553
+ """
554
+ The time this resource was created. An RFC3339 formatted datetime string.
555
+ """
556
+ return pulumi.get(self, "time_created")
557
+
558
+ @property
559
+ @pulumi.getter(name="timeUpdated")
560
+ def time_updated(self) -> pulumi.Output[builtins.str]:
561
+ """
562
+ The time this resource was last updated. An RFC3339 formatted datetime string.
563
+ """
564
+ return pulumi.get(self, "time_updated")
565
+
566
+ @property
567
+ @pulumi.getter
568
+ def value(self) -> pulumi.Output[builtins.str]:
569
+ """
570
+ (Updatable) Value of the Property.
571
+
572
+
573
+ ** IMPORTANT **
574
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
575
+ """
576
+ return pulumi.get(self, "value")
577
+
578
+ @property
579
+ @pulumi.getter(name="valueType")
580
+ def value_type(self) -> pulumi.Output[builtins.str]:
581
+ """
582
+ Format of the value.
583
+ """
584
+ return pulumi.get(self, "value_type")
585
+