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,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__ = ['OciCacheUserGetRedisClusterArgs', 'OciCacheUserGetRedisCluster']
21
+
22
+ @pulumi.input_type
23
+ class OciCacheUserGetRedisClusterArgs:
24
+ def __init__(__self__, *,
25
+ oci_cache_user_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 OciCacheUserGetRedisCluster resource.
30
+ :param pulumi.Input[builtins.str] oci_cache_user_id: A filter to return only resources, that match with the given Oracle Cloud Infrastructure cache user ID (OCID).
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__, "oci_cache_user_id", oci_cache_user_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="ociCacheUserId")
46
+ def oci_cache_user_id(self) -> pulumi.Input[builtins.str]:
47
+ """
48
+ A filter to return only resources, that match with the given Oracle Cloud Infrastructure cache user ID (OCID).
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, "oci_cache_user_id")
55
+
56
+ @oci_cache_user_id.setter
57
+ def oci_cache_user_id(self, value: pulumi.Input[builtins.str]):
58
+ pulumi.set(self, "oci_cache_user_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 _OciCacheUserGetRedisClusterState:
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_clusters: Optional[pulumi.Input[Sequence[pulumi.Input['OciCacheUserGetRedisClusterOciCacheClusterArgs']]]] = None,
91
+ oci_cache_user_id: Optional[pulumi.Input[builtins.str]] = None):
92
+ """
93
+ Input properties used for looking up and filtering OciCacheUserGetRedisCluster 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] oci_cache_user_id: A filter to return only resources, that match with the given Oracle Cloud Infrastructure cache user ID (OCID).
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_clusters is not None:
107
+ pulumi.set(__self__, "oci_cache_clusters", oci_cache_clusters)
108
+ if oci_cache_user_id is not None:
109
+ pulumi.set(__self__, "oci_cache_user_id", oci_cache_user_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="ociCacheClusters")
137
+ def oci_cache_clusters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OciCacheUserGetRedisClusterOciCacheClusterArgs']]]]:
138
+ return pulumi.get(self, "oci_cache_clusters")
139
+
140
+ @oci_cache_clusters.setter
141
+ def oci_cache_clusters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OciCacheUserGetRedisClusterOciCacheClusterArgs']]]]):
142
+ pulumi.set(self, "oci_cache_clusters", value)
143
+
144
+ @property
145
+ @pulumi.getter(name="ociCacheUserId")
146
+ def oci_cache_user_id(self) -> Optional[pulumi.Input[builtins.str]]:
147
+ """
148
+ A filter to return only resources, that match with the given Oracle Cloud Infrastructure cache user ID (OCID).
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, "oci_cache_user_id")
155
+
156
+ @oci_cache_user_id.setter
157
+ def oci_cache_user_id(self, value: Optional[pulumi.Input[builtins.str]]):
158
+ pulumi.set(self, "oci_cache_user_id", value)
159
+
160
+
161
+ @pulumi.type_token("oci:Redis/ociCacheUserGetRedisCluster:OciCacheUserGetRedisCluster")
162
+ class OciCacheUserGetRedisCluster(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
+ oci_cache_user_id: Optional[pulumi.Input[builtins.str]] = None,
170
+ __props__=None):
171
+ """
172
+ This resource provides the Oci Cache User Get Redis Cluster resource in Oracle Cloud Infrastructure Redis service.
173
+
174
+ Gets a list of associated redis cluster for an Oracle Cloud Infrastructure cache user.
175
+
176
+ ## Example Usage
177
+
178
+ ```python
179
+ import pulumi
180
+ import pulumi_oci as oci
181
+
182
+ test_oci_cache_user_get_redis_cluster = oci.redis.OciCacheUserGetRedisCluster("test_oci_cache_user_get_redis_cluster",
183
+ oci_cache_user_id=test_oci_cache_user["id"],
184
+ compartment_id=compartment_id,
185
+ display_name=oci_cache_user_get_redis_cluster_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] oci_cache_user_id: A filter to return only resources, that match with the given Oracle Cloud Infrastructure cache user ID (OCID).
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: OciCacheUserGetRedisClusterArgs,
207
+ opts: Optional[pulumi.ResourceOptions] = None):
208
+ """
209
+ This resource provides the Oci Cache User Get Redis Cluster resource in Oracle Cloud Infrastructure Redis service.
210
+
211
+ Gets a list of associated redis cluster for an Oracle Cloud Infrastructure cache user.
212
+
213
+ ## Example Usage
214
+
215
+ ```python
216
+ import pulumi
217
+ import pulumi_oci as oci
218
+
219
+ test_oci_cache_user_get_redis_cluster = oci.redis.OciCacheUserGetRedisCluster("test_oci_cache_user_get_redis_cluster",
220
+ oci_cache_user_id=test_oci_cache_user["id"],
221
+ compartment_id=compartment_id,
222
+ display_name=oci_cache_user_get_redis_cluster_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 OciCacheUserGetRedisClusterArgs 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(OciCacheUserGetRedisClusterArgs, 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
+ oci_cache_user_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__ = OciCacheUserGetRedisClusterArgs.__new__(OciCacheUserGetRedisClusterArgs)
255
+
256
+ __props__.__dict__["compartment_id"] = compartment_id
257
+ __props__.__dict__["display_name"] = display_name
258
+ if oci_cache_user_id is None and not opts.urn:
259
+ raise TypeError("Missing required property 'oci_cache_user_id'")
260
+ __props__.__dict__["oci_cache_user_id"] = oci_cache_user_id
261
+ __props__.__dict__["oci_cache_clusters"] = None
262
+ super(OciCacheUserGetRedisCluster, __self__).__init__(
263
+ 'oci:Redis/ociCacheUserGetRedisCluster:OciCacheUserGetRedisCluster',
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_clusters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OciCacheUserGetRedisClusterOciCacheClusterArgs', 'OciCacheUserGetRedisClusterOciCacheClusterArgsDict']]]]] = None,
275
+ oci_cache_user_id: Optional[pulumi.Input[builtins.str]] = None) -> 'OciCacheUserGetRedisCluster':
276
+ """
277
+ Get an existing OciCacheUserGetRedisCluster 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] oci_cache_user_id: A filter to return only resources, that match with the given Oracle Cloud Infrastructure cache user ID (OCID).
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__ = _OciCacheUserGetRedisClusterState.__new__(_OciCacheUserGetRedisClusterState)
294
+
295
+ __props__.__dict__["compartment_id"] = compartment_id
296
+ __props__.__dict__["display_name"] = display_name
297
+ __props__.__dict__["oci_cache_clusters"] = oci_cache_clusters
298
+ __props__.__dict__["oci_cache_user_id"] = oci_cache_user_id
299
+ return OciCacheUserGetRedisCluster(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="ociCacheClusters")
319
+ def oci_cache_clusters(self) -> pulumi.Output[Sequence['outputs.OciCacheUserGetRedisClusterOciCacheCluster']]:
320
+ return pulumi.get(self, "oci_cache_clusters")
321
+
322
+ @property
323
+ @pulumi.getter(name="ociCacheUserId")
324
+ def oci_cache_user_id(self) -> pulumi.Output[builtins.str]:
325
+ """
326
+ A filter to return only resources, that match with the given Oracle Cloud Infrastructure cache user ID (OCID).
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, "oci_cache_user_id")
333
+
@@ -17,8 +17,15 @@ from .. import _utilities
17
17
  from . import outputs
18
18
 
19
19
  __all__ = [
20
+ 'OciCacheUserAuthenticationMode',
21
+ 'OciCacheUserGetRedisClusterOciCacheCluster',
22
+ 'RedisClusterGetOciCacheUserOciCacheUser',
20
23
  'RedisClusterNodeCollection',
21
24
  'RedisClusterNodeCollectionItem',
25
+ 'GetOciCacheUserAuthenticationModeResult',
26
+ 'GetOciCacheUsersFilterResult',
27
+ 'GetOciCacheUsersOciCacheUserCollectionResult',
28
+ 'GetOciCacheUsersOciCacheUserCollectionItemResult',
22
29
  'GetRedisClusterNodeCollectionResult',
23
30
  'GetRedisClusterNodeCollectionItemResult',
24
31
  'GetRedisClusterNodesFilterResult',
@@ -31,6 +38,127 @@ __all__ = [
31
38
  'GetRedisClustersRedisClusterCollectionItemNodeCollectionItemResult',
32
39
  ]
33
40
 
41
+ @pulumi.output_type
42
+ class OciCacheUserAuthenticationMode(dict):
43
+ @staticmethod
44
+ def __key_warning(key: str):
45
+ suggest = None
46
+ if key == "authenticationType":
47
+ suggest = "authentication_type"
48
+ elif key == "hashedPasswords":
49
+ suggest = "hashed_passwords"
50
+
51
+ if suggest:
52
+ pulumi.log.warn(f"Key '{key}' not found in OciCacheUserAuthenticationMode. Access the value via the '{suggest}' property getter instead.")
53
+
54
+ def __getitem__(self, key: str) -> Any:
55
+ OciCacheUserAuthenticationMode.__key_warning(key)
56
+ return super().__getitem__(key)
57
+
58
+ def get(self, key: str, default = None) -> Any:
59
+ OciCacheUserAuthenticationMode.__key_warning(key)
60
+ return super().get(key, default)
61
+
62
+ def __init__(__self__, *,
63
+ authentication_type: builtins.str,
64
+ hashed_passwords: Optional[Sequence[builtins.str]] = None):
65
+ """
66
+ :param builtins.str authentication_type: (Updatable) This is Authentication Type of Oracle Cloud Infrastructure cache user
67
+ :param Sequence[builtins.str] hashed_passwords: (Updatable) SHA-256 hashed passwords for Oracle Cloud Infrastructure Cache user,required if authenticationType is set to PASSWORD.
68
+ """
69
+ pulumi.set(__self__, "authentication_type", authentication_type)
70
+ if hashed_passwords is not None:
71
+ pulumi.set(__self__, "hashed_passwords", hashed_passwords)
72
+
73
+ @property
74
+ @pulumi.getter(name="authenticationType")
75
+ def authentication_type(self) -> builtins.str:
76
+ """
77
+ (Updatable) This is Authentication Type of Oracle Cloud Infrastructure cache user
78
+ """
79
+ return pulumi.get(self, "authentication_type")
80
+
81
+ @property
82
+ @pulumi.getter(name="hashedPasswords")
83
+ def hashed_passwords(self) -> Optional[Sequence[builtins.str]]:
84
+ """
85
+ (Updatable) SHA-256 hashed passwords for Oracle Cloud Infrastructure Cache user,required if authenticationType is set to PASSWORD.
86
+ """
87
+ return pulumi.get(self, "hashed_passwords")
88
+
89
+
90
+ @pulumi.output_type
91
+ class OciCacheUserGetRedisClusterOciCacheCluster(dict):
92
+ @staticmethod
93
+ def __key_warning(key: str):
94
+ suggest = None
95
+ if key == "ociCacheClusterId":
96
+ suggest = "oci_cache_cluster_id"
97
+
98
+ if suggest:
99
+ pulumi.log.warn(f"Key '{key}' not found in OciCacheUserGetRedisClusterOciCacheCluster. Access the value via the '{suggest}' property getter instead.")
100
+
101
+ def __getitem__(self, key: str) -> Any:
102
+ OciCacheUserGetRedisClusterOciCacheCluster.__key_warning(key)
103
+ return super().__getitem__(key)
104
+
105
+ def get(self, key: str, default = None) -> Any:
106
+ OciCacheUserGetRedisClusterOciCacheCluster.__key_warning(key)
107
+ return super().get(key, default)
108
+
109
+ def __init__(__self__, *,
110
+ oci_cache_cluster_id: Optional[builtins.str] = None):
111
+ """
112
+ :param builtins.str oci_cache_cluster_id: OCID of the OciCacheCluster
113
+ """
114
+ if oci_cache_cluster_id is not None:
115
+ pulumi.set(__self__, "oci_cache_cluster_id", oci_cache_cluster_id)
116
+
117
+ @property
118
+ @pulumi.getter(name="ociCacheClusterId")
119
+ def oci_cache_cluster_id(self) -> Optional[builtins.str]:
120
+ """
121
+ OCID of the OciCacheCluster
122
+ """
123
+ return pulumi.get(self, "oci_cache_cluster_id")
124
+
125
+
126
+ @pulumi.output_type
127
+ class RedisClusterGetOciCacheUserOciCacheUser(dict):
128
+ @staticmethod
129
+ def __key_warning(key: str):
130
+ suggest = None
131
+ if key == "ociCacheUserId":
132
+ suggest = "oci_cache_user_id"
133
+
134
+ if suggest:
135
+ pulumi.log.warn(f"Key '{key}' not found in RedisClusterGetOciCacheUserOciCacheUser. Access the value via the '{suggest}' property getter instead.")
136
+
137
+ def __getitem__(self, key: str) -> Any:
138
+ RedisClusterGetOciCacheUserOciCacheUser.__key_warning(key)
139
+ return super().__getitem__(key)
140
+
141
+ def get(self, key: str, default = None) -> Any:
142
+ RedisClusterGetOciCacheUserOciCacheUser.__key_warning(key)
143
+ return super().get(key, default)
144
+
145
+ def __init__(__self__, *,
146
+ oci_cache_user_id: Optional[builtins.str] = None):
147
+ """
148
+ :param builtins.str oci_cache_user_id: OCID of the OciCacheUser
149
+ """
150
+ if oci_cache_user_id is not None:
151
+ pulumi.set(__self__, "oci_cache_user_id", oci_cache_user_id)
152
+
153
+ @property
154
+ @pulumi.getter(name="ociCacheUserId")
155
+ def oci_cache_user_id(self) -> Optional[builtins.str]:
156
+ """
157
+ OCID of the OciCacheUser
158
+ """
159
+ return pulumi.get(self, "oci_cache_user_id")
160
+
161
+
34
162
  @pulumi.output_type
35
163
  class RedisClusterNodeCollection(dict):
36
164
  def __init__(__self__, *,
@@ -114,6 +242,208 @@ class RedisClusterNodeCollectionItem(dict):
114
242
  return pulumi.get(self, "private_endpoint_ip_address")
115
243
 
116
244
 
245
+ @pulumi.output_type
246
+ class GetOciCacheUserAuthenticationModeResult(dict):
247
+ def __init__(__self__, *,
248
+ authentication_type: builtins.str,
249
+ hashed_passwords: Sequence[builtins.str]):
250
+ """
251
+ :param builtins.str authentication_type: This is Authentication Type of Oracle Cloud Infrastructure cache user
252
+ :param Sequence[builtins.str] hashed_passwords: SHA-256 hashed passwords for Oracle Cloud Infrastructure Cache user,required if authenticationType is set to PASSWORD.
253
+ """
254
+ pulumi.set(__self__, "authentication_type", authentication_type)
255
+ pulumi.set(__self__, "hashed_passwords", hashed_passwords)
256
+
257
+ @property
258
+ @pulumi.getter(name="authenticationType")
259
+ def authentication_type(self) -> builtins.str:
260
+ """
261
+ This is Authentication Type of Oracle Cloud Infrastructure cache user
262
+ """
263
+ return pulumi.get(self, "authentication_type")
264
+
265
+ @property
266
+ @pulumi.getter(name="hashedPasswords")
267
+ def hashed_passwords(self) -> Sequence[builtins.str]:
268
+ """
269
+ SHA-256 hashed passwords for Oracle Cloud Infrastructure Cache user,required if authenticationType is set to PASSWORD.
270
+ """
271
+ return pulumi.get(self, "hashed_passwords")
272
+
273
+
274
+ @pulumi.output_type
275
+ class GetOciCacheUsersFilterResult(dict):
276
+ def __init__(__self__, *,
277
+ name: builtins.str,
278
+ values: Sequence[builtins.str],
279
+ regex: Optional[builtins.bool] = None):
280
+ """
281
+ :param builtins.str name: A filter to return the resources that match with the given Oracle Cloud Infrastructure cache user name.
282
+ """
283
+ pulumi.set(__self__, "name", name)
284
+ pulumi.set(__self__, "values", values)
285
+ if regex is not None:
286
+ pulumi.set(__self__, "regex", regex)
287
+
288
+ @property
289
+ @pulumi.getter
290
+ def name(self) -> builtins.str:
291
+ """
292
+ A filter to return the resources that match with the given Oracle Cloud Infrastructure cache user name.
293
+ """
294
+ return pulumi.get(self, "name")
295
+
296
+ @property
297
+ @pulumi.getter
298
+ def values(self) -> Sequence[builtins.str]:
299
+ return pulumi.get(self, "values")
300
+
301
+ @property
302
+ @pulumi.getter
303
+ def regex(self) -> Optional[builtins.bool]:
304
+ return pulumi.get(self, "regex")
305
+
306
+
307
+ @pulumi.output_type
308
+ class GetOciCacheUsersOciCacheUserCollectionResult(dict):
309
+ def __init__(__self__, *,
310
+ items: Sequence['outputs.GetOciCacheUsersOciCacheUserCollectionItemResult']):
311
+ pulumi.set(__self__, "items", items)
312
+
313
+ @property
314
+ @pulumi.getter
315
+ def items(self) -> Sequence['outputs.GetOciCacheUsersOciCacheUserCollectionItemResult']:
316
+ return pulumi.get(self, "items")
317
+
318
+
319
+ @pulumi.output_type
320
+ class GetOciCacheUsersOciCacheUserCollectionItemResult(dict):
321
+ def __init__(__self__, *,
322
+ authentication_type: builtins.str,
323
+ compartment_id: builtins.str,
324
+ defined_tags: Mapping[str, builtins.str],
325
+ description: builtins.str,
326
+ freeform_tags: Mapping[str, builtins.str],
327
+ id: builtins.str,
328
+ name: builtins.str,
329
+ state: builtins.str,
330
+ status: builtins.str,
331
+ system_tags: Mapping[str, builtins.str],
332
+ time_created: builtins.str):
333
+ """
334
+ :param builtins.str authentication_type: This is Authentication Type of Oracle Cloud Infrastructure cache user
335
+ :param builtins.str compartment_id: The ID of the compartment in which to list resources.
336
+ :param Mapping[str, builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
337
+ :param builtins.str description: Description of Oracle Cloud Infrastructure cache user.
338
+ :param Mapping[str, builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
339
+ :param builtins.str id: Oracle Cloud Infrastructure Cache user unique ID.
340
+ :param builtins.str name: A filter to return the resources that match with the given Oracle Cloud Infrastructure cache user name.
341
+ :param builtins.str state: A filter to return the resources, whose lifecycleState matches with the given lifecycleState.
342
+ :param builtins.str status: Oracle Cloud Infrastructure Cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the cluster.
343
+ :param Mapping[str, builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
344
+ :param builtins.str time_created: The date and time, when the Oracle Cloud Infrastructure cache user was created.
345
+ """
346
+ pulumi.set(__self__, "authentication_type", authentication_type)
347
+ pulumi.set(__self__, "compartment_id", compartment_id)
348
+ pulumi.set(__self__, "defined_tags", defined_tags)
349
+ pulumi.set(__self__, "description", description)
350
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
351
+ pulumi.set(__self__, "id", id)
352
+ pulumi.set(__self__, "name", name)
353
+ pulumi.set(__self__, "state", state)
354
+ pulumi.set(__self__, "status", status)
355
+ pulumi.set(__self__, "system_tags", system_tags)
356
+ pulumi.set(__self__, "time_created", time_created)
357
+
358
+ @property
359
+ @pulumi.getter(name="authenticationType")
360
+ def authentication_type(self) -> builtins.str:
361
+ """
362
+ This is Authentication Type of Oracle Cloud Infrastructure cache user
363
+ """
364
+ return pulumi.get(self, "authentication_type")
365
+
366
+ @property
367
+ @pulumi.getter(name="compartmentId")
368
+ def compartment_id(self) -> builtins.str:
369
+ """
370
+ The ID of the compartment in which to list resources.
371
+ """
372
+ return pulumi.get(self, "compartment_id")
373
+
374
+ @property
375
+ @pulumi.getter(name="definedTags")
376
+ def defined_tags(self) -> Mapping[str, builtins.str]:
377
+ """
378
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
379
+ """
380
+ return pulumi.get(self, "defined_tags")
381
+
382
+ @property
383
+ @pulumi.getter
384
+ def description(self) -> builtins.str:
385
+ """
386
+ Description of Oracle Cloud Infrastructure cache user.
387
+ """
388
+ return pulumi.get(self, "description")
389
+
390
+ @property
391
+ @pulumi.getter(name="freeformTags")
392
+ def freeform_tags(self) -> Mapping[str, builtins.str]:
393
+ """
394
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
395
+ """
396
+ return pulumi.get(self, "freeform_tags")
397
+
398
+ @property
399
+ @pulumi.getter
400
+ def id(self) -> builtins.str:
401
+ """
402
+ Oracle Cloud Infrastructure Cache user unique ID.
403
+ """
404
+ return pulumi.get(self, "id")
405
+
406
+ @property
407
+ @pulumi.getter
408
+ def name(self) -> builtins.str:
409
+ """
410
+ A filter to return the resources that match with the given Oracle Cloud Infrastructure cache user name.
411
+ """
412
+ return pulumi.get(self, "name")
413
+
414
+ @property
415
+ @pulumi.getter
416
+ def state(self) -> builtins.str:
417
+ """
418
+ A filter to return the resources, whose lifecycleState matches with the given lifecycleState.
419
+ """
420
+ return pulumi.get(self, "state")
421
+
422
+ @property
423
+ @pulumi.getter
424
+ def status(self) -> builtins.str:
425
+ """
426
+ Oracle Cloud Infrastructure Cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the cluster.
427
+ """
428
+ return pulumi.get(self, "status")
429
+
430
+ @property
431
+ @pulumi.getter(name="systemTags")
432
+ def system_tags(self) -> Mapping[str, builtins.str]:
433
+ """
434
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
435
+ """
436
+ return pulumi.get(self, "system_tags")
437
+
438
+ @property
439
+ @pulumi.getter(name="timeCreated")
440
+ def time_created(self) -> builtins.str:
441
+ """
442
+ The date and time, when the Oracle Cloud Infrastructure cache user was created.
443
+ """
444
+ return pulumi.get(self, "time_created")
445
+
446
+
117
447
  @pulumi.output_type
118
448
  class GetRedisClusterNodeCollectionResult(dict):
119
449
  def __init__(__self__, *,