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,338 @@
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
+ from . import outputs
18
+ from ._inputs import *
19
+
20
+ __all__ = [
21
+ 'GetPatchesResult',
22
+ 'AwaitableGetPatchesResult',
23
+ 'get_patches',
24
+ 'get_patches_output',
25
+ ]
26
+
27
+ @pulumi.output_type
28
+ class GetPatchesResult:
29
+ """
30
+ A collection of values returned by getPatches.
31
+ """
32
+ def __init__(__self__, compartment_id=None, filters=None, id=None, name=None, patch_collections=None, patch_type_id=None, product_id=None, should_compliance_policy_rules_be_applied=None, state=None, time_released_greater_than_or_equal_to=None, time_released_less_than=None, type=None, version=None):
33
+ if compartment_id and not isinstance(compartment_id, str):
34
+ raise TypeError("Expected argument 'compartment_id' to be a str")
35
+ pulumi.set(__self__, "compartment_id", compartment_id)
36
+ if filters and not isinstance(filters, list):
37
+ raise TypeError("Expected argument 'filters' to be a list")
38
+ pulumi.set(__self__, "filters", filters)
39
+ if id and not isinstance(id, str):
40
+ raise TypeError("Expected argument 'id' to be a str")
41
+ pulumi.set(__self__, "id", id)
42
+ if name and not isinstance(name, str):
43
+ raise TypeError("Expected argument 'name' to be a str")
44
+ pulumi.set(__self__, "name", name)
45
+ if patch_collections and not isinstance(patch_collections, list):
46
+ raise TypeError("Expected argument 'patch_collections' to be a list")
47
+ pulumi.set(__self__, "patch_collections", patch_collections)
48
+ if patch_type_id and not isinstance(patch_type_id, str):
49
+ raise TypeError("Expected argument 'patch_type_id' to be a str")
50
+ pulumi.set(__self__, "patch_type_id", patch_type_id)
51
+ if product_id and not isinstance(product_id, str):
52
+ raise TypeError("Expected argument 'product_id' to be a str")
53
+ pulumi.set(__self__, "product_id", product_id)
54
+ if should_compliance_policy_rules_be_applied and not isinstance(should_compliance_policy_rules_be_applied, bool):
55
+ raise TypeError("Expected argument 'should_compliance_policy_rules_be_applied' to be a bool")
56
+ pulumi.set(__self__, "should_compliance_policy_rules_be_applied", should_compliance_policy_rules_be_applied)
57
+ if state and not isinstance(state, str):
58
+ raise TypeError("Expected argument 'state' to be a str")
59
+ pulumi.set(__self__, "state", state)
60
+ if time_released_greater_than_or_equal_to and not isinstance(time_released_greater_than_or_equal_to, str):
61
+ raise TypeError("Expected argument 'time_released_greater_than_or_equal_to' to be a str")
62
+ pulumi.set(__self__, "time_released_greater_than_or_equal_to", time_released_greater_than_or_equal_to)
63
+ if time_released_less_than and not isinstance(time_released_less_than, str):
64
+ raise TypeError("Expected argument 'time_released_less_than' to be a str")
65
+ pulumi.set(__self__, "time_released_less_than", time_released_less_than)
66
+ if type and not isinstance(type, str):
67
+ raise TypeError("Expected argument 'type' to be a str")
68
+ pulumi.set(__self__, "type", type)
69
+ if version and not isinstance(version, str):
70
+ raise TypeError("Expected argument 'version' to be a str")
71
+ pulumi.set(__self__, "version", version)
72
+
73
+ @property
74
+ @pulumi.getter(name="compartmentId")
75
+ def compartment_id(self) -> Optional[builtins.str]:
76
+ return pulumi.get(self, "compartment_id")
77
+
78
+ @property
79
+ @pulumi.getter
80
+ def filters(self) -> Optional[Sequence['outputs.GetPatchesFilterResult']]:
81
+ return pulumi.get(self, "filters")
82
+
83
+ @property
84
+ @pulumi.getter
85
+ def id(self) -> Optional[builtins.str]:
86
+ """
87
+ The OCID of the resource.
88
+ """
89
+ return pulumi.get(self, "id")
90
+
91
+ @property
92
+ @pulumi.getter
93
+ def name(self) -> Optional[builtins.str]:
94
+ """
95
+ A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
96
+ """
97
+ return pulumi.get(self, "name")
98
+
99
+ @property
100
+ @pulumi.getter(name="patchCollections")
101
+ def patch_collections(self) -> Sequence['outputs.GetPatchesPatchCollectionResult']:
102
+ """
103
+ The list of patch_collection.
104
+ """
105
+ return pulumi.get(self, "patch_collections")
106
+
107
+ @property
108
+ @pulumi.getter(name="patchTypeId")
109
+ def patch_type_id(self) -> Optional[builtins.str]:
110
+ return pulumi.get(self, "patch_type_id")
111
+
112
+ @property
113
+ @pulumi.getter(name="productId")
114
+ def product_id(self) -> Optional[builtins.str]:
115
+ return pulumi.get(self, "product_id")
116
+
117
+ @property
118
+ @pulumi.getter(name="shouldCompliancePolicyRulesBeApplied")
119
+ def should_compliance_policy_rules_be_applied(self) -> Optional[builtins.bool]:
120
+ return pulumi.get(self, "should_compliance_policy_rules_be_applied")
121
+
122
+ @property
123
+ @pulumi.getter
124
+ def state(self) -> Optional[builtins.str]:
125
+ """
126
+ The current state of the Patch.
127
+ """
128
+ return pulumi.get(self, "state")
129
+
130
+ @property
131
+ @pulumi.getter(name="timeReleasedGreaterThanOrEqualTo")
132
+ def time_released_greater_than_or_equal_to(self) -> Optional[builtins.str]:
133
+ return pulumi.get(self, "time_released_greater_than_or_equal_to")
134
+
135
+ @property
136
+ @pulumi.getter(name="timeReleasedLessThan")
137
+ def time_released_less_than(self) -> Optional[builtins.str]:
138
+ return pulumi.get(self, "time_released_less_than")
139
+
140
+ @property
141
+ @pulumi.getter
142
+ def type(self) -> Optional[builtins.str]:
143
+ """
144
+ Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
145
+ """
146
+ return pulumi.get(self, "type")
147
+
148
+ @property
149
+ @pulumi.getter
150
+ def version(self) -> Optional[builtins.str]:
151
+ """
152
+ product version.
153
+ """
154
+ return pulumi.get(self, "version")
155
+
156
+
157
+ class AwaitableGetPatchesResult(GetPatchesResult):
158
+ # pylint: disable=using-constant-test
159
+ def __await__(self):
160
+ if False:
161
+ yield self
162
+ return GetPatchesResult(
163
+ compartment_id=self.compartment_id,
164
+ filters=self.filters,
165
+ id=self.id,
166
+ name=self.name,
167
+ patch_collections=self.patch_collections,
168
+ patch_type_id=self.patch_type_id,
169
+ product_id=self.product_id,
170
+ should_compliance_policy_rules_be_applied=self.should_compliance_policy_rules_be_applied,
171
+ state=self.state,
172
+ time_released_greater_than_or_equal_to=self.time_released_greater_than_or_equal_to,
173
+ time_released_less_than=self.time_released_less_than,
174
+ type=self.type,
175
+ version=self.version)
176
+
177
+
178
+ def get_patches(compartment_id: Optional[builtins.str] = None,
179
+ filters: Optional[Sequence[Union['GetPatchesFilterArgs', 'GetPatchesFilterArgsDict']]] = None,
180
+ id: Optional[builtins.str] = None,
181
+ name: Optional[builtins.str] = None,
182
+ patch_type_id: Optional[builtins.str] = None,
183
+ product_id: Optional[builtins.str] = None,
184
+ should_compliance_policy_rules_be_applied: Optional[builtins.bool] = None,
185
+ state: Optional[builtins.str] = None,
186
+ time_released_greater_than_or_equal_to: Optional[builtins.str] = None,
187
+ time_released_less_than: Optional[builtins.str] = None,
188
+ type: Optional[builtins.str] = None,
189
+ version: Optional[builtins.str] = None,
190
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPatchesResult:
191
+ """
192
+ This data source provides the list of Patches in Oracle Cloud Infrastructure Fleet Apps Management service.
193
+
194
+ Returns a list of all the Patches in the specified compartment.
195
+ The query parameter `compartmentId` is required unless the query parameter `id` is specified.
196
+
197
+ ## Example Usage
198
+
199
+ ```python
200
+ import pulumi
201
+ import pulumi_oci as oci
202
+
203
+ test_patches = oci.FleetAppsManagement.get_patches(compartment_id=compartment_id,
204
+ id=patch_id,
205
+ name=patch_name,
206
+ patch_type_id=test_patch_type["id"],
207
+ product_id=test_product["id"],
208
+ should_compliance_policy_rules_be_applied=patch_should_compliance_policy_rules_be_applied,
209
+ state=patch_state,
210
+ time_released_greater_than_or_equal_to=patch_time_released_greater_than_or_equal_to,
211
+ time_released_less_than=patch_time_released_less_than,
212
+ type=patch_type,
213
+ version=patch_version)
214
+ ```
215
+
216
+
217
+ :param builtins.str compartment_id: The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
218
+ :param builtins.str id: Unique identifier or OCID for listing a single Patch by id. Either compartmentId or id must be provided.
219
+ :param builtins.str name: A filter to return only resources that match the entire name given.
220
+ :param builtins.str patch_type_id: Patch Type platformConfigurationId associated with the Patch.
221
+ :param builtins.str product_id: Product platformConfigurationId associated with the Patch.
222
+ :param builtins.bool should_compliance_policy_rules_be_applied: Filter patch based on compliance policy rules for the Product.
223
+ :param builtins.str state: The current state of the Patch.
224
+ :param builtins.str time_released_greater_than_or_equal_to: A filter to return patches whose release date is greater than or equal to the given date.
225
+ :param builtins.str time_released_less_than: A filter to return patches whose release date is less than the given date.
226
+ :param builtins.str type: DefinedBy type.
227
+ :param builtins.str version: Product version.
228
+ """
229
+ __args__ = dict()
230
+ __args__['compartmentId'] = compartment_id
231
+ __args__['filters'] = filters
232
+ __args__['id'] = id
233
+ __args__['name'] = name
234
+ __args__['patchTypeId'] = patch_type_id
235
+ __args__['productId'] = product_id
236
+ __args__['shouldCompliancePolicyRulesBeApplied'] = should_compliance_policy_rules_be_applied
237
+ __args__['state'] = state
238
+ __args__['timeReleasedGreaterThanOrEqualTo'] = time_released_greater_than_or_equal_to
239
+ __args__['timeReleasedLessThan'] = time_released_less_than
240
+ __args__['type'] = type
241
+ __args__['version'] = version
242
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
243
+ __ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getPatches:getPatches', __args__, opts=opts, typ=GetPatchesResult).value
244
+
245
+ return AwaitableGetPatchesResult(
246
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
247
+ filters=pulumi.get(__ret__, 'filters'),
248
+ id=pulumi.get(__ret__, 'id'),
249
+ name=pulumi.get(__ret__, 'name'),
250
+ patch_collections=pulumi.get(__ret__, 'patch_collections'),
251
+ patch_type_id=pulumi.get(__ret__, 'patch_type_id'),
252
+ product_id=pulumi.get(__ret__, 'product_id'),
253
+ should_compliance_policy_rules_be_applied=pulumi.get(__ret__, 'should_compliance_policy_rules_be_applied'),
254
+ state=pulumi.get(__ret__, 'state'),
255
+ time_released_greater_than_or_equal_to=pulumi.get(__ret__, 'time_released_greater_than_or_equal_to'),
256
+ time_released_less_than=pulumi.get(__ret__, 'time_released_less_than'),
257
+ type=pulumi.get(__ret__, 'type'),
258
+ version=pulumi.get(__ret__, 'version'))
259
+ def get_patches_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
260
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetPatchesFilterArgs', 'GetPatchesFilterArgsDict']]]]] = None,
261
+ id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
262
+ name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
263
+ patch_type_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
264
+ product_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
265
+ should_compliance_policy_rules_be_applied: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
266
+ state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
267
+ time_released_greater_than_or_equal_to: Optional[pulumi.Input[Optional[builtins.str]]] = None,
268
+ time_released_less_than: Optional[pulumi.Input[Optional[builtins.str]]] = None,
269
+ type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
270
+ version: Optional[pulumi.Input[Optional[builtins.str]]] = None,
271
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPatchesResult]:
272
+ """
273
+ This data source provides the list of Patches in Oracle Cloud Infrastructure Fleet Apps Management service.
274
+
275
+ Returns a list of all the Patches in the specified compartment.
276
+ The query parameter `compartmentId` is required unless the query parameter `id` is specified.
277
+
278
+ ## Example Usage
279
+
280
+ ```python
281
+ import pulumi
282
+ import pulumi_oci as oci
283
+
284
+ test_patches = oci.FleetAppsManagement.get_patches(compartment_id=compartment_id,
285
+ id=patch_id,
286
+ name=patch_name,
287
+ patch_type_id=test_patch_type["id"],
288
+ product_id=test_product["id"],
289
+ should_compliance_policy_rules_be_applied=patch_should_compliance_policy_rules_be_applied,
290
+ state=patch_state,
291
+ time_released_greater_than_or_equal_to=patch_time_released_greater_than_or_equal_to,
292
+ time_released_less_than=patch_time_released_less_than,
293
+ type=patch_type,
294
+ version=patch_version)
295
+ ```
296
+
297
+
298
+ :param builtins.str compartment_id: The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
299
+ :param builtins.str id: Unique identifier or OCID for listing a single Patch by id. Either compartmentId or id must be provided.
300
+ :param builtins.str name: A filter to return only resources that match the entire name given.
301
+ :param builtins.str patch_type_id: Patch Type platformConfigurationId associated with the Patch.
302
+ :param builtins.str product_id: Product platformConfigurationId associated with the Patch.
303
+ :param builtins.bool should_compliance_policy_rules_be_applied: Filter patch based on compliance policy rules for the Product.
304
+ :param builtins.str state: The current state of the Patch.
305
+ :param builtins.str time_released_greater_than_or_equal_to: A filter to return patches whose release date is greater than or equal to the given date.
306
+ :param builtins.str time_released_less_than: A filter to return patches whose release date is less than the given date.
307
+ :param builtins.str type: DefinedBy type.
308
+ :param builtins.str version: Product version.
309
+ """
310
+ __args__ = dict()
311
+ __args__['compartmentId'] = compartment_id
312
+ __args__['filters'] = filters
313
+ __args__['id'] = id
314
+ __args__['name'] = name
315
+ __args__['patchTypeId'] = patch_type_id
316
+ __args__['productId'] = product_id
317
+ __args__['shouldCompliancePolicyRulesBeApplied'] = should_compliance_policy_rules_be_applied
318
+ __args__['state'] = state
319
+ __args__['timeReleasedGreaterThanOrEqualTo'] = time_released_greater_than_or_equal_to
320
+ __args__['timeReleasedLessThan'] = time_released_less_than
321
+ __args__['type'] = type
322
+ __args__['version'] = version
323
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
324
+ __ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getPatches:getPatches', __args__, opts=opts, typ=GetPatchesResult)
325
+ return __ret__.apply(lambda __response__: GetPatchesResult(
326
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
327
+ filters=pulumi.get(__response__, 'filters'),
328
+ id=pulumi.get(__response__, 'id'),
329
+ name=pulumi.get(__response__, 'name'),
330
+ patch_collections=pulumi.get(__response__, 'patch_collections'),
331
+ patch_type_id=pulumi.get(__response__, 'patch_type_id'),
332
+ product_id=pulumi.get(__response__, 'product_id'),
333
+ should_compliance_policy_rules_be_applied=pulumi.get(__response__, 'should_compliance_policy_rules_be_applied'),
334
+ state=pulumi.get(__response__, 'state'),
335
+ time_released_greater_than_or_equal_to=pulumi.get(__response__, 'time_released_greater_than_or_equal_to'),
336
+ time_released_less_than=pulumi.get(__response__, 'time_released_less_than'),
337
+ type=pulumi.get(__response__, 'type'),
338
+ version=pulumi.get(__response__, 'version')))
@@ -0,0 +1,297 @@
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
+ from . import outputs
18
+
19
+ __all__ = [
20
+ 'GetPlatformConfigurationResult',
21
+ 'AwaitableGetPlatformConfigurationResult',
22
+ 'get_platform_configuration',
23
+ 'get_platform_configuration_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetPlatformConfigurationResult:
28
+ """
29
+ A collection of values returned by getPlatformConfiguration.
30
+ """
31
+ def __init__(__self__, compartment_id=None, config_category_details=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, platform_configuration_id=None, resource_region=None, state=None, system_tags=None, time_created=None, time_updated=None, type=None):
32
+ if compartment_id and not isinstance(compartment_id, str):
33
+ raise TypeError("Expected argument 'compartment_id' to be a str")
34
+ pulumi.set(__self__, "compartment_id", compartment_id)
35
+ if config_category_details and not isinstance(config_category_details, list):
36
+ raise TypeError("Expected argument 'config_category_details' to be a list")
37
+ pulumi.set(__self__, "config_category_details", config_category_details)
38
+ if defined_tags and not isinstance(defined_tags, dict):
39
+ raise TypeError("Expected argument 'defined_tags' to be a dict")
40
+ pulumi.set(__self__, "defined_tags", defined_tags)
41
+ if description and not isinstance(description, str):
42
+ raise TypeError("Expected argument 'description' to be a str")
43
+ pulumi.set(__self__, "description", description)
44
+ if display_name and not isinstance(display_name, str):
45
+ raise TypeError("Expected argument 'display_name' to be a str")
46
+ pulumi.set(__self__, "display_name", display_name)
47
+ if freeform_tags and not isinstance(freeform_tags, dict):
48
+ raise TypeError("Expected argument 'freeform_tags' to be a dict")
49
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
50
+ if id and not isinstance(id, str):
51
+ raise TypeError("Expected argument 'id' to be a str")
52
+ pulumi.set(__self__, "id", id)
53
+ if lifecycle_details and not isinstance(lifecycle_details, str):
54
+ raise TypeError("Expected argument 'lifecycle_details' to be a str")
55
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
56
+ if platform_configuration_id and not isinstance(platform_configuration_id, str):
57
+ raise TypeError("Expected argument 'platform_configuration_id' to be a str")
58
+ pulumi.set(__self__, "platform_configuration_id", platform_configuration_id)
59
+ if resource_region and not isinstance(resource_region, str):
60
+ raise TypeError("Expected argument 'resource_region' to be a str")
61
+ pulumi.set(__self__, "resource_region", resource_region)
62
+ if state and not isinstance(state, str):
63
+ raise TypeError("Expected argument 'state' to be a str")
64
+ pulumi.set(__self__, "state", state)
65
+ if system_tags and not isinstance(system_tags, dict):
66
+ raise TypeError("Expected argument 'system_tags' to be a dict")
67
+ pulumi.set(__self__, "system_tags", system_tags)
68
+ if time_created and not isinstance(time_created, str):
69
+ raise TypeError("Expected argument 'time_created' to be a str")
70
+ pulumi.set(__self__, "time_created", time_created)
71
+ if time_updated and not isinstance(time_updated, str):
72
+ raise TypeError("Expected argument 'time_updated' to be a str")
73
+ pulumi.set(__self__, "time_updated", time_updated)
74
+ if type and not isinstance(type, str):
75
+ raise TypeError("Expected argument 'type' to be a str")
76
+ pulumi.set(__self__, "type", type)
77
+
78
+ @property
79
+ @pulumi.getter(name="compartmentId")
80
+ def compartment_id(self) -> builtins.str:
81
+ """
82
+ Compartment OCID
83
+ """
84
+ return pulumi.get(self, "compartment_id")
85
+
86
+ @property
87
+ @pulumi.getter(name="configCategoryDetails")
88
+ def config_category_details(self) -> Sequence['outputs.GetPlatformConfigurationConfigCategoryDetailResult']:
89
+ """
90
+ Config Category Details.
91
+ """
92
+ return pulumi.get(self, "config_category_details")
93
+
94
+ @property
95
+ @pulumi.getter(name="definedTags")
96
+ def defined_tags(self) -> Mapping[str, builtins.str]:
97
+ """
98
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
99
+ """
100
+ return pulumi.get(self, "defined_tags")
101
+
102
+ @property
103
+ @pulumi.getter
104
+ def description(self) -> builtins.str:
105
+ """
106
+ A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
107
+ """
108
+ return pulumi.get(self, "description")
109
+
110
+ @property
111
+ @pulumi.getter(name="displayName")
112
+ def display_name(self) -> builtins.str:
113
+ """
114
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
115
+ """
116
+ return pulumi.get(self, "display_name")
117
+
118
+ @property
119
+ @pulumi.getter(name="freeformTags")
120
+ def freeform_tags(self) -> Mapping[str, builtins.str]:
121
+ """
122
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
123
+ """
124
+ return pulumi.get(self, "freeform_tags")
125
+
126
+ @property
127
+ @pulumi.getter
128
+ def id(self) -> builtins.str:
129
+ """
130
+ The OCID of the resource.
131
+ """
132
+ return pulumi.get(self, "id")
133
+
134
+ @property
135
+ @pulumi.getter(name="lifecycleDetails")
136
+ def lifecycle_details(self) -> builtins.str:
137
+ """
138
+ A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
139
+ """
140
+ return pulumi.get(self, "lifecycle_details")
141
+
142
+ @property
143
+ @pulumi.getter(name="platformConfigurationId")
144
+ def platform_configuration_id(self) -> builtins.str:
145
+ return pulumi.get(self, "platform_configuration_id")
146
+
147
+ @property
148
+ @pulumi.getter(name="resourceRegion")
149
+ def resource_region(self) -> builtins.str:
150
+ """
151
+ Associated region
152
+ """
153
+ return pulumi.get(self, "resource_region")
154
+
155
+ @property
156
+ @pulumi.getter
157
+ def state(self) -> builtins.str:
158
+ """
159
+ The current state of the PlatformConfiguration.
160
+ """
161
+ return pulumi.get(self, "state")
162
+
163
+ @property
164
+ @pulumi.getter(name="systemTags")
165
+ def system_tags(self) -> Mapping[str, builtins.str]:
166
+ """
167
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
168
+ """
169
+ return pulumi.get(self, "system_tags")
170
+
171
+ @property
172
+ @pulumi.getter(name="timeCreated")
173
+ def time_created(self) -> builtins.str:
174
+ """
175
+ The time this resource was created. An RFC3339 formatted datetime string.
176
+ """
177
+ return pulumi.get(self, "time_created")
178
+
179
+ @property
180
+ @pulumi.getter(name="timeUpdated")
181
+ def time_updated(self) -> builtins.str:
182
+ """
183
+ The time this resource was last updated. An RFC3339 formatted datetime string.
184
+ """
185
+ return pulumi.get(self, "time_updated")
186
+
187
+ @property
188
+ @pulumi.getter
189
+ def type(self) -> builtins.str:
190
+ """
191
+ The type of the configuration.
192
+ """
193
+ return pulumi.get(self, "type")
194
+
195
+
196
+ class AwaitableGetPlatformConfigurationResult(GetPlatformConfigurationResult):
197
+ # pylint: disable=using-constant-test
198
+ def __await__(self):
199
+ if False:
200
+ yield self
201
+ return GetPlatformConfigurationResult(
202
+ compartment_id=self.compartment_id,
203
+ config_category_details=self.config_category_details,
204
+ defined_tags=self.defined_tags,
205
+ description=self.description,
206
+ display_name=self.display_name,
207
+ freeform_tags=self.freeform_tags,
208
+ id=self.id,
209
+ lifecycle_details=self.lifecycle_details,
210
+ platform_configuration_id=self.platform_configuration_id,
211
+ resource_region=self.resource_region,
212
+ state=self.state,
213
+ system_tags=self.system_tags,
214
+ time_created=self.time_created,
215
+ time_updated=self.time_updated,
216
+ type=self.type)
217
+
218
+
219
+ def get_platform_configuration(platform_configuration_id: Optional[builtins.str] = None,
220
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPlatformConfigurationResult:
221
+ """
222
+ This data source provides details about a specific Platform Configuration resource in Oracle Cloud Infrastructure Fleet Apps Management service.
223
+
224
+ Gets a PlatformConfiguration by identifier
225
+
226
+ ## Example Usage
227
+
228
+ ```python
229
+ import pulumi
230
+ import pulumi_oci as oci
231
+
232
+ test_platform_configuration = oci.FleetAppsManagement.get_platform_configuration(platform_configuration_id=test_platform_configuration_oci_fleet_apps_management_platform_configuration["id"])
233
+ ```
234
+
235
+
236
+ :param builtins.str platform_configuration_id: unique PlatformConfiguration identifier
237
+ """
238
+ __args__ = dict()
239
+ __args__['platformConfigurationId'] = platform_configuration_id
240
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
241
+ __ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getPlatformConfiguration:getPlatformConfiguration', __args__, opts=opts, typ=GetPlatformConfigurationResult).value
242
+
243
+ return AwaitableGetPlatformConfigurationResult(
244
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
245
+ config_category_details=pulumi.get(__ret__, 'config_category_details'),
246
+ defined_tags=pulumi.get(__ret__, 'defined_tags'),
247
+ description=pulumi.get(__ret__, 'description'),
248
+ display_name=pulumi.get(__ret__, 'display_name'),
249
+ freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
250
+ id=pulumi.get(__ret__, 'id'),
251
+ lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
252
+ platform_configuration_id=pulumi.get(__ret__, 'platform_configuration_id'),
253
+ resource_region=pulumi.get(__ret__, 'resource_region'),
254
+ state=pulumi.get(__ret__, 'state'),
255
+ system_tags=pulumi.get(__ret__, 'system_tags'),
256
+ time_created=pulumi.get(__ret__, 'time_created'),
257
+ time_updated=pulumi.get(__ret__, 'time_updated'),
258
+ type=pulumi.get(__ret__, 'type'))
259
+ def get_platform_configuration_output(platform_configuration_id: Optional[pulumi.Input[builtins.str]] = None,
260
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPlatformConfigurationResult]:
261
+ """
262
+ This data source provides details about a specific Platform Configuration resource in Oracle Cloud Infrastructure Fleet Apps Management service.
263
+
264
+ Gets a PlatformConfiguration by identifier
265
+
266
+ ## Example Usage
267
+
268
+ ```python
269
+ import pulumi
270
+ import pulumi_oci as oci
271
+
272
+ test_platform_configuration = oci.FleetAppsManagement.get_platform_configuration(platform_configuration_id=test_platform_configuration_oci_fleet_apps_management_platform_configuration["id"])
273
+ ```
274
+
275
+
276
+ :param builtins.str platform_configuration_id: unique PlatformConfiguration identifier
277
+ """
278
+ __args__ = dict()
279
+ __args__['platformConfigurationId'] = platform_configuration_id
280
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
281
+ __ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getPlatformConfiguration:getPlatformConfiguration', __args__, opts=opts, typ=GetPlatformConfigurationResult)
282
+ return __ret__.apply(lambda __response__: GetPlatformConfigurationResult(
283
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
284
+ config_category_details=pulumi.get(__response__, 'config_category_details'),
285
+ defined_tags=pulumi.get(__response__, 'defined_tags'),
286
+ description=pulumi.get(__response__, 'description'),
287
+ display_name=pulumi.get(__response__, 'display_name'),
288
+ freeform_tags=pulumi.get(__response__, 'freeform_tags'),
289
+ id=pulumi.get(__response__, 'id'),
290
+ lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
291
+ platform_configuration_id=pulumi.get(__response__, 'platform_configuration_id'),
292
+ resource_region=pulumi.get(__response__, 'resource_region'),
293
+ state=pulumi.get(__response__, 'state'),
294
+ system_tags=pulumi.get(__response__, 'system_tags'),
295
+ time_created=pulumi.get(__response__, 'time_created'),
296
+ time_updated=pulumi.get(__response__, 'time_updated'),
297
+ type=pulumi.get(__response__, 'type')))