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,950 @@
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__ = ['OccmDemandSignalItemArgs', 'OccmDemandSignalItem']
19
+
20
+ @pulumi.input_type
21
+ class OccmDemandSignalItemArgs:
22
+ def __init__(__self__, *,
23
+ compartment_id: pulumi.Input[builtins.str],
24
+ demand_quantity: pulumi.Input[builtins.str],
25
+ demand_signal_catalog_resource_id: pulumi.Input[builtins.str],
26
+ demand_signal_id: pulumi.Input[builtins.str],
27
+ region: pulumi.Input[builtins.str],
28
+ request_type: pulumi.Input[builtins.str],
29
+ resource_properties: pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]],
30
+ time_needed_before: pulumi.Input[builtins.str],
31
+ availability_domain: Optional[pulumi.Input[builtins.str]] = None,
32
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
33
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
34
+ notes: Optional[pulumi.Input[builtins.str]] = None,
35
+ target_compartment_id: Optional[pulumi.Input[builtins.str]] = None):
36
+ """
37
+ The set of arguments for constructing a OccmDemandSignalItem resource.
38
+ :param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the demand signal item was created.
39
+ :param pulumi.Input[builtins.str] demand_quantity: (Updatable) The quantity of the resource that you want to demand from OCI.
40
+ :param pulumi.Input[builtins.str] demand_signal_catalog_resource_id: The OCID of the correponding demand signal catalog resource.
41
+ :param pulumi.Input[builtins.str] demand_signal_id: The OCID of the demand signal under which we need to create this item.
42
+ :param pulumi.Input[builtins.str] region: (Updatable) The name of region for which you want to request the Oracle Cloud Infrastructure resource.
43
+ :param pulumi.Input[builtins.str] request_type: The type of request (DEMAND or RETURN) that you want to make for this demand signal item.
44
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] resource_properties: (Updatable) A map of various properties associated with the Oracle Cloud Infrastructure resource.
45
+ :param pulumi.Input[builtins.str] time_needed_before: (Updatable) the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
46
+
47
+
48
+ ** IMPORTANT **
49
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
50
+ :param pulumi.Input[builtins.str] availability_domain: (Updatable) The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
51
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
52
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
53
+ :param pulumi.Input[builtins.str] notes: (Updatable) This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
54
+
55
+ NOTE: The previous value gets overwritten with the new one for this once updated.
56
+ :param pulumi.Input[builtins.str] target_compartment_id: (Updatable) The OCID of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
57
+ """
58
+ pulumi.set(__self__, "compartment_id", compartment_id)
59
+ pulumi.set(__self__, "demand_quantity", demand_quantity)
60
+ pulumi.set(__self__, "demand_signal_catalog_resource_id", demand_signal_catalog_resource_id)
61
+ pulumi.set(__self__, "demand_signal_id", demand_signal_id)
62
+ pulumi.set(__self__, "region", region)
63
+ pulumi.set(__self__, "request_type", request_type)
64
+ pulumi.set(__self__, "resource_properties", resource_properties)
65
+ pulumi.set(__self__, "time_needed_before", time_needed_before)
66
+ if availability_domain is not None:
67
+ pulumi.set(__self__, "availability_domain", availability_domain)
68
+ if defined_tags is not None:
69
+ pulumi.set(__self__, "defined_tags", defined_tags)
70
+ if freeform_tags is not None:
71
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
72
+ if notes is not None:
73
+ pulumi.set(__self__, "notes", notes)
74
+ if target_compartment_id is not None:
75
+ pulumi.set(__self__, "target_compartment_id", target_compartment_id)
76
+
77
+ @property
78
+ @pulumi.getter(name="compartmentId")
79
+ def compartment_id(self) -> pulumi.Input[builtins.str]:
80
+ """
81
+ The OCID of the tenancy from which the demand signal item was created.
82
+ """
83
+ return pulumi.get(self, "compartment_id")
84
+
85
+ @compartment_id.setter
86
+ def compartment_id(self, value: pulumi.Input[builtins.str]):
87
+ pulumi.set(self, "compartment_id", value)
88
+
89
+ @property
90
+ @pulumi.getter(name="demandQuantity")
91
+ def demand_quantity(self) -> pulumi.Input[builtins.str]:
92
+ """
93
+ (Updatable) The quantity of the resource that you want to demand from OCI.
94
+ """
95
+ return pulumi.get(self, "demand_quantity")
96
+
97
+ @demand_quantity.setter
98
+ def demand_quantity(self, value: pulumi.Input[builtins.str]):
99
+ pulumi.set(self, "demand_quantity", value)
100
+
101
+ @property
102
+ @pulumi.getter(name="demandSignalCatalogResourceId")
103
+ def demand_signal_catalog_resource_id(self) -> pulumi.Input[builtins.str]:
104
+ """
105
+ The OCID of the correponding demand signal catalog resource.
106
+ """
107
+ return pulumi.get(self, "demand_signal_catalog_resource_id")
108
+
109
+ @demand_signal_catalog_resource_id.setter
110
+ def demand_signal_catalog_resource_id(self, value: pulumi.Input[builtins.str]):
111
+ pulumi.set(self, "demand_signal_catalog_resource_id", value)
112
+
113
+ @property
114
+ @pulumi.getter(name="demandSignalId")
115
+ def demand_signal_id(self) -> pulumi.Input[builtins.str]:
116
+ """
117
+ The OCID of the demand signal under which we need to create this item.
118
+ """
119
+ return pulumi.get(self, "demand_signal_id")
120
+
121
+ @demand_signal_id.setter
122
+ def demand_signal_id(self, value: pulumi.Input[builtins.str]):
123
+ pulumi.set(self, "demand_signal_id", value)
124
+
125
+ @property
126
+ @pulumi.getter
127
+ def region(self) -> pulumi.Input[builtins.str]:
128
+ """
129
+ (Updatable) The name of region for which you want to request the Oracle Cloud Infrastructure resource.
130
+ """
131
+ return pulumi.get(self, "region")
132
+
133
+ @region.setter
134
+ def region(self, value: pulumi.Input[builtins.str]):
135
+ pulumi.set(self, "region", value)
136
+
137
+ @property
138
+ @pulumi.getter(name="requestType")
139
+ def request_type(self) -> pulumi.Input[builtins.str]:
140
+ """
141
+ The type of request (DEMAND or RETURN) that you want to make for this demand signal item.
142
+ """
143
+ return pulumi.get(self, "request_type")
144
+
145
+ @request_type.setter
146
+ def request_type(self, value: pulumi.Input[builtins.str]):
147
+ pulumi.set(self, "request_type", value)
148
+
149
+ @property
150
+ @pulumi.getter(name="resourceProperties")
151
+ def resource_properties(self) -> pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]:
152
+ """
153
+ (Updatable) A map of various properties associated with the Oracle Cloud Infrastructure resource.
154
+ """
155
+ return pulumi.get(self, "resource_properties")
156
+
157
+ @resource_properties.setter
158
+ def resource_properties(self, value: pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]):
159
+ pulumi.set(self, "resource_properties", value)
160
+
161
+ @property
162
+ @pulumi.getter(name="timeNeededBefore")
163
+ def time_needed_before(self) -> pulumi.Input[builtins.str]:
164
+ """
165
+ (Updatable) the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
166
+
167
+
168
+ ** IMPORTANT **
169
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
170
+ """
171
+ return pulumi.get(self, "time_needed_before")
172
+
173
+ @time_needed_before.setter
174
+ def time_needed_before(self, value: pulumi.Input[builtins.str]):
175
+ pulumi.set(self, "time_needed_before", value)
176
+
177
+ @property
178
+ @pulumi.getter(name="availabilityDomain")
179
+ def availability_domain(self) -> Optional[pulumi.Input[builtins.str]]:
180
+ """
181
+ (Updatable) The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
182
+ """
183
+ return pulumi.get(self, "availability_domain")
184
+
185
+ @availability_domain.setter
186
+ def availability_domain(self, value: Optional[pulumi.Input[builtins.str]]):
187
+ pulumi.set(self, "availability_domain", value)
188
+
189
+ @property
190
+ @pulumi.getter(name="definedTags")
191
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
192
+ """
193
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
194
+ """
195
+ return pulumi.get(self, "defined_tags")
196
+
197
+ @defined_tags.setter
198
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
199
+ pulumi.set(self, "defined_tags", value)
200
+
201
+ @property
202
+ @pulumi.getter(name="freeformTags")
203
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
204
+ """
205
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
206
+ """
207
+ return pulumi.get(self, "freeform_tags")
208
+
209
+ @freeform_tags.setter
210
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
211
+ pulumi.set(self, "freeform_tags", value)
212
+
213
+ @property
214
+ @pulumi.getter
215
+ def notes(self) -> Optional[pulumi.Input[builtins.str]]:
216
+ """
217
+ (Updatable) This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
218
+
219
+ NOTE: The previous value gets overwritten with the new one for this once updated.
220
+ """
221
+ return pulumi.get(self, "notes")
222
+
223
+ @notes.setter
224
+ def notes(self, value: Optional[pulumi.Input[builtins.str]]):
225
+ pulumi.set(self, "notes", value)
226
+
227
+ @property
228
+ @pulumi.getter(name="targetCompartmentId")
229
+ def target_compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
230
+ """
231
+ (Updatable) The OCID of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
232
+ """
233
+ return pulumi.get(self, "target_compartment_id")
234
+
235
+ @target_compartment_id.setter
236
+ def target_compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
237
+ pulumi.set(self, "target_compartment_id", value)
238
+
239
+
240
+ @pulumi.input_type
241
+ class _OccmDemandSignalItemState:
242
+ def __init__(__self__, *,
243
+ availability_domain: Optional[pulumi.Input[builtins.str]] = None,
244
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
245
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
246
+ demand_quantity: Optional[pulumi.Input[builtins.str]] = None,
247
+ demand_signal_catalog_resource_id: Optional[pulumi.Input[builtins.str]] = None,
248
+ demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
249
+ demand_signal_namespace: Optional[pulumi.Input[builtins.str]] = None,
250
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
251
+ notes: Optional[pulumi.Input[builtins.str]] = None,
252
+ region: Optional[pulumi.Input[builtins.str]] = None,
253
+ request_type: Optional[pulumi.Input[builtins.str]] = None,
254
+ resource_name: Optional[pulumi.Input[builtins.str]] = None,
255
+ resource_properties: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
256
+ state: Optional[pulumi.Input[builtins.str]] = None,
257
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
258
+ target_compartment_id: Optional[pulumi.Input[builtins.str]] = None,
259
+ time_needed_before: Optional[pulumi.Input[builtins.str]] = None):
260
+ """
261
+ Input properties used for looking up and filtering OccmDemandSignalItem resources.
262
+ :param pulumi.Input[builtins.str] availability_domain: (Updatable) The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
263
+ :param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the demand signal item was created.
264
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
265
+ :param pulumi.Input[builtins.str] demand_quantity: (Updatable) The quantity of the resource that you want to demand from OCI.
266
+ :param pulumi.Input[builtins.str] demand_signal_catalog_resource_id: The OCID of the correponding demand signal catalog resource.
267
+ :param pulumi.Input[builtins.str] demand_signal_id: The OCID of the demand signal under which we need to create this item.
268
+ :param pulumi.Input[builtins.str] demand_signal_namespace: The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
269
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
270
+ :param pulumi.Input[builtins.str] notes: (Updatable) This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
271
+
272
+ NOTE: The previous value gets overwritten with the new one for this once updated.
273
+ :param pulumi.Input[builtins.str] region: (Updatable) The name of region for which you want to request the Oracle Cloud Infrastructure resource.
274
+ :param pulumi.Input[builtins.str] request_type: The type of request (DEMAND or RETURN) that you want to make for this demand signal item.
275
+ :param pulumi.Input[builtins.str] resource_name: The name of the Oracle Cloud Infrastructure resource that you want to request.
276
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] resource_properties: (Updatable) A map of various properties associated with the Oracle Cloud Infrastructure resource.
277
+ :param pulumi.Input[builtins.str] state: The current lifecycle state of the resource.
278
+ :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"}`
279
+ :param pulumi.Input[builtins.str] target_compartment_id: (Updatable) The OCID of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
280
+ :param pulumi.Input[builtins.str] time_needed_before: (Updatable) the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
281
+
282
+
283
+ ** IMPORTANT **
284
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
285
+ """
286
+ if availability_domain is not None:
287
+ pulumi.set(__self__, "availability_domain", availability_domain)
288
+ if compartment_id is not None:
289
+ pulumi.set(__self__, "compartment_id", compartment_id)
290
+ if defined_tags is not None:
291
+ pulumi.set(__self__, "defined_tags", defined_tags)
292
+ if demand_quantity is not None:
293
+ pulumi.set(__self__, "demand_quantity", demand_quantity)
294
+ if demand_signal_catalog_resource_id is not None:
295
+ pulumi.set(__self__, "demand_signal_catalog_resource_id", demand_signal_catalog_resource_id)
296
+ if demand_signal_id is not None:
297
+ pulumi.set(__self__, "demand_signal_id", demand_signal_id)
298
+ if demand_signal_namespace is not None:
299
+ pulumi.set(__self__, "demand_signal_namespace", demand_signal_namespace)
300
+ if freeform_tags is not None:
301
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
302
+ if notes is not None:
303
+ pulumi.set(__self__, "notes", notes)
304
+ if region is not None:
305
+ pulumi.set(__self__, "region", region)
306
+ if request_type is not None:
307
+ pulumi.set(__self__, "request_type", request_type)
308
+ if resource_name is not None:
309
+ pulumi.set(__self__, "resource_name", resource_name)
310
+ if resource_properties is not None:
311
+ pulumi.set(__self__, "resource_properties", resource_properties)
312
+ if state is not None:
313
+ pulumi.set(__self__, "state", state)
314
+ if system_tags is not None:
315
+ pulumi.set(__self__, "system_tags", system_tags)
316
+ if target_compartment_id is not None:
317
+ pulumi.set(__self__, "target_compartment_id", target_compartment_id)
318
+ if time_needed_before is not None:
319
+ pulumi.set(__self__, "time_needed_before", time_needed_before)
320
+
321
+ @property
322
+ @pulumi.getter(name="availabilityDomain")
323
+ def availability_domain(self) -> Optional[pulumi.Input[builtins.str]]:
324
+ """
325
+ (Updatable) The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
326
+ """
327
+ return pulumi.get(self, "availability_domain")
328
+
329
+ @availability_domain.setter
330
+ def availability_domain(self, value: Optional[pulumi.Input[builtins.str]]):
331
+ pulumi.set(self, "availability_domain", value)
332
+
333
+ @property
334
+ @pulumi.getter(name="compartmentId")
335
+ def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
336
+ """
337
+ The OCID of the tenancy from which the demand signal item was created.
338
+ """
339
+ return pulumi.get(self, "compartment_id")
340
+
341
+ @compartment_id.setter
342
+ def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
343
+ pulumi.set(self, "compartment_id", value)
344
+
345
+ @property
346
+ @pulumi.getter(name="definedTags")
347
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
348
+ """
349
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
350
+ """
351
+ return pulumi.get(self, "defined_tags")
352
+
353
+ @defined_tags.setter
354
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
355
+ pulumi.set(self, "defined_tags", value)
356
+
357
+ @property
358
+ @pulumi.getter(name="demandQuantity")
359
+ def demand_quantity(self) -> Optional[pulumi.Input[builtins.str]]:
360
+ """
361
+ (Updatable) The quantity of the resource that you want to demand from OCI.
362
+ """
363
+ return pulumi.get(self, "demand_quantity")
364
+
365
+ @demand_quantity.setter
366
+ def demand_quantity(self, value: Optional[pulumi.Input[builtins.str]]):
367
+ pulumi.set(self, "demand_quantity", value)
368
+
369
+ @property
370
+ @pulumi.getter(name="demandSignalCatalogResourceId")
371
+ def demand_signal_catalog_resource_id(self) -> Optional[pulumi.Input[builtins.str]]:
372
+ """
373
+ The OCID of the correponding demand signal catalog resource.
374
+ """
375
+ return pulumi.get(self, "demand_signal_catalog_resource_id")
376
+
377
+ @demand_signal_catalog_resource_id.setter
378
+ def demand_signal_catalog_resource_id(self, value: Optional[pulumi.Input[builtins.str]]):
379
+ pulumi.set(self, "demand_signal_catalog_resource_id", value)
380
+
381
+ @property
382
+ @pulumi.getter(name="demandSignalId")
383
+ def demand_signal_id(self) -> Optional[pulumi.Input[builtins.str]]:
384
+ """
385
+ The OCID of the demand signal under which we need to create this item.
386
+ """
387
+ return pulumi.get(self, "demand_signal_id")
388
+
389
+ @demand_signal_id.setter
390
+ def demand_signal_id(self, value: Optional[pulumi.Input[builtins.str]]):
391
+ pulumi.set(self, "demand_signal_id", value)
392
+
393
+ @property
394
+ @pulumi.getter(name="demandSignalNamespace")
395
+ def demand_signal_namespace(self) -> Optional[pulumi.Input[builtins.str]]:
396
+ """
397
+ The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
398
+ """
399
+ return pulumi.get(self, "demand_signal_namespace")
400
+
401
+ @demand_signal_namespace.setter
402
+ def demand_signal_namespace(self, value: Optional[pulumi.Input[builtins.str]]):
403
+ pulumi.set(self, "demand_signal_namespace", value)
404
+
405
+ @property
406
+ @pulumi.getter(name="freeformTags")
407
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
408
+ """
409
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
410
+ """
411
+ return pulumi.get(self, "freeform_tags")
412
+
413
+ @freeform_tags.setter
414
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
415
+ pulumi.set(self, "freeform_tags", value)
416
+
417
+ @property
418
+ @pulumi.getter
419
+ def notes(self) -> Optional[pulumi.Input[builtins.str]]:
420
+ """
421
+ (Updatable) This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
422
+
423
+ NOTE: The previous value gets overwritten with the new one for this once updated.
424
+ """
425
+ return pulumi.get(self, "notes")
426
+
427
+ @notes.setter
428
+ def notes(self, value: Optional[pulumi.Input[builtins.str]]):
429
+ pulumi.set(self, "notes", value)
430
+
431
+ @property
432
+ @pulumi.getter
433
+ def region(self) -> Optional[pulumi.Input[builtins.str]]:
434
+ """
435
+ (Updatable) The name of region for which you want to request the Oracle Cloud Infrastructure resource.
436
+ """
437
+ return pulumi.get(self, "region")
438
+
439
+ @region.setter
440
+ def region(self, value: Optional[pulumi.Input[builtins.str]]):
441
+ pulumi.set(self, "region", value)
442
+
443
+ @property
444
+ @pulumi.getter(name="requestType")
445
+ def request_type(self) -> Optional[pulumi.Input[builtins.str]]:
446
+ """
447
+ The type of request (DEMAND or RETURN) that you want to make for this demand signal item.
448
+ """
449
+ return pulumi.get(self, "request_type")
450
+
451
+ @request_type.setter
452
+ def request_type(self, value: Optional[pulumi.Input[builtins.str]]):
453
+ pulumi.set(self, "request_type", value)
454
+
455
+ @property
456
+ @pulumi.getter(name="resourceName")
457
+ def resource_name(self) -> Optional[pulumi.Input[builtins.str]]:
458
+ """
459
+ The name of the Oracle Cloud Infrastructure resource that you want to request.
460
+ """
461
+ return pulumi.get(self, "resource_name")
462
+
463
+ @resource_name.setter
464
+ def resource_name(self, value: Optional[pulumi.Input[builtins.str]]):
465
+ pulumi.set(self, "resource_name", value)
466
+
467
+ @property
468
+ @pulumi.getter(name="resourceProperties")
469
+ def resource_properties(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
470
+ """
471
+ (Updatable) A map of various properties associated with the Oracle Cloud Infrastructure resource.
472
+ """
473
+ return pulumi.get(self, "resource_properties")
474
+
475
+ @resource_properties.setter
476
+ def resource_properties(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
477
+ pulumi.set(self, "resource_properties", value)
478
+
479
+ @property
480
+ @pulumi.getter
481
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
482
+ """
483
+ The current lifecycle state of the resource.
484
+ """
485
+ return pulumi.get(self, "state")
486
+
487
+ @state.setter
488
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
489
+ pulumi.set(self, "state", value)
490
+
491
+ @property
492
+ @pulumi.getter(name="systemTags")
493
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
494
+ """
495
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
496
+ """
497
+ return pulumi.get(self, "system_tags")
498
+
499
+ @system_tags.setter
500
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
501
+ pulumi.set(self, "system_tags", value)
502
+
503
+ @property
504
+ @pulumi.getter(name="targetCompartmentId")
505
+ def target_compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
506
+ """
507
+ (Updatable) The OCID of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
508
+ """
509
+ return pulumi.get(self, "target_compartment_id")
510
+
511
+ @target_compartment_id.setter
512
+ def target_compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
513
+ pulumi.set(self, "target_compartment_id", value)
514
+
515
+ @property
516
+ @pulumi.getter(name="timeNeededBefore")
517
+ def time_needed_before(self) -> Optional[pulumi.Input[builtins.str]]:
518
+ """
519
+ (Updatable) the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
520
+
521
+
522
+ ** IMPORTANT **
523
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
524
+ """
525
+ return pulumi.get(self, "time_needed_before")
526
+
527
+ @time_needed_before.setter
528
+ def time_needed_before(self, value: Optional[pulumi.Input[builtins.str]]):
529
+ pulumi.set(self, "time_needed_before", value)
530
+
531
+
532
+ @pulumi.type_token("oci:CapacityManagement/occmDemandSignalItem:OccmDemandSignalItem")
533
+ class OccmDemandSignalItem(pulumi.CustomResource):
534
+ @overload
535
+ def __init__(__self__,
536
+ resource_name: str,
537
+ opts: Optional[pulumi.ResourceOptions] = None,
538
+ availability_domain: Optional[pulumi.Input[builtins.str]] = None,
539
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
540
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
541
+ demand_quantity: Optional[pulumi.Input[builtins.str]] = None,
542
+ demand_signal_catalog_resource_id: Optional[pulumi.Input[builtins.str]] = None,
543
+ demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
544
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
545
+ notes: Optional[pulumi.Input[builtins.str]] = None,
546
+ region: Optional[pulumi.Input[builtins.str]] = None,
547
+ request_type: Optional[pulumi.Input[builtins.str]] = None,
548
+ resource_properties: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
549
+ target_compartment_id: Optional[pulumi.Input[builtins.str]] = None,
550
+ time_needed_before: Optional[pulumi.Input[builtins.str]] = None,
551
+ __props__=None):
552
+ """
553
+ This resource provides the Occm Demand Signal Item resource in Oracle Cloud Infrastructure Capacity Management service.
554
+
555
+ This API will create a demand signal item representing a resource request. This needs to be grouped under a demand signal.
556
+
557
+ ## Example Usage
558
+
559
+ ```python
560
+ import pulumi
561
+ import pulumi_oci as oci
562
+
563
+ test_occm_demand_signal_item = oci.capacity_management.OccmDemandSignalItem("test_occm_demand_signal_item",
564
+ compartment_id=compartment_id,
565
+ demand_quantity=occm_demand_signal_item_demand_quantity,
566
+ demand_signal_catalog_resource_id=test_resource["id"],
567
+ demand_signal_id=test_demand_signal["id"],
568
+ region=occm_demand_signal_item_region,
569
+ request_type=occm_demand_signal_item_request_type,
570
+ resource_properties=occm_demand_signal_item_resource_properties,
571
+ time_needed_before=occm_demand_signal_item_time_needed_before,
572
+ availability_domain=occm_demand_signal_item_availability_domain,
573
+ defined_tags={
574
+ "foo-namespace.bar-key": "value",
575
+ },
576
+ freeform_tags={
577
+ "bar-key": "value",
578
+ },
579
+ notes=occm_demand_signal_item_notes,
580
+ target_compartment_id=test_compartment["id"])
581
+ ```
582
+
583
+ ## Import
584
+
585
+ OccmDemandSignalItems can be imported using the `id`, e.g.
586
+
587
+ ```sh
588
+ $ pulumi import oci:CapacityManagement/occmDemandSignalItem:OccmDemandSignalItem test_occm_demand_signal_item "id"
589
+ ```
590
+
591
+ :param str resource_name: The name of the resource.
592
+ :param pulumi.ResourceOptions opts: Options for the resource.
593
+ :param pulumi.Input[builtins.str] availability_domain: (Updatable) The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
594
+ :param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the demand signal item was created.
595
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
596
+ :param pulumi.Input[builtins.str] demand_quantity: (Updatable) The quantity of the resource that you want to demand from OCI.
597
+ :param pulumi.Input[builtins.str] demand_signal_catalog_resource_id: The OCID of the correponding demand signal catalog resource.
598
+ :param pulumi.Input[builtins.str] demand_signal_id: The OCID of the demand signal under which we need to create this item.
599
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
600
+ :param pulumi.Input[builtins.str] notes: (Updatable) This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
601
+
602
+ NOTE: The previous value gets overwritten with the new one for this once updated.
603
+ :param pulumi.Input[builtins.str] region: (Updatable) The name of region for which you want to request the Oracle Cloud Infrastructure resource.
604
+ :param pulumi.Input[builtins.str] request_type: The type of request (DEMAND or RETURN) that you want to make for this demand signal item.
605
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] resource_properties: (Updatable) A map of various properties associated with the Oracle Cloud Infrastructure resource.
606
+ :param pulumi.Input[builtins.str] target_compartment_id: (Updatable) The OCID of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
607
+ :param pulumi.Input[builtins.str] time_needed_before: (Updatable) the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
608
+
609
+
610
+ ** IMPORTANT **
611
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
612
+ """
613
+ ...
614
+ @overload
615
+ def __init__(__self__,
616
+ resource_name: str,
617
+ args: OccmDemandSignalItemArgs,
618
+ opts: Optional[pulumi.ResourceOptions] = None):
619
+ """
620
+ This resource provides the Occm Demand Signal Item resource in Oracle Cloud Infrastructure Capacity Management service.
621
+
622
+ This API will create a demand signal item representing a resource request. This needs to be grouped under a demand signal.
623
+
624
+ ## Example Usage
625
+
626
+ ```python
627
+ import pulumi
628
+ import pulumi_oci as oci
629
+
630
+ test_occm_demand_signal_item = oci.capacity_management.OccmDemandSignalItem("test_occm_demand_signal_item",
631
+ compartment_id=compartment_id,
632
+ demand_quantity=occm_demand_signal_item_demand_quantity,
633
+ demand_signal_catalog_resource_id=test_resource["id"],
634
+ demand_signal_id=test_demand_signal["id"],
635
+ region=occm_demand_signal_item_region,
636
+ request_type=occm_demand_signal_item_request_type,
637
+ resource_properties=occm_demand_signal_item_resource_properties,
638
+ time_needed_before=occm_demand_signal_item_time_needed_before,
639
+ availability_domain=occm_demand_signal_item_availability_domain,
640
+ defined_tags={
641
+ "foo-namespace.bar-key": "value",
642
+ },
643
+ freeform_tags={
644
+ "bar-key": "value",
645
+ },
646
+ notes=occm_demand_signal_item_notes,
647
+ target_compartment_id=test_compartment["id"])
648
+ ```
649
+
650
+ ## Import
651
+
652
+ OccmDemandSignalItems can be imported using the `id`, e.g.
653
+
654
+ ```sh
655
+ $ pulumi import oci:CapacityManagement/occmDemandSignalItem:OccmDemandSignalItem test_occm_demand_signal_item "id"
656
+ ```
657
+
658
+ :param str resource_name: The name of the resource.
659
+ :param OccmDemandSignalItemArgs args: The arguments to use to populate this resource's properties.
660
+ :param pulumi.ResourceOptions opts: Options for the resource.
661
+ """
662
+ ...
663
+ def __init__(__self__, resource_name: str, *args, **kwargs):
664
+ resource_args, opts = _utilities.get_resource_args_opts(OccmDemandSignalItemArgs, pulumi.ResourceOptions, *args, **kwargs)
665
+ if resource_args is not None:
666
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
667
+ else:
668
+ __self__._internal_init(resource_name, *args, **kwargs)
669
+
670
+ def _internal_init(__self__,
671
+ resource_name: str,
672
+ opts: Optional[pulumi.ResourceOptions] = None,
673
+ availability_domain: Optional[pulumi.Input[builtins.str]] = None,
674
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
675
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
676
+ demand_quantity: Optional[pulumi.Input[builtins.str]] = None,
677
+ demand_signal_catalog_resource_id: Optional[pulumi.Input[builtins.str]] = None,
678
+ demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
679
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
680
+ notes: Optional[pulumi.Input[builtins.str]] = None,
681
+ region: Optional[pulumi.Input[builtins.str]] = None,
682
+ request_type: Optional[pulumi.Input[builtins.str]] = None,
683
+ resource_properties: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
684
+ target_compartment_id: Optional[pulumi.Input[builtins.str]] = None,
685
+ time_needed_before: Optional[pulumi.Input[builtins.str]] = None,
686
+ __props__=None):
687
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
688
+ if not isinstance(opts, pulumi.ResourceOptions):
689
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
690
+ if opts.id is None:
691
+ if __props__ is not None:
692
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
693
+ __props__ = OccmDemandSignalItemArgs.__new__(OccmDemandSignalItemArgs)
694
+
695
+ __props__.__dict__["availability_domain"] = availability_domain
696
+ if compartment_id is None and not opts.urn:
697
+ raise TypeError("Missing required property 'compartment_id'")
698
+ __props__.__dict__["compartment_id"] = compartment_id
699
+ __props__.__dict__["defined_tags"] = defined_tags
700
+ if demand_quantity is None and not opts.urn:
701
+ raise TypeError("Missing required property 'demand_quantity'")
702
+ __props__.__dict__["demand_quantity"] = demand_quantity
703
+ if demand_signal_catalog_resource_id is None and not opts.urn:
704
+ raise TypeError("Missing required property 'demand_signal_catalog_resource_id'")
705
+ __props__.__dict__["demand_signal_catalog_resource_id"] = demand_signal_catalog_resource_id
706
+ if demand_signal_id is None and not opts.urn:
707
+ raise TypeError("Missing required property 'demand_signal_id'")
708
+ __props__.__dict__["demand_signal_id"] = demand_signal_id
709
+ __props__.__dict__["freeform_tags"] = freeform_tags
710
+ __props__.__dict__["notes"] = notes
711
+ if region is None and not opts.urn:
712
+ raise TypeError("Missing required property 'region'")
713
+ __props__.__dict__["region"] = region
714
+ if request_type is None and not opts.urn:
715
+ raise TypeError("Missing required property 'request_type'")
716
+ __props__.__dict__["request_type"] = request_type
717
+ if resource_properties is None and not opts.urn:
718
+ raise TypeError("Missing required property 'resource_properties'")
719
+ __props__.__dict__["resource_properties"] = resource_properties
720
+ __props__.__dict__["target_compartment_id"] = target_compartment_id
721
+ if time_needed_before is None and not opts.urn:
722
+ raise TypeError("Missing required property 'time_needed_before'")
723
+ __props__.__dict__["time_needed_before"] = time_needed_before
724
+ __props__.__dict__["demand_signal_namespace"] = None
725
+ __props__.__dict__["resource_name"] = None
726
+ __props__.__dict__["state"] = None
727
+ __props__.__dict__["system_tags"] = None
728
+ super(OccmDemandSignalItem, __self__).__init__(
729
+ 'oci:CapacityManagement/occmDemandSignalItem:OccmDemandSignalItem',
730
+ resource_name,
731
+ __props__,
732
+ opts)
733
+
734
+ @staticmethod
735
+ def get(resource_name: str,
736
+ id: pulumi.Input[str],
737
+ opts: Optional[pulumi.ResourceOptions] = None,
738
+ availability_domain: Optional[pulumi.Input[builtins.str]] = None,
739
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
740
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
741
+ demand_quantity: Optional[pulumi.Input[builtins.str]] = None,
742
+ demand_signal_catalog_resource_id: Optional[pulumi.Input[builtins.str]] = None,
743
+ demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
744
+ demand_signal_namespace: Optional[pulumi.Input[builtins.str]] = None,
745
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
746
+ notes: Optional[pulumi.Input[builtins.str]] = None,
747
+ region: Optional[pulumi.Input[builtins.str]] = None,
748
+ request_type: Optional[pulumi.Input[builtins.str]] = None,
749
+ resource_name_: Optional[pulumi.Input[builtins.str]] = None,
750
+ resource_properties: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
751
+ state: Optional[pulumi.Input[builtins.str]] = None,
752
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
753
+ target_compartment_id: Optional[pulumi.Input[builtins.str]] = None,
754
+ time_needed_before: Optional[pulumi.Input[builtins.str]] = None) -> 'OccmDemandSignalItem':
755
+ """
756
+ Get an existing OccmDemandSignalItem resource's state with the given name, id, and optional extra
757
+ properties used to qualify the lookup.
758
+
759
+ :param str resource_name: The unique name of the resulting resource.
760
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
761
+ :param pulumi.ResourceOptions opts: Options for the resource.
762
+ :param pulumi.Input[builtins.str] availability_domain: (Updatable) The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
763
+ :param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the demand signal item was created.
764
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
765
+ :param pulumi.Input[builtins.str] demand_quantity: (Updatable) The quantity of the resource that you want to demand from OCI.
766
+ :param pulumi.Input[builtins.str] demand_signal_catalog_resource_id: The OCID of the correponding demand signal catalog resource.
767
+ :param pulumi.Input[builtins.str] demand_signal_id: The OCID of the demand signal under which we need to create this item.
768
+ :param pulumi.Input[builtins.str] demand_signal_namespace: The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
769
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
770
+ :param pulumi.Input[builtins.str] notes: (Updatable) This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
771
+
772
+ NOTE: The previous value gets overwritten with the new one for this once updated.
773
+ :param pulumi.Input[builtins.str] region: (Updatable) The name of region for which you want to request the Oracle Cloud Infrastructure resource.
774
+ :param pulumi.Input[builtins.str] request_type: The type of request (DEMAND or RETURN) that you want to make for this demand signal item.
775
+ :param pulumi.Input[builtins.str] resource_name_: The name of the Oracle Cloud Infrastructure resource that you want to request.
776
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] resource_properties: (Updatable) A map of various properties associated with the Oracle Cloud Infrastructure resource.
777
+ :param pulumi.Input[builtins.str] state: The current lifecycle state of the resource.
778
+ :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"}`
779
+ :param pulumi.Input[builtins.str] target_compartment_id: (Updatable) The OCID of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
780
+ :param pulumi.Input[builtins.str] time_needed_before: (Updatable) the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
781
+
782
+
783
+ ** IMPORTANT **
784
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
785
+ """
786
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
787
+
788
+ __props__ = _OccmDemandSignalItemState.__new__(_OccmDemandSignalItemState)
789
+
790
+ __props__.__dict__["availability_domain"] = availability_domain
791
+ __props__.__dict__["compartment_id"] = compartment_id
792
+ __props__.__dict__["defined_tags"] = defined_tags
793
+ __props__.__dict__["demand_quantity"] = demand_quantity
794
+ __props__.__dict__["demand_signal_catalog_resource_id"] = demand_signal_catalog_resource_id
795
+ __props__.__dict__["demand_signal_id"] = demand_signal_id
796
+ __props__.__dict__["demand_signal_namespace"] = demand_signal_namespace
797
+ __props__.__dict__["freeform_tags"] = freeform_tags
798
+ __props__.__dict__["notes"] = notes
799
+ __props__.__dict__["region"] = region
800
+ __props__.__dict__["request_type"] = request_type
801
+ __props__.__dict__["resource_name"] = resource_name_
802
+ __props__.__dict__["resource_properties"] = resource_properties
803
+ __props__.__dict__["state"] = state
804
+ __props__.__dict__["system_tags"] = system_tags
805
+ __props__.__dict__["target_compartment_id"] = target_compartment_id
806
+ __props__.__dict__["time_needed_before"] = time_needed_before
807
+ return OccmDemandSignalItem(resource_name, opts=opts, __props__=__props__)
808
+
809
+ @property
810
+ @pulumi.getter(name="availabilityDomain")
811
+ def availability_domain(self) -> pulumi.Output[builtins.str]:
812
+ """
813
+ (Updatable) The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource. This is an optional parameter.
814
+ """
815
+ return pulumi.get(self, "availability_domain")
816
+
817
+ @property
818
+ @pulumi.getter(name="compartmentId")
819
+ def compartment_id(self) -> pulumi.Output[builtins.str]:
820
+ """
821
+ The OCID of the tenancy from which the demand signal item was created.
822
+ """
823
+ return pulumi.get(self, "compartment_id")
824
+
825
+ @property
826
+ @pulumi.getter(name="definedTags")
827
+ def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
828
+ """
829
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
830
+ """
831
+ return pulumi.get(self, "defined_tags")
832
+
833
+ @property
834
+ @pulumi.getter(name="demandQuantity")
835
+ def demand_quantity(self) -> pulumi.Output[builtins.str]:
836
+ """
837
+ (Updatable) The quantity of the resource that you want to demand from OCI.
838
+ """
839
+ return pulumi.get(self, "demand_quantity")
840
+
841
+ @property
842
+ @pulumi.getter(name="demandSignalCatalogResourceId")
843
+ def demand_signal_catalog_resource_id(self) -> pulumi.Output[builtins.str]:
844
+ """
845
+ The OCID of the correponding demand signal catalog resource.
846
+ """
847
+ return pulumi.get(self, "demand_signal_catalog_resource_id")
848
+
849
+ @property
850
+ @pulumi.getter(name="demandSignalId")
851
+ def demand_signal_id(self) -> pulumi.Output[builtins.str]:
852
+ """
853
+ The OCID of the demand signal under which we need to create this item.
854
+ """
855
+ return pulumi.get(self, "demand_signal_id")
856
+
857
+ @property
858
+ @pulumi.getter(name="demandSignalNamespace")
859
+ def demand_signal_namespace(self) -> pulumi.Output[builtins.str]:
860
+ """
861
+ The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
862
+ """
863
+ return pulumi.get(self, "demand_signal_namespace")
864
+
865
+ @property
866
+ @pulumi.getter(name="freeformTags")
867
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
868
+ """
869
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
870
+ """
871
+ return pulumi.get(self, "freeform_tags")
872
+
873
+ @property
874
+ @pulumi.getter
875
+ def notes(self) -> pulumi.Output[builtins.str]:
876
+ """
877
+ (Updatable) This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
878
+
879
+ NOTE: The previous value gets overwritten with the new one for this once updated.
880
+ """
881
+ return pulumi.get(self, "notes")
882
+
883
+ @property
884
+ @pulumi.getter
885
+ def region(self) -> pulumi.Output[builtins.str]:
886
+ """
887
+ (Updatable) The name of region for which you want to request the Oracle Cloud Infrastructure resource.
888
+ """
889
+ return pulumi.get(self, "region")
890
+
891
+ @property
892
+ @pulumi.getter(name="requestType")
893
+ def request_type(self) -> pulumi.Output[builtins.str]:
894
+ """
895
+ The type of request (DEMAND or RETURN) that you want to make for this demand signal item.
896
+ """
897
+ return pulumi.get(self, "request_type")
898
+
899
+ @property
900
+ @pulumi.getter(name="resourceName")
901
+ def resource_name(self) -> pulumi.Output[builtins.str]:
902
+ """
903
+ The name of the Oracle Cloud Infrastructure resource that you want to request.
904
+ """
905
+ return pulumi.get(self, "resource_name")
906
+
907
+ @property
908
+ @pulumi.getter(name="resourceProperties")
909
+ def resource_properties(self) -> pulumi.Output[Mapping[str, builtins.str]]:
910
+ """
911
+ (Updatable) A map of various properties associated with the Oracle Cloud Infrastructure resource.
912
+ """
913
+ return pulumi.get(self, "resource_properties")
914
+
915
+ @property
916
+ @pulumi.getter
917
+ def state(self) -> pulumi.Output[builtins.str]:
918
+ """
919
+ The current lifecycle state of the resource.
920
+ """
921
+ return pulumi.get(self, "state")
922
+
923
+ @property
924
+ @pulumi.getter(name="systemTags")
925
+ def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
926
+ """
927
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
928
+ """
929
+ return pulumi.get(self, "system_tags")
930
+
931
+ @property
932
+ @pulumi.getter(name="targetCompartmentId")
933
+ def target_compartment_id(self) -> pulumi.Output[builtins.str]:
934
+ """
935
+ (Updatable) The OCID of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
936
+ """
937
+ return pulumi.get(self, "target_compartment_id")
938
+
939
+ @property
940
+ @pulumi.getter(name="timeNeededBefore")
941
+ def time_needed_before(self) -> pulumi.Output[builtins.str]:
942
+ """
943
+ (Updatable) the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
944
+
945
+
946
+ ** IMPORTANT **
947
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
948
+ """
949
+ return pulumi.get(self, "time_needed_before")
950
+