pulumi-oci 3.0.0__py3-none-any.whl → 3.1.0__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.0.0.dist-info → pulumi_oci-3.1.0.dist-info}/METADATA +1 -1
  280. {pulumi_oci-3.0.0.dist-info → pulumi_oci-3.1.0.dist-info}/RECORD +282 -141
  281. {pulumi_oci-3.0.0.dist-info → pulumi_oci-3.1.0.dist-info}/WHEEL +0 -0
  282. {pulumi_oci-3.0.0.dist-info → pulumi_oci-3.1.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,268 @@
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__ = [
19
+ 'GetInternalOccmDemandSignalResult',
20
+ 'AwaitableGetInternalOccmDemandSignalResult',
21
+ 'get_internal_occm_demand_signal',
22
+ 'get_internal_occm_demand_signal_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetInternalOccmDemandSignalResult:
27
+ """
28
+ A collection of values returned by getInternalOccmDemandSignal.
29
+ """
30
+ def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, occ_customer_group_id=None, occm_demand_signal_id=None, state=None, system_tags=None, time_created=None, time_updated=None):
31
+ if compartment_id and not isinstance(compartment_id, str):
32
+ raise TypeError("Expected argument 'compartment_id' to be a str")
33
+ pulumi.set(__self__, "compartment_id", compartment_id)
34
+ if defined_tags and not isinstance(defined_tags, dict):
35
+ raise TypeError("Expected argument 'defined_tags' to be a dict")
36
+ pulumi.set(__self__, "defined_tags", defined_tags)
37
+ if description and not isinstance(description, str):
38
+ raise TypeError("Expected argument 'description' to be a str")
39
+ pulumi.set(__self__, "description", description)
40
+ if display_name and not isinstance(display_name, str):
41
+ raise TypeError("Expected argument 'display_name' to be a str")
42
+ pulumi.set(__self__, "display_name", display_name)
43
+ if freeform_tags and not isinstance(freeform_tags, dict):
44
+ raise TypeError("Expected argument 'freeform_tags' to be a dict")
45
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
46
+ if id and not isinstance(id, str):
47
+ raise TypeError("Expected argument 'id' to be a str")
48
+ pulumi.set(__self__, "id", id)
49
+ if lifecycle_details and not isinstance(lifecycle_details, str):
50
+ raise TypeError("Expected argument 'lifecycle_details' to be a str")
51
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
52
+ if occ_customer_group_id and not isinstance(occ_customer_group_id, str):
53
+ raise TypeError("Expected argument 'occ_customer_group_id' to be a str")
54
+ pulumi.set(__self__, "occ_customer_group_id", occ_customer_group_id)
55
+ if occm_demand_signal_id and not isinstance(occm_demand_signal_id, str):
56
+ raise TypeError("Expected argument 'occm_demand_signal_id' to be a str")
57
+ pulumi.set(__self__, "occm_demand_signal_id", occm_demand_signal_id)
58
+ if state and not isinstance(state, str):
59
+ raise TypeError("Expected argument 'state' to be a str")
60
+ pulumi.set(__self__, "state", state)
61
+ if system_tags and not isinstance(system_tags, dict):
62
+ raise TypeError("Expected argument 'system_tags' to be a dict")
63
+ pulumi.set(__self__, "system_tags", system_tags)
64
+ if time_created and not isinstance(time_created, str):
65
+ raise TypeError("Expected argument 'time_created' to be a str")
66
+ pulumi.set(__self__, "time_created", time_created)
67
+ if time_updated and not isinstance(time_updated, str):
68
+ raise TypeError("Expected argument 'time_updated' to be a str")
69
+ pulumi.set(__self__, "time_updated", time_updated)
70
+
71
+ @property
72
+ @pulumi.getter(name="compartmentId")
73
+ def compartment_id(self) -> builtins.str:
74
+ """
75
+ The OCID of the tenancy from which the request to create the demand signal was made.
76
+ """
77
+ return pulumi.get(self, "compartment_id")
78
+
79
+ @property
80
+ @pulumi.getter(name="definedTags")
81
+ def defined_tags(self) -> Mapping[str, builtins.str]:
82
+ """
83
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
84
+ """
85
+ return pulumi.get(self, "defined_tags")
86
+
87
+ @property
88
+ @pulumi.getter
89
+ def description(self) -> builtins.str:
90
+ """
91
+ A short description about the demand signal.
92
+ """
93
+ return pulumi.get(self, "description")
94
+
95
+ @property
96
+ @pulumi.getter(name="displayName")
97
+ def display_name(self) -> builtins.str:
98
+ """
99
+ The display name of the demand signal.
100
+ """
101
+ return pulumi.get(self, "display_name")
102
+
103
+ @property
104
+ @pulumi.getter(name="freeformTags")
105
+ def freeform_tags(self) -> Mapping[str, builtins.str]:
106
+ """
107
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
108
+ """
109
+ return pulumi.get(self, "freeform_tags")
110
+
111
+ @property
112
+ @pulumi.getter
113
+ def id(self) -> builtins.str:
114
+ """
115
+ The OCID of the demand signal.
116
+ """
117
+ return pulumi.get(self, "id")
118
+
119
+ @property
120
+ @pulumi.getter(name="lifecycleDetails")
121
+ def lifecycle_details(self) -> builtins.str:
122
+ """
123
+ The different states associated with a demand signal.
124
+ """
125
+ return pulumi.get(self, "lifecycle_details")
126
+
127
+ @property
128
+ @pulumi.getter(name="occCustomerGroupId")
129
+ def occ_customer_group_id(self) -> builtins.str:
130
+ """
131
+ The OCID of the customer group in which the demand signal is created.
132
+ """
133
+ return pulumi.get(self, "occ_customer_group_id")
134
+
135
+ @property
136
+ @pulumi.getter(name="occmDemandSignalId")
137
+ def occm_demand_signal_id(self) -> builtins.str:
138
+ return pulumi.get(self, "occm_demand_signal_id")
139
+
140
+ @property
141
+ @pulumi.getter
142
+ def state(self) -> builtins.str:
143
+ """
144
+ The current lifecycle state of the demand signal.
145
+ """
146
+ return pulumi.get(self, "state")
147
+
148
+ @property
149
+ @pulumi.getter(name="systemTags")
150
+ def system_tags(self) -> Mapping[str, builtins.str]:
151
+ """
152
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
153
+ """
154
+ return pulumi.get(self, "system_tags")
155
+
156
+ @property
157
+ @pulumi.getter(name="timeCreated")
158
+ def time_created(self) -> builtins.str:
159
+ """
160
+ The time when the demand signal was created.
161
+ """
162
+ return pulumi.get(self, "time_created")
163
+
164
+ @property
165
+ @pulumi.getter(name="timeUpdated")
166
+ def time_updated(self) -> builtins.str:
167
+ """
168
+ The time when the demand signal was last updated.
169
+ """
170
+ return pulumi.get(self, "time_updated")
171
+
172
+
173
+ class AwaitableGetInternalOccmDemandSignalResult(GetInternalOccmDemandSignalResult):
174
+ # pylint: disable=using-constant-test
175
+ def __await__(self):
176
+ if False:
177
+ yield self
178
+ return GetInternalOccmDemandSignalResult(
179
+ compartment_id=self.compartment_id,
180
+ defined_tags=self.defined_tags,
181
+ description=self.description,
182
+ display_name=self.display_name,
183
+ freeform_tags=self.freeform_tags,
184
+ id=self.id,
185
+ lifecycle_details=self.lifecycle_details,
186
+ occ_customer_group_id=self.occ_customer_group_id,
187
+ occm_demand_signal_id=self.occm_demand_signal_id,
188
+ state=self.state,
189
+ system_tags=self.system_tags,
190
+ time_created=self.time_created,
191
+ time_updated=self.time_updated)
192
+
193
+
194
+ def get_internal_occm_demand_signal(occm_demand_signal_id: Optional[builtins.str] = None,
195
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetInternalOccmDemandSignalResult:
196
+ """
197
+ This data source provides details about a specific Internal Occm Demand Signal resource in Oracle Cloud Infrastructure Capacity Management service.
198
+
199
+ This is an internal GET API which gets the detailed information about a specific demand signal.
200
+
201
+ ## Example Usage
202
+
203
+ ```python
204
+ import pulumi
205
+ import pulumi_oci as oci
206
+
207
+ test_internal_occm_demand_signal = oci.CapacityManagement.get_internal_occm_demand_signal(occm_demand_signal_id=test_occm_demand_signal["id"])
208
+ ```
209
+
210
+
211
+ :param builtins.str occm_demand_signal_id: The OCID of the demand signal.
212
+ """
213
+ __args__ = dict()
214
+ __args__['occmDemandSignalId'] = occm_demand_signal_id
215
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
216
+ __ret__ = pulumi.runtime.invoke('oci:CapacityManagement/getInternalOccmDemandSignal:getInternalOccmDemandSignal', __args__, opts=opts, typ=GetInternalOccmDemandSignalResult).value
217
+
218
+ return AwaitableGetInternalOccmDemandSignalResult(
219
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
220
+ defined_tags=pulumi.get(__ret__, 'defined_tags'),
221
+ description=pulumi.get(__ret__, 'description'),
222
+ display_name=pulumi.get(__ret__, 'display_name'),
223
+ freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
224
+ id=pulumi.get(__ret__, 'id'),
225
+ lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
226
+ occ_customer_group_id=pulumi.get(__ret__, 'occ_customer_group_id'),
227
+ occm_demand_signal_id=pulumi.get(__ret__, 'occm_demand_signal_id'),
228
+ state=pulumi.get(__ret__, 'state'),
229
+ system_tags=pulumi.get(__ret__, 'system_tags'),
230
+ time_created=pulumi.get(__ret__, 'time_created'),
231
+ time_updated=pulumi.get(__ret__, 'time_updated'))
232
+ def get_internal_occm_demand_signal_output(occm_demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
233
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetInternalOccmDemandSignalResult]:
234
+ """
235
+ This data source provides details about a specific Internal Occm Demand Signal resource in Oracle Cloud Infrastructure Capacity Management service.
236
+
237
+ This is an internal GET API which gets the detailed information about a specific demand signal.
238
+
239
+ ## Example Usage
240
+
241
+ ```python
242
+ import pulumi
243
+ import pulumi_oci as oci
244
+
245
+ test_internal_occm_demand_signal = oci.CapacityManagement.get_internal_occm_demand_signal(occm_demand_signal_id=test_occm_demand_signal["id"])
246
+ ```
247
+
248
+
249
+ :param builtins.str occm_demand_signal_id: The OCID of the demand signal.
250
+ """
251
+ __args__ = dict()
252
+ __args__['occmDemandSignalId'] = occm_demand_signal_id
253
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
254
+ __ret__ = pulumi.runtime.invoke_output('oci:CapacityManagement/getInternalOccmDemandSignal:getInternalOccmDemandSignal', __args__, opts=opts, typ=GetInternalOccmDemandSignalResult)
255
+ return __ret__.apply(lambda __response__: GetInternalOccmDemandSignalResult(
256
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
257
+ defined_tags=pulumi.get(__response__, 'defined_tags'),
258
+ description=pulumi.get(__response__, 'description'),
259
+ display_name=pulumi.get(__response__, 'display_name'),
260
+ freeform_tags=pulumi.get(__response__, 'freeform_tags'),
261
+ id=pulumi.get(__response__, 'id'),
262
+ lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
263
+ occ_customer_group_id=pulumi.get(__response__, 'occ_customer_group_id'),
264
+ occm_demand_signal_id=pulumi.get(__response__, 'occm_demand_signal_id'),
265
+ state=pulumi.get(__response__, 'state'),
266
+ system_tags=pulumi.get(__response__, 'system_tags'),
267
+ time_created=pulumi.get(__response__, 'time_created'),
268
+ time_updated=pulumi.get(__response__, 'time_updated')))
@@ -0,0 +1,254 @@
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__ = [
19
+ 'GetInternalOccmDemandSignalCatalogResult',
20
+ 'AwaitableGetInternalOccmDemandSignalCatalogResult',
21
+ 'get_internal_occm_demand_signal_catalog',
22
+ 'get_internal_occm_demand_signal_catalog_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetInternalOccmDemandSignalCatalogResult:
27
+ """
28
+ A collection of values returned by getInternalOccmDemandSignalCatalog.
29
+ """
30
+ def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, occ_customer_group_id=None, occm_demand_signal_catalog_id=None, state=None, system_tags=None, time_created=None, time_updated=None):
31
+ if compartment_id and not isinstance(compartment_id, str):
32
+ raise TypeError("Expected argument 'compartment_id' to be a str")
33
+ pulumi.set(__self__, "compartment_id", compartment_id)
34
+ if defined_tags and not isinstance(defined_tags, dict):
35
+ raise TypeError("Expected argument 'defined_tags' to be a dict")
36
+ pulumi.set(__self__, "defined_tags", defined_tags)
37
+ if description and not isinstance(description, str):
38
+ raise TypeError("Expected argument 'description' to be a str")
39
+ pulumi.set(__self__, "description", description)
40
+ if display_name and not isinstance(display_name, str):
41
+ raise TypeError("Expected argument 'display_name' to be a str")
42
+ pulumi.set(__self__, "display_name", display_name)
43
+ if freeform_tags and not isinstance(freeform_tags, dict):
44
+ raise TypeError("Expected argument 'freeform_tags' to be a dict")
45
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
46
+ if id and not isinstance(id, str):
47
+ raise TypeError("Expected argument 'id' to be a str")
48
+ pulumi.set(__self__, "id", id)
49
+ if occ_customer_group_id and not isinstance(occ_customer_group_id, str):
50
+ raise TypeError("Expected argument 'occ_customer_group_id' to be a str")
51
+ pulumi.set(__self__, "occ_customer_group_id", occ_customer_group_id)
52
+ if occm_demand_signal_catalog_id and not isinstance(occm_demand_signal_catalog_id, str):
53
+ raise TypeError("Expected argument 'occm_demand_signal_catalog_id' to be a str")
54
+ pulumi.set(__self__, "occm_demand_signal_catalog_id", occm_demand_signal_catalog_id)
55
+ if state and not isinstance(state, str):
56
+ raise TypeError("Expected argument 'state' to be a str")
57
+ pulumi.set(__self__, "state", state)
58
+ if system_tags and not isinstance(system_tags, dict):
59
+ raise TypeError("Expected argument 'system_tags' to be a dict")
60
+ pulumi.set(__self__, "system_tags", system_tags)
61
+ if time_created and not isinstance(time_created, str):
62
+ raise TypeError("Expected argument 'time_created' to be a str")
63
+ pulumi.set(__self__, "time_created", time_created)
64
+ if time_updated and not isinstance(time_updated, str):
65
+ raise TypeError("Expected argument 'time_updated' to be a str")
66
+ pulumi.set(__self__, "time_updated", time_updated)
67
+
68
+ @property
69
+ @pulumi.getter(name="compartmentId")
70
+ def compartment_id(self) -> builtins.str:
71
+ """
72
+ compartment id from where demand signal catalog is created.
73
+ """
74
+ return pulumi.get(self, "compartment_id")
75
+
76
+ @property
77
+ @pulumi.getter(name="definedTags")
78
+ def defined_tags(self) -> Mapping[str, builtins.str]:
79
+ """
80
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
81
+ """
82
+ return pulumi.get(self, "defined_tags")
83
+
84
+ @property
85
+ @pulumi.getter
86
+ def description(self) -> builtins.str:
87
+ """
88
+ description of demand signal catalog.
89
+ """
90
+ return pulumi.get(self, "description")
91
+
92
+ @property
93
+ @pulumi.getter(name="displayName")
94
+ def display_name(self) -> builtins.str:
95
+ """
96
+ displayName of demand signal catalog.
97
+ """
98
+ return pulumi.get(self, "display_name")
99
+
100
+ @property
101
+ @pulumi.getter(name="freeformTags")
102
+ def freeform_tags(self) -> Mapping[str, builtins.str]:
103
+ """
104
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
105
+ """
106
+ return pulumi.get(self, "freeform_tags")
107
+
108
+ @property
109
+ @pulumi.getter
110
+ def id(self) -> builtins.str:
111
+ """
112
+ The provider-assigned unique ID for this managed resource.
113
+ """
114
+ return pulumi.get(self, "id")
115
+
116
+ @property
117
+ @pulumi.getter(name="occCustomerGroupId")
118
+ def occ_customer_group_id(self) -> builtins.str:
119
+ """
120
+ The customer group OCID to which the availability catalog belongs.
121
+ """
122
+ return pulumi.get(self, "occ_customer_group_id")
123
+
124
+ @property
125
+ @pulumi.getter(name="occmDemandSignalCatalogId")
126
+ def occm_demand_signal_catalog_id(self) -> builtins.str:
127
+ return pulumi.get(self, "occm_demand_signal_catalog_id")
128
+
129
+ @property
130
+ @pulumi.getter
131
+ def state(self) -> builtins.str:
132
+ """
133
+ The current lifecycle state of the resource.
134
+ """
135
+ return pulumi.get(self, "state")
136
+
137
+ @property
138
+ @pulumi.getter(name="systemTags")
139
+ def system_tags(self) -> Mapping[str, builtins.str]:
140
+ """
141
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
142
+ """
143
+ return pulumi.get(self, "system_tags")
144
+
145
+ @property
146
+ @pulumi.getter(name="timeCreated")
147
+ def time_created(self) -> builtins.str:
148
+ """
149
+ The time when the demand signal catalog was created.
150
+ """
151
+ return pulumi.get(self, "time_created")
152
+
153
+ @property
154
+ @pulumi.getter(name="timeUpdated")
155
+ def time_updated(self) -> builtins.str:
156
+ """
157
+ The time when the demand signal catalog was last updated.
158
+ """
159
+ return pulumi.get(self, "time_updated")
160
+
161
+
162
+ class AwaitableGetInternalOccmDemandSignalCatalogResult(GetInternalOccmDemandSignalCatalogResult):
163
+ # pylint: disable=using-constant-test
164
+ def __await__(self):
165
+ if False:
166
+ yield self
167
+ return GetInternalOccmDemandSignalCatalogResult(
168
+ compartment_id=self.compartment_id,
169
+ defined_tags=self.defined_tags,
170
+ description=self.description,
171
+ display_name=self.display_name,
172
+ freeform_tags=self.freeform_tags,
173
+ id=self.id,
174
+ occ_customer_group_id=self.occ_customer_group_id,
175
+ occm_demand_signal_catalog_id=self.occm_demand_signal_catalog_id,
176
+ state=self.state,
177
+ system_tags=self.system_tags,
178
+ time_created=self.time_created,
179
+ time_updated=self.time_updated)
180
+
181
+
182
+ def get_internal_occm_demand_signal_catalog(occm_demand_signal_catalog_id: Optional[builtins.str] = None,
183
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetInternalOccmDemandSignalCatalogResult:
184
+ """
185
+ This data source provides details about a specific Internal Occm Demand Signal Catalog resource in Oracle Cloud Infrastructure Capacity Management service.
186
+
187
+ This API helps in getting the details about a specific occm demand signal catalog.
188
+
189
+ ## Example Usage
190
+
191
+ ```python
192
+ import pulumi
193
+ import pulumi_oci as oci
194
+
195
+ test_internal_occm_demand_signal_catalog = oci.CapacityManagement.get_internal_occm_demand_signal_catalog(occm_demand_signal_catalog_id=test_catalog["id"])
196
+ ```
197
+
198
+
199
+ :param builtins.str occm_demand_signal_catalog_id: The OCID of the demand signal catalog.
200
+ """
201
+ __args__ = dict()
202
+ __args__['occmDemandSignalCatalogId'] = occm_demand_signal_catalog_id
203
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
204
+ __ret__ = pulumi.runtime.invoke('oci:CapacityManagement/getInternalOccmDemandSignalCatalog:getInternalOccmDemandSignalCatalog', __args__, opts=opts, typ=GetInternalOccmDemandSignalCatalogResult).value
205
+
206
+ return AwaitableGetInternalOccmDemandSignalCatalogResult(
207
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
208
+ defined_tags=pulumi.get(__ret__, 'defined_tags'),
209
+ description=pulumi.get(__ret__, 'description'),
210
+ display_name=pulumi.get(__ret__, 'display_name'),
211
+ freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
212
+ id=pulumi.get(__ret__, 'id'),
213
+ occ_customer_group_id=pulumi.get(__ret__, 'occ_customer_group_id'),
214
+ occm_demand_signal_catalog_id=pulumi.get(__ret__, 'occm_demand_signal_catalog_id'),
215
+ state=pulumi.get(__ret__, 'state'),
216
+ system_tags=pulumi.get(__ret__, 'system_tags'),
217
+ time_created=pulumi.get(__ret__, 'time_created'),
218
+ time_updated=pulumi.get(__ret__, 'time_updated'))
219
+ def get_internal_occm_demand_signal_catalog_output(occm_demand_signal_catalog_id: Optional[pulumi.Input[builtins.str]] = None,
220
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetInternalOccmDemandSignalCatalogResult]:
221
+ """
222
+ This data source provides details about a specific Internal Occm Demand Signal Catalog resource in Oracle Cloud Infrastructure Capacity Management service.
223
+
224
+ This API helps in getting the details about a specific occm demand signal catalog.
225
+
226
+ ## Example Usage
227
+
228
+ ```python
229
+ import pulumi
230
+ import pulumi_oci as oci
231
+
232
+ test_internal_occm_demand_signal_catalog = oci.CapacityManagement.get_internal_occm_demand_signal_catalog(occm_demand_signal_catalog_id=test_catalog["id"])
233
+ ```
234
+
235
+
236
+ :param builtins.str occm_demand_signal_catalog_id: The OCID of the demand signal catalog.
237
+ """
238
+ __args__ = dict()
239
+ __args__['occmDemandSignalCatalogId'] = occm_demand_signal_catalog_id
240
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
241
+ __ret__ = pulumi.runtime.invoke_output('oci:CapacityManagement/getInternalOccmDemandSignalCatalog:getInternalOccmDemandSignalCatalog', __args__, opts=opts, typ=GetInternalOccmDemandSignalCatalogResult)
242
+ return __ret__.apply(lambda __response__: GetInternalOccmDemandSignalCatalogResult(
243
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
244
+ defined_tags=pulumi.get(__response__, 'defined_tags'),
245
+ description=pulumi.get(__response__, 'description'),
246
+ display_name=pulumi.get(__response__, 'display_name'),
247
+ freeform_tags=pulumi.get(__response__, 'freeform_tags'),
248
+ id=pulumi.get(__response__, 'id'),
249
+ occ_customer_group_id=pulumi.get(__response__, 'occ_customer_group_id'),
250
+ occm_demand_signal_catalog_id=pulumi.get(__response__, 'occm_demand_signal_catalog_id'),
251
+ state=pulumi.get(__response__, 'state'),
252
+ system_tags=pulumi.get(__response__, 'system_tags'),
253
+ time_created=pulumi.get(__response__, 'time_created'),
254
+ time_updated=pulumi.get(__response__, 'time_updated')))