pulumi-oci 3.1.0a1750230541__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.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
  280. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
  281. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
  282. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,263 @@
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__ = ['RedisClusterDetachOciCacheUserArgs', 'RedisClusterDetachOciCacheUser']
19
+
20
+ @pulumi.input_type
21
+ class RedisClusterDetachOciCacheUserArgs:
22
+ def __init__(__self__, *,
23
+ oci_cache_users: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
24
+ redis_cluster_id: pulumi.Input[builtins.str]):
25
+ """
26
+ The set of arguments for constructing a RedisClusterDetachOciCacheUser resource.
27
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] oci_cache_users: List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
28
+ :param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
29
+
30
+
31
+ ** IMPORTANT **
32
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
33
+ """
34
+ pulumi.set(__self__, "oci_cache_users", oci_cache_users)
35
+ pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
36
+
37
+ @property
38
+ @pulumi.getter(name="ociCacheUsers")
39
+ def oci_cache_users(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
40
+ """
41
+ List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
42
+ """
43
+ return pulumi.get(self, "oci_cache_users")
44
+
45
+ @oci_cache_users.setter
46
+ def oci_cache_users(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
47
+ pulumi.set(self, "oci_cache_users", value)
48
+
49
+ @property
50
+ @pulumi.getter(name="redisClusterId")
51
+ def redis_cluster_id(self) -> pulumi.Input[builtins.str]:
52
+ """
53
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
54
+
55
+
56
+ ** IMPORTANT **
57
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
58
+ """
59
+ return pulumi.get(self, "redis_cluster_id")
60
+
61
+ @redis_cluster_id.setter
62
+ def redis_cluster_id(self, value: pulumi.Input[builtins.str]):
63
+ pulumi.set(self, "redis_cluster_id", value)
64
+
65
+
66
+ @pulumi.input_type
67
+ class _RedisClusterDetachOciCacheUserState:
68
+ def __init__(__self__, *,
69
+ oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
70
+ redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None):
71
+ """
72
+ Input properties used for looking up and filtering RedisClusterDetachOciCacheUser resources.
73
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] oci_cache_users: List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
74
+ :param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
75
+
76
+
77
+ ** IMPORTANT **
78
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
79
+ """
80
+ if oci_cache_users is not None:
81
+ pulumi.set(__self__, "oci_cache_users", oci_cache_users)
82
+ if redis_cluster_id is not None:
83
+ pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
84
+
85
+ @property
86
+ @pulumi.getter(name="ociCacheUsers")
87
+ def oci_cache_users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
88
+ """
89
+ List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
90
+ """
91
+ return pulumi.get(self, "oci_cache_users")
92
+
93
+ @oci_cache_users.setter
94
+ def oci_cache_users(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
95
+ pulumi.set(self, "oci_cache_users", value)
96
+
97
+ @property
98
+ @pulumi.getter(name="redisClusterId")
99
+ def redis_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
100
+ """
101
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
102
+
103
+
104
+ ** IMPORTANT **
105
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
106
+ """
107
+ return pulumi.get(self, "redis_cluster_id")
108
+
109
+ @redis_cluster_id.setter
110
+ def redis_cluster_id(self, value: Optional[pulumi.Input[builtins.str]]):
111
+ pulumi.set(self, "redis_cluster_id", value)
112
+
113
+
114
+ @pulumi.type_token("oci:Redis/redisClusterDetachOciCacheUser:RedisClusterDetachOciCacheUser")
115
+ class RedisClusterDetachOciCacheUser(pulumi.CustomResource):
116
+ @overload
117
+ def __init__(__self__,
118
+ resource_name: str,
119
+ opts: Optional[pulumi.ResourceOptions] = None,
120
+ oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
121
+ redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
122
+ __props__=None):
123
+ """
124
+ This resource provides the Redis Cluster Detach Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
125
+
126
+ Detach existing Oracle Cloud Infrastructure cache users to a redis cluster.
127
+
128
+ ## Example Usage
129
+
130
+ ```python
131
+ import pulumi
132
+ import pulumi_oci as oci
133
+
134
+ test_redis_cluster_detach_oci_cache_user = oci.redis.RedisClusterDetachOciCacheUser("test_redis_cluster_detach_oci_cache_user",
135
+ oci_cache_users=redis_cluster_detach_oci_cache_user_oci_cache_users,
136
+ redis_cluster_id=test_redis_cluster["id"])
137
+ ```
138
+
139
+ ## Import
140
+
141
+ Import is not supported for this resource.
142
+
143
+ :param str resource_name: The name of the resource.
144
+ :param pulumi.ResourceOptions opts: Options for the resource.
145
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] oci_cache_users: List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
146
+ :param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
147
+
148
+
149
+ ** IMPORTANT **
150
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
151
+ """
152
+ ...
153
+ @overload
154
+ def __init__(__self__,
155
+ resource_name: str,
156
+ args: RedisClusterDetachOciCacheUserArgs,
157
+ opts: Optional[pulumi.ResourceOptions] = None):
158
+ """
159
+ This resource provides the Redis Cluster Detach Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
160
+
161
+ Detach existing Oracle Cloud Infrastructure cache users to a redis cluster.
162
+
163
+ ## Example Usage
164
+
165
+ ```python
166
+ import pulumi
167
+ import pulumi_oci as oci
168
+
169
+ test_redis_cluster_detach_oci_cache_user = oci.redis.RedisClusterDetachOciCacheUser("test_redis_cluster_detach_oci_cache_user",
170
+ oci_cache_users=redis_cluster_detach_oci_cache_user_oci_cache_users,
171
+ redis_cluster_id=test_redis_cluster["id"])
172
+ ```
173
+
174
+ ## Import
175
+
176
+ Import is not supported for this resource.
177
+
178
+ :param str resource_name: The name of the resource.
179
+ :param RedisClusterDetachOciCacheUserArgs args: The arguments to use to populate this resource's properties.
180
+ :param pulumi.ResourceOptions opts: Options for the resource.
181
+ """
182
+ ...
183
+ def __init__(__self__, resource_name: str, *args, **kwargs):
184
+ resource_args, opts = _utilities.get_resource_args_opts(RedisClusterDetachOciCacheUserArgs, pulumi.ResourceOptions, *args, **kwargs)
185
+ if resource_args is not None:
186
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
187
+ else:
188
+ __self__._internal_init(resource_name, *args, **kwargs)
189
+
190
+ def _internal_init(__self__,
191
+ resource_name: str,
192
+ opts: Optional[pulumi.ResourceOptions] = None,
193
+ oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
194
+ redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
195
+ __props__=None):
196
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
197
+ if not isinstance(opts, pulumi.ResourceOptions):
198
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
199
+ if opts.id is None:
200
+ if __props__ is not None:
201
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
202
+ __props__ = RedisClusterDetachOciCacheUserArgs.__new__(RedisClusterDetachOciCacheUserArgs)
203
+
204
+ if oci_cache_users is None and not opts.urn:
205
+ raise TypeError("Missing required property 'oci_cache_users'")
206
+ __props__.__dict__["oci_cache_users"] = oci_cache_users
207
+ if redis_cluster_id is None and not opts.urn:
208
+ raise TypeError("Missing required property 'redis_cluster_id'")
209
+ __props__.__dict__["redis_cluster_id"] = redis_cluster_id
210
+ super(RedisClusterDetachOciCacheUser, __self__).__init__(
211
+ 'oci:Redis/redisClusterDetachOciCacheUser:RedisClusterDetachOciCacheUser',
212
+ resource_name,
213
+ __props__,
214
+ opts)
215
+
216
+ @staticmethod
217
+ def get(resource_name: str,
218
+ id: pulumi.Input[str],
219
+ opts: Optional[pulumi.ResourceOptions] = None,
220
+ oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
221
+ redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None) -> 'RedisClusterDetachOciCacheUser':
222
+ """
223
+ Get an existing RedisClusterDetachOciCacheUser resource's state with the given name, id, and optional extra
224
+ properties used to qualify the lookup.
225
+
226
+ :param str resource_name: The unique name of the resulting resource.
227
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
228
+ :param pulumi.ResourceOptions opts: Options for the resource.
229
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] oci_cache_users: List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
230
+ :param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
231
+
232
+
233
+ ** IMPORTANT **
234
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
235
+ """
236
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
237
+
238
+ __props__ = _RedisClusterDetachOciCacheUserState.__new__(_RedisClusterDetachOciCacheUserState)
239
+
240
+ __props__.__dict__["oci_cache_users"] = oci_cache_users
241
+ __props__.__dict__["redis_cluster_id"] = redis_cluster_id
242
+ return RedisClusterDetachOciCacheUser(resource_name, opts=opts, __props__=__props__)
243
+
244
+ @property
245
+ @pulumi.getter(name="ociCacheUsers")
246
+ def oci_cache_users(self) -> pulumi.Output[Sequence[builtins.str]]:
247
+ """
248
+ List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
249
+ """
250
+ return pulumi.get(self, "oci_cache_users")
251
+
252
+ @property
253
+ @pulumi.getter(name="redisClusterId")
254
+ def redis_cluster_id(self) -> pulumi.Output[builtins.str]:
255
+ """
256
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
257
+
258
+
259
+ ** IMPORTANT **
260
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
261
+ """
262
+ return pulumi.get(self, "redis_cluster_id")
263
+
@@ -0,0 +1,333 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from .. import _utilities
17
+ from . import outputs
18
+ from ._inputs import *
19
+
20
+ __all__ = ['RedisClusterGetOciCacheUserArgs', 'RedisClusterGetOciCacheUser']
21
+
22
+ @pulumi.input_type
23
+ class RedisClusterGetOciCacheUserArgs:
24
+ def __init__(__self__, *,
25
+ redis_cluster_id: pulumi.Input[builtins.str],
26
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
27
+ display_name: Optional[pulumi.Input[builtins.str]] = None):
28
+ """
29
+ The set of arguments for constructing a RedisClusterGetOciCacheUser resource.
30
+ :param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
31
+
32
+
33
+ ** IMPORTANT **
34
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
35
+ :param pulumi.Input[builtins.str] compartment_id: The ID of the compartment in which to list resources.
36
+ :param pulumi.Input[builtins.str] display_name: A filter to return only resources that match the entire display name given.
37
+ """
38
+ pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
39
+ if compartment_id is not None:
40
+ pulumi.set(__self__, "compartment_id", compartment_id)
41
+ if display_name is not None:
42
+ pulumi.set(__self__, "display_name", display_name)
43
+
44
+ @property
45
+ @pulumi.getter(name="redisClusterId")
46
+ def redis_cluster_id(self) -> pulumi.Input[builtins.str]:
47
+ """
48
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
49
+
50
+
51
+ ** IMPORTANT **
52
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
53
+ """
54
+ return pulumi.get(self, "redis_cluster_id")
55
+
56
+ @redis_cluster_id.setter
57
+ def redis_cluster_id(self, value: pulumi.Input[builtins.str]):
58
+ pulumi.set(self, "redis_cluster_id", value)
59
+
60
+ @property
61
+ @pulumi.getter(name="compartmentId")
62
+ def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
63
+ """
64
+ The ID of the compartment in which to list resources.
65
+ """
66
+ return pulumi.get(self, "compartment_id")
67
+
68
+ @compartment_id.setter
69
+ def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
70
+ pulumi.set(self, "compartment_id", value)
71
+
72
+ @property
73
+ @pulumi.getter(name="displayName")
74
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
75
+ """
76
+ A filter to return only resources that match the entire display name given.
77
+ """
78
+ return pulumi.get(self, "display_name")
79
+
80
+ @display_name.setter
81
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
82
+ pulumi.set(self, "display_name", value)
83
+
84
+
85
+ @pulumi.input_type
86
+ class _RedisClusterGetOciCacheUserState:
87
+ def __init__(__self__, *,
88
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
89
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
90
+ oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input['RedisClusterGetOciCacheUserOciCacheUserArgs']]]] = None,
91
+ redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None):
92
+ """
93
+ Input properties used for looking up and filtering RedisClusterGetOciCacheUser resources.
94
+ :param pulumi.Input[builtins.str] compartment_id: The ID of the compartment in which to list resources.
95
+ :param pulumi.Input[builtins.str] display_name: A filter to return only resources that match the entire display name given.
96
+ :param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
97
+
98
+
99
+ ** IMPORTANT **
100
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
101
+ """
102
+ if compartment_id is not None:
103
+ pulumi.set(__self__, "compartment_id", compartment_id)
104
+ if display_name is not None:
105
+ pulumi.set(__self__, "display_name", display_name)
106
+ if oci_cache_users is not None:
107
+ pulumi.set(__self__, "oci_cache_users", oci_cache_users)
108
+ if redis_cluster_id is not None:
109
+ pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
110
+
111
+ @property
112
+ @pulumi.getter(name="compartmentId")
113
+ def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
114
+ """
115
+ The ID of the compartment in which to list resources.
116
+ """
117
+ return pulumi.get(self, "compartment_id")
118
+
119
+ @compartment_id.setter
120
+ def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
121
+ pulumi.set(self, "compartment_id", value)
122
+
123
+ @property
124
+ @pulumi.getter(name="displayName")
125
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
126
+ """
127
+ A filter to return only resources that match the entire display name given.
128
+ """
129
+ return pulumi.get(self, "display_name")
130
+
131
+ @display_name.setter
132
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
133
+ pulumi.set(self, "display_name", value)
134
+
135
+ @property
136
+ @pulumi.getter(name="ociCacheUsers")
137
+ def oci_cache_users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RedisClusterGetOciCacheUserOciCacheUserArgs']]]]:
138
+ return pulumi.get(self, "oci_cache_users")
139
+
140
+ @oci_cache_users.setter
141
+ def oci_cache_users(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RedisClusterGetOciCacheUserOciCacheUserArgs']]]]):
142
+ pulumi.set(self, "oci_cache_users", value)
143
+
144
+ @property
145
+ @pulumi.getter(name="redisClusterId")
146
+ def redis_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
147
+ """
148
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
149
+
150
+
151
+ ** IMPORTANT **
152
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
153
+ """
154
+ return pulumi.get(self, "redis_cluster_id")
155
+
156
+ @redis_cluster_id.setter
157
+ def redis_cluster_id(self, value: Optional[pulumi.Input[builtins.str]]):
158
+ pulumi.set(self, "redis_cluster_id", value)
159
+
160
+
161
+ @pulumi.type_token("oci:Redis/redisClusterGetOciCacheUser:RedisClusterGetOciCacheUser")
162
+ class RedisClusterGetOciCacheUser(pulumi.CustomResource):
163
+ @overload
164
+ def __init__(__self__,
165
+ resource_name: str,
166
+ opts: Optional[pulumi.ResourceOptions] = None,
167
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
168
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
169
+ redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
170
+ __props__=None):
171
+ """
172
+ This resource provides the Redis Cluster Get Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
173
+
174
+ Gets a list of associated Oracle Cloud Infrastructure cache users for a redis cluster.
175
+
176
+ ## Example Usage
177
+
178
+ ```python
179
+ import pulumi
180
+ import pulumi_oci as oci
181
+
182
+ test_redis_cluster_get_oci_cache_user = oci.redis.RedisClusterGetOciCacheUser("test_redis_cluster_get_oci_cache_user",
183
+ redis_cluster_id=test_redis_cluster["id"],
184
+ compartment_id=compartment_id,
185
+ display_name=redis_cluster_get_oci_cache_user_display_name)
186
+ ```
187
+
188
+ ## Import
189
+
190
+ Import is not supported for this resource.
191
+
192
+ :param str resource_name: The name of the resource.
193
+ :param pulumi.ResourceOptions opts: Options for the resource.
194
+ :param pulumi.Input[builtins.str] compartment_id: The ID of the compartment in which to list resources.
195
+ :param pulumi.Input[builtins.str] display_name: A filter to return only resources that match the entire display name given.
196
+ :param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
197
+
198
+
199
+ ** IMPORTANT **
200
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
201
+ """
202
+ ...
203
+ @overload
204
+ def __init__(__self__,
205
+ resource_name: str,
206
+ args: RedisClusterGetOciCacheUserArgs,
207
+ opts: Optional[pulumi.ResourceOptions] = None):
208
+ """
209
+ This resource provides the Redis Cluster Get Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
210
+
211
+ Gets a list of associated Oracle Cloud Infrastructure cache users for a redis cluster.
212
+
213
+ ## Example Usage
214
+
215
+ ```python
216
+ import pulumi
217
+ import pulumi_oci as oci
218
+
219
+ test_redis_cluster_get_oci_cache_user = oci.redis.RedisClusterGetOciCacheUser("test_redis_cluster_get_oci_cache_user",
220
+ redis_cluster_id=test_redis_cluster["id"],
221
+ compartment_id=compartment_id,
222
+ display_name=redis_cluster_get_oci_cache_user_display_name)
223
+ ```
224
+
225
+ ## Import
226
+
227
+ Import is not supported for this resource.
228
+
229
+ :param str resource_name: The name of the resource.
230
+ :param RedisClusterGetOciCacheUserArgs args: The arguments to use to populate this resource's properties.
231
+ :param pulumi.ResourceOptions opts: Options for the resource.
232
+ """
233
+ ...
234
+ def __init__(__self__, resource_name: str, *args, **kwargs):
235
+ resource_args, opts = _utilities.get_resource_args_opts(RedisClusterGetOciCacheUserArgs, pulumi.ResourceOptions, *args, **kwargs)
236
+ if resource_args is not None:
237
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
238
+ else:
239
+ __self__._internal_init(resource_name, *args, **kwargs)
240
+
241
+ def _internal_init(__self__,
242
+ resource_name: str,
243
+ opts: Optional[pulumi.ResourceOptions] = None,
244
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
245
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
246
+ redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
247
+ __props__=None):
248
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
249
+ if not isinstance(opts, pulumi.ResourceOptions):
250
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
251
+ if opts.id is None:
252
+ if __props__ is not None:
253
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
254
+ __props__ = RedisClusterGetOciCacheUserArgs.__new__(RedisClusterGetOciCacheUserArgs)
255
+
256
+ __props__.__dict__["compartment_id"] = compartment_id
257
+ __props__.__dict__["display_name"] = display_name
258
+ if redis_cluster_id is None and not opts.urn:
259
+ raise TypeError("Missing required property 'redis_cluster_id'")
260
+ __props__.__dict__["redis_cluster_id"] = redis_cluster_id
261
+ __props__.__dict__["oci_cache_users"] = None
262
+ super(RedisClusterGetOciCacheUser, __self__).__init__(
263
+ 'oci:Redis/redisClusterGetOciCacheUser:RedisClusterGetOciCacheUser',
264
+ resource_name,
265
+ __props__,
266
+ opts)
267
+
268
+ @staticmethod
269
+ def get(resource_name: str,
270
+ id: pulumi.Input[str],
271
+ opts: Optional[pulumi.ResourceOptions] = None,
272
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
273
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
274
+ oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RedisClusterGetOciCacheUserOciCacheUserArgs', 'RedisClusterGetOciCacheUserOciCacheUserArgsDict']]]]] = None,
275
+ redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None) -> 'RedisClusterGetOciCacheUser':
276
+ """
277
+ Get an existing RedisClusterGetOciCacheUser resource's state with the given name, id, and optional extra
278
+ properties used to qualify the lookup.
279
+
280
+ :param str resource_name: The unique name of the resulting resource.
281
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
282
+ :param pulumi.ResourceOptions opts: Options for the resource.
283
+ :param pulumi.Input[builtins.str] compartment_id: The ID of the compartment in which to list resources.
284
+ :param pulumi.Input[builtins.str] display_name: A filter to return only resources that match the entire display name given.
285
+ :param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
286
+
287
+
288
+ ** IMPORTANT **
289
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
290
+ """
291
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
292
+
293
+ __props__ = _RedisClusterGetOciCacheUserState.__new__(_RedisClusterGetOciCacheUserState)
294
+
295
+ __props__.__dict__["compartment_id"] = compartment_id
296
+ __props__.__dict__["display_name"] = display_name
297
+ __props__.__dict__["oci_cache_users"] = oci_cache_users
298
+ __props__.__dict__["redis_cluster_id"] = redis_cluster_id
299
+ return RedisClusterGetOciCacheUser(resource_name, opts=opts, __props__=__props__)
300
+
301
+ @property
302
+ @pulumi.getter(name="compartmentId")
303
+ def compartment_id(self) -> pulumi.Output[builtins.str]:
304
+ """
305
+ The ID of the compartment in which to list resources.
306
+ """
307
+ return pulumi.get(self, "compartment_id")
308
+
309
+ @property
310
+ @pulumi.getter(name="displayName")
311
+ def display_name(self) -> pulumi.Output[builtins.str]:
312
+ """
313
+ A filter to return only resources that match the entire display name given.
314
+ """
315
+ return pulumi.get(self, "display_name")
316
+
317
+ @property
318
+ @pulumi.getter(name="ociCacheUsers")
319
+ def oci_cache_users(self) -> pulumi.Output[Sequence['outputs.RedisClusterGetOciCacheUserOciCacheUser']]:
320
+ return pulumi.get(self, "oci_cache_users")
321
+
322
+ @property
323
+ @pulumi.getter(name="redisClusterId")
324
+ def redis_cluster_id(self) -> pulumi.Output[builtins.str]:
325
+ """
326
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
327
+
328
+
329
+ ** IMPORTANT **
330
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
331
+ """
332
+ return pulumi.get(self, "redis_cluster_id")
333
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_oci
3
- Version: 3.1.0a1750230541
3
+ Version: 3.1.0a1751948424
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com