pulumi-oci 3.4.0a1755585924__py3-none-any.whl → 3.4.0a1755922408__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 (198) hide show
  1. pulumi_oci/__init__.py +168 -43
  2. pulumi_oci/aidocument/__init__.py +1 -0
  3. pulumi_oci/aidocument/_inputs.py +476 -6
  4. pulumi_oci/aidocument/get_model.py +63 -2
  5. pulumi_oci/aidocument/get_model_type.py +179 -0
  6. pulumi_oci/aidocument/get_models.py +1 -1
  7. pulumi_oci/aidocument/get_project.py +17 -2
  8. pulumi_oci/aidocument/get_projects.py +1 -1
  9. pulumi_oci/aidocument/model.py +188 -0
  10. pulumi_oci/aidocument/outputs.py +883 -8
  11. pulumi_oci/aidocument/processor_job.py +22 -4
  12. pulumi_oci/aidocument/project.py +50 -1
  13. pulumi_oci/apigateway/_inputs.py +608 -12
  14. pulumi_oci/apigateway/api.py +127 -38
  15. pulumi_oci/apigateway/certificate.py +122 -3
  16. pulumi_oci/apigateway/deployment.py +120 -3
  17. pulumi_oci/apigateway/gateway.py +124 -7
  18. pulumi_oci/apigateway/get_api.py +40 -1
  19. pulumi_oci/apigateway/get_certificate.py +41 -1
  20. pulumi_oci/apigateway/get_deployment.py +40 -1
  21. pulumi_oci/apigateway/get_gateway.py +40 -1
  22. pulumi_oci/apigateway/get_subscriber.py +40 -1
  23. pulumi_oci/apigateway/get_usage_plan.py +40 -1
  24. pulumi_oci/apigateway/outputs.py +1413 -39
  25. pulumi_oci/apigateway/subscriber.py +120 -3
  26. pulumi_oci/apigateway/usage_plan.py +127 -38
  27. pulumi_oci/apmconfig/_inputs.py +199 -15
  28. pulumi_oci/apmconfig/config.py +535 -17
  29. pulumi_oci/apmconfig/get_config.py +141 -1
  30. pulumi_oci/apmconfig/get_configs.py +2 -2
  31. pulumi_oci/apmconfig/outputs.py +509 -13
  32. pulumi_oci/apmtraces/__init__.py +5 -0
  33. pulumi_oci/apmtraces/_inputs.py +413 -0
  34. pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
  35. pulumi_oci/apmtraces/get_log.py +356 -0
  36. pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
  37. pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
  38. pulumi_oci/apmtraces/get_trace.py +4 -4
  39. pulumi_oci/apmtraces/outputs.py +971 -0
  40. pulumi_oci/apmtraces/scheduled_query.py +925 -0
  41. pulumi_oci/autoscaling/_inputs.py +177 -13
  42. pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
  43. pulumi_oci/autoscaling/outputs.py +269 -23
  44. pulumi_oci/core/_inputs.py +184 -0
  45. pulumi_oci/core/get_ipv6.py +15 -1
  46. pulumi_oci/core/ipv6.py +49 -0
  47. pulumi_oci/core/outputs.py +365 -0
  48. pulumi_oci/database/__init__.py +3 -0
  49. pulumi_oci/database/_inputs.py +139 -7
  50. pulumi_oci/database/autonomous_container_database.py +94 -0
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
  52. pulumi_oci/database/autonomous_database.py +578 -568
  53. pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
  54. pulumi_oci/database/get_autonomous_container_database.py +29 -1
  55. pulumi_oci/database/get_autonomous_database.py +65 -1
  56. pulumi_oci/database/get_autonomous_databases.py +6 -1
  57. pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
  58. pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
  59. pulumi_oci/database/outputs.py +470 -75
  60. pulumi_oci/database/pluggable_database.py +0 -14
  61. pulumi_oci/database/pluggable_database_snapshot.py +539 -0
  62. pulumi_oci/databasemanagement/__init__.py +37 -0
  63. pulumi_oci/databasemanagement/_inputs.py +9516 -3414
  64. pulumi_oci/databasemanagement/cloud_asm.py +791 -0
  65. pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
  66. pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
  67. pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
  68. pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
  69. pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
  70. pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
  71. pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
  72. pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
  73. pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
  74. pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
  75. pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
  76. pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
  77. pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
  78. pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
  79. pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
  80. pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
  81. pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
  82. pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
  83. pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
  84. pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
  85. pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
  86. pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
  87. pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
  88. pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
  89. pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
  90. pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
  91. pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
  92. pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
  93. pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
  94. pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
  95. pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
  96. pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
  97. pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
  98. pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
  99. pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
  100. pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
  101. pulumi_oci/databasemanagement/get_managed_database.py +2 -2
  102. pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
  105. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
  106. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
  107. pulumi_oci/databasemanagement/outputs.py +18049 -4222
  108. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
  109. pulumi_oci/datasafe/get_security_assessment_findings.py +2 -2
  110. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  111. pulumi_oci/datasafe/outputs.py +192 -2
  112. pulumi_oci/datascience/__init__.py +10 -0
  113. pulumi_oci/datascience/_inputs.py +6760 -2206
  114. pulumi_oci/datascience/get_job.py +15 -1
  115. pulumi_oci/datascience/get_job_run.py +44 -2
  116. pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
  117. pulumi_oci/datascience/get_model_group.py +405 -0
  118. pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
  119. pulumi_oci/datascience/get_model_group_models.py +240 -0
  120. pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
  121. pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
  122. pulumi_oci/datascience/get_model_groups.py +265 -0
  123. pulumi_oci/datascience/get_pipeline_run.py +15 -1
  124. pulumi_oci/datascience/job.py +81 -154
  125. pulumi_oci/datascience/job_run.py +250 -4
  126. pulumi_oci/datascience/model_group.py +1111 -0
  127. pulumi_oci/datascience/model_group_artifact.py +369 -0
  128. pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
  129. pulumi_oci/datascience/notebook_session.py +4 -0
  130. pulumi_oci/datascience/outputs.py +17168 -8021
  131. pulumi_oci/datascience/pipeline_run.py +87 -0
  132. pulumi_oci/goldengate/_inputs.py +3 -3
  133. pulumi_oci/goldengate/connection.py +175 -56
  134. pulumi_oci/goldengate/get_connection.py +20 -4
  135. pulumi_oci/goldengate/outputs.py +27 -8
  136. pulumi_oci/managementagent/__init__.py +4 -0
  137. pulumi_oci/managementagent/_inputs.py +129 -0
  138. pulumi_oci/managementagent/get_management_agent.py +26 -1
  139. pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
  140. pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
  141. pulumi_oci/managementagent/get_named_credential.py +268 -0
  142. pulumi_oci/managementagent/get_named_credentials.py +221 -0
  143. pulumi_oci/managementagent/management_agent.py +48 -0
  144. pulumi_oci/managementagent/management_agent_install_key.py +84 -0
  145. pulumi_oci/managementagent/named_credential.py +706 -0
  146. pulumi_oci/managementagent/outputs.py +515 -0
  147. pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
  148. pulumi_oci/oci/__init__.py +3 -0
  149. pulumi_oci/oci/_inputs.py +146 -0
  150. pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
  151. pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
  152. pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
  153. pulumi_oci/oci/outputs.py +367 -0
  154. pulumi_oci/opsi/_inputs.py +1001 -149
  155. pulumi_oci/opsi/database_insight.py +22 -3
  156. pulumi_oci/opsi/exadata_insight.py +86 -6
  157. pulumi_oci/opsi/outputs.py +1438 -178
  158. pulumi_oci/psql/configuration.py +109 -19
  159. pulumi_oci/psql/db_system.py +7 -7
  160. pulumi_oci/psql/get_configuration.py +30 -2
  161. pulumi_oci/psql/get_configurations.py +49 -5
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_default_configuration.py +30 -4
  164. pulumi_oci/psql/get_default_configurations.py +49 -5
  165. pulumi_oci/psql/outputs.py +47 -14
  166. pulumi_oci/pulumi-plugin.json +1 -1
  167. pulumi_oci/redis/__init__.py +6 -0
  168. pulumi_oci/redis/_inputs.py +217 -0
  169. pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
  170. pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
  171. pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
  172. pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
  173. pulumi_oci/redis/get_redis_cluster.py +15 -1
  174. pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
  175. pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
  176. pulumi_oci/redis/outputs.py +713 -0
  177. pulumi_oci/redis/redis_cluster.py +49 -0
  178. pulumi_oci/vault/_inputs.py +198 -0
  179. pulumi_oci/vault/get_secret.py +43 -1
  180. pulumi_oci/vault/outputs.py +434 -0
  181. pulumi_oci/vault/secret.py +103 -0
  182. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/RECORD +185 -134
  184. pulumi_oci/aianomalydetection/__init__.py +0 -25
  185. pulumi_oci/aianomalydetection/_inputs.py +0 -1742
  186. pulumi_oci/aianomalydetection/ai_private_endpoint.py +0 -643
  187. pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
  188. pulumi_oci/aianomalydetection/get_ai_private_endpoint.py +0 -281
  189. pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
  190. pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
  191. pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
  192. pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
  193. pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
  194. pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
  195. pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
  196. pulumi_oci/aianomalydetection/outputs.py +0 -3699
  197. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -16,11 +16,28 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'OciCacheConfigSetConfigurationDetails',
20
+ 'OciCacheConfigSetConfigurationDetailsItem',
21
+ 'OciCacheConfigSetlistAssociatedOciCacheClusterItem',
19
22
  'OciCacheUserAuthenticationMode',
20
23
  'OciCacheUserGetRedisClusterOciCacheCluster',
21
24
  'RedisClusterGetOciCacheUserOciCacheUser',
22
25
  'RedisClusterNodeCollection',
23
26
  'RedisClusterNodeCollectionItem',
27
+ 'GetOciCacheConfigSetConfigurationDetailResult',
28
+ 'GetOciCacheConfigSetConfigurationDetailItemResult',
29
+ 'GetOciCacheConfigSetsFilterResult',
30
+ 'GetOciCacheConfigSetsOciCacheConfigSetCollectionResult',
31
+ 'GetOciCacheConfigSetsOciCacheConfigSetCollectionItemResult',
32
+ 'GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailResult',
33
+ 'GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailItemResult',
34
+ 'GetOciCacheDefaultConfigSetDefaultConfigurationDetailResult',
35
+ 'GetOciCacheDefaultConfigSetDefaultConfigurationDetailItemResult',
36
+ 'GetOciCacheDefaultConfigSetsFilterResult',
37
+ 'GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionResult',
38
+ 'GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemResult',
39
+ 'GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailResult',
40
+ 'GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailItemResult',
24
41
  'GetOciCacheUserAuthenticationModeResult',
25
42
  'GetOciCacheUsersFilterResult',
26
43
  'GetOciCacheUsersOciCacheUserCollectionResult',
@@ -37,6 +54,91 @@ __all__ = [
37
54
  'GetRedisClustersRedisClusterCollectionItemNodeCollectionItemResult',
38
55
  ]
39
56
 
57
+ @pulumi.output_type
58
+ class OciCacheConfigSetConfigurationDetails(dict):
59
+ def __init__(__self__, *,
60
+ items: Sequence['outputs.OciCacheConfigSetConfigurationDetailsItem']):
61
+ """
62
+ :param Sequence['OciCacheConfigSetConfigurationDetailsItemArgs'] items: List of ConfigurationInfo objects.
63
+ """
64
+ pulumi.set(__self__, "items", items)
65
+
66
+ @_builtins.property
67
+ @pulumi.getter
68
+ def items(self) -> Sequence['outputs.OciCacheConfigSetConfigurationDetailsItem']:
69
+ """
70
+ List of ConfigurationInfo objects.
71
+ """
72
+ return pulumi.get(self, "items")
73
+
74
+
75
+ @pulumi.output_type
76
+ class OciCacheConfigSetConfigurationDetailsItem(dict):
77
+ @staticmethod
78
+ def __key_warning(key: str):
79
+ suggest = None
80
+ if key == "configKey":
81
+ suggest = "config_key"
82
+ elif key == "configValue":
83
+ suggest = "config_value"
84
+
85
+ if suggest:
86
+ pulumi.log.warn(f"Key '{key}' not found in OciCacheConfigSetConfigurationDetailsItem. Access the value via the '{suggest}' property getter instead.")
87
+
88
+ def __getitem__(self, key: str) -> Any:
89
+ OciCacheConfigSetConfigurationDetailsItem.__key_warning(key)
90
+ return super().__getitem__(key)
91
+
92
+ def get(self, key: str, default = None) -> Any:
93
+ OciCacheConfigSetConfigurationDetailsItem.__key_warning(key)
94
+ return super().get(key, default)
95
+
96
+ def __init__(__self__, *,
97
+ config_key: _builtins.str,
98
+ config_value: _builtins.str):
99
+ """
100
+ :param _builtins.str config_key: Key is the configuration key.
101
+ :param _builtins.str config_value: Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
102
+ """
103
+ pulumi.set(__self__, "config_key", config_key)
104
+ pulumi.set(__self__, "config_value", config_value)
105
+
106
+ @_builtins.property
107
+ @pulumi.getter(name="configKey")
108
+ def config_key(self) -> _builtins.str:
109
+ """
110
+ Key is the configuration key.
111
+ """
112
+ return pulumi.get(self, "config_key")
113
+
114
+ @_builtins.property
115
+ @pulumi.getter(name="configValue")
116
+ def config_value(self) -> _builtins.str:
117
+ """
118
+ Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
119
+ """
120
+ return pulumi.get(self, "config_value")
121
+
122
+
123
+ @pulumi.output_type
124
+ class OciCacheConfigSetlistAssociatedOciCacheClusterItem(dict):
125
+ def __init__(__self__, *,
126
+ id: Optional[_builtins.str] = None):
127
+ """
128
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
129
+ """
130
+ if id is not None:
131
+ pulumi.set(__self__, "id", id)
132
+
133
+ @_builtins.property
134
+ @pulumi.getter
135
+ def id(self) -> Optional[_builtins.str]:
136
+ """
137
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
138
+ """
139
+ return pulumi.get(self, "id")
140
+
141
+
40
142
  @pulumi.output_type
41
143
  class OciCacheUserAuthenticationMode(dict):
42
144
  @staticmethod
@@ -241,6 +343,606 @@ class RedisClusterNodeCollectionItem(dict):
241
343
  return pulumi.get(self, "private_endpoint_ip_address")
242
344
 
243
345
 
346
+ @pulumi.output_type
347
+ class GetOciCacheConfigSetConfigurationDetailResult(dict):
348
+ def __init__(__self__, *,
349
+ items: Sequence['outputs.GetOciCacheConfigSetConfigurationDetailItemResult']):
350
+ """
351
+ :param Sequence['GetOciCacheConfigSetConfigurationDetailItemArgs'] items: List of ConfigurationInfo objects.
352
+ """
353
+ pulumi.set(__self__, "items", items)
354
+
355
+ @_builtins.property
356
+ @pulumi.getter
357
+ def items(self) -> Sequence['outputs.GetOciCacheConfigSetConfigurationDetailItemResult']:
358
+ """
359
+ List of ConfigurationInfo objects.
360
+ """
361
+ return pulumi.get(self, "items")
362
+
363
+
364
+ @pulumi.output_type
365
+ class GetOciCacheConfigSetConfigurationDetailItemResult(dict):
366
+ def __init__(__self__, *,
367
+ config_key: _builtins.str,
368
+ config_value: _builtins.str):
369
+ """
370
+ :param _builtins.str config_key: Key is the configuration key.
371
+ :param _builtins.str config_value: Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
372
+ """
373
+ pulumi.set(__self__, "config_key", config_key)
374
+ pulumi.set(__self__, "config_value", config_value)
375
+
376
+ @_builtins.property
377
+ @pulumi.getter(name="configKey")
378
+ def config_key(self) -> _builtins.str:
379
+ """
380
+ Key is the configuration key.
381
+ """
382
+ return pulumi.get(self, "config_key")
383
+
384
+ @_builtins.property
385
+ @pulumi.getter(name="configValue")
386
+ def config_value(self) -> _builtins.str:
387
+ """
388
+ Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
389
+ """
390
+ return pulumi.get(self, "config_value")
391
+
392
+
393
+ @pulumi.output_type
394
+ class GetOciCacheConfigSetsFilterResult(dict):
395
+ def __init__(__self__, *,
396
+ name: _builtins.str,
397
+ values: Sequence[_builtins.str],
398
+ regex: Optional[_builtins.bool] = None):
399
+ pulumi.set(__self__, "name", name)
400
+ pulumi.set(__self__, "values", values)
401
+ if regex is not None:
402
+ pulumi.set(__self__, "regex", regex)
403
+
404
+ @_builtins.property
405
+ @pulumi.getter
406
+ def name(self) -> _builtins.str:
407
+ return pulumi.get(self, "name")
408
+
409
+ @_builtins.property
410
+ @pulumi.getter
411
+ def values(self) -> Sequence[_builtins.str]:
412
+ return pulumi.get(self, "values")
413
+
414
+ @_builtins.property
415
+ @pulumi.getter
416
+ def regex(self) -> Optional[_builtins.bool]:
417
+ return pulumi.get(self, "regex")
418
+
419
+
420
+ @pulumi.output_type
421
+ class GetOciCacheConfigSetsOciCacheConfigSetCollectionResult(dict):
422
+ def __init__(__self__, *,
423
+ items: Sequence['outputs.GetOciCacheConfigSetsOciCacheConfigSetCollectionItemResult']):
424
+ """
425
+ :param Sequence['GetOciCacheConfigSetsOciCacheConfigSetCollectionItemArgs'] items: List of ConfigurationInfo objects.
426
+ """
427
+ pulumi.set(__self__, "items", items)
428
+
429
+ @_builtins.property
430
+ @pulumi.getter
431
+ def items(self) -> Sequence['outputs.GetOciCacheConfigSetsOciCacheConfigSetCollectionItemResult']:
432
+ """
433
+ List of ConfigurationInfo objects.
434
+ """
435
+ return pulumi.get(self, "items")
436
+
437
+
438
+ @pulumi.output_type
439
+ class GetOciCacheConfigSetsOciCacheConfigSetCollectionItemResult(dict):
440
+ def __init__(__self__, *,
441
+ compartment_id: _builtins.str,
442
+ configuration_details: Sequence['outputs.GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailResult'],
443
+ default_config_set_id: _builtins.str,
444
+ defined_tags: Mapping[str, _builtins.str],
445
+ description: _builtins.str,
446
+ display_name: _builtins.str,
447
+ freeform_tags: Mapping[str, _builtins.str],
448
+ id: _builtins.str,
449
+ software_version: _builtins.str,
450
+ state: _builtins.str,
451
+ system_tags: Mapping[str, _builtins.str],
452
+ time_created: _builtins.str,
453
+ time_updated: _builtins.str):
454
+ """
455
+ :param _builtins.str compartment_id: The ID of the compartment in which to list resources.
456
+ :param Sequence['GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailArgs'] configuration_details: List of Oracle Cloud Infrastructure Cache Config Set Values.
457
+ :param _builtins.str default_config_set_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the default Oracle Cloud Infrastructure Cache Config Set which the custom Oracle Cloud Infrastructure Cache Config Set is based upon.
458
+ :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"}`
459
+ :param _builtins.str description: A description of the Oracle Cloud Infrastructure Cache Config Set.
460
+ :param _builtins.str display_name: A filter to return only resources that match the entire display name given.
461
+ :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"}`
462
+ :param _builtins.str id: Unique Oracle Cloud Infrastructure Cache Config Set identifier.
463
+ :param _builtins.str software_version: A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
464
+ :param _builtins.str state: A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
465
+ :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"}`
466
+ :param _builtins.str time_created: The date and time the Oracle Cloud Infrastructure Cache Config Set was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
467
+ :param _builtins.str time_updated: The date and time the Oracle Cloud Infrastructure Cache Config Set was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
468
+ """
469
+ pulumi.set(__self__, "compartment_id", compartment_id)
470
+ pulumi.set(__self__, "configuration_details", configuration_details)
471
+ pulumi.set(__self__, "default_config_set_id", default_config_set_id)
472
+ pulumi.set(__self__, "defined_tags", defined_tags)
473
+ pulumi.set(__self__, "description", description)
474
+ pulumi.set(__self__, "display_name", display_name)
475
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
476
+ pulumi.set(__self__, "id", id)
477
+ pulumi.set(__self__, "software_version", software_version)
478
+ pulumi.set(__self__, "state", state)
479
+ pulumi.set(__self__, "system_tags", system_tags)
480
+ pulumi.set(__self__, "time_created", time_created)
481
+ pulumi.set(__self__, "time_updated", time_updated)
482
+
483
+ @_builtins.property
484
+ @pulumi.getter(name="compartmentId")
485
+ def compartment_id(self) -> _builtins.str:
486
+ """
487
+ The ID of the compartment in which to list resources.
488
+ """
489
+ return pulumi.get(self, "compartment_id")
490
+
491
+ @_builtins.property
492
+ @pulumi.getter(name="configurationDetails")
493
+ def configuration_details(self) -> Sequence['outputs.GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailResult']:
494
+ """
495
+ List of Oracle Cloud Infrastructure Cache Config Set Values.
496
+ """
497
+ return pulumi.get(self, "configuration_details")
498
+
499
+ @_builtins.property
500
+ @pulumi.getter(name="defaultConfigSetId")
501
+ def default_config_set_id(self) -> _builtins.str:
502
+ """
503
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the default Oracle Cloud Infrastructure Cache Config Set which the custom Oracle Cloud Infrastructure Cache Config Set is based upon.
504
+ """
505
+ return pulumi.get(self, "default_config_set_id")
506
+
507
+ @_builtins.property
508
+ @pulumi.getter(name="definedTags")
509
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
510
+ """
511
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
512
+ """
513
+ return pulumi.get(self, "defined_tags")
514
+
515
+ @_builtins.property
516
+ @pulumi.getter
517
+ def description(self) -> _builtins.str:
518
+ """
519
+ A description of the Oracle Cloud Infrastructure Cache Config Set.
520
+ """
521
+ return pulumi.get(self, "description")
522
+
523
+ @_builtins.property
524
+ @pulumi.getter(name="displayName")
525
+ def display_name(self) -> _builtins.str:
526
+ """
527
+ A filter to return only resources that match the entire display name given.
528
+ """
529
+ return pulumi.get(self, "display_name")
530
+
531
+ @_builtins.property
532
+ @pulumi.getter(name="freeformTags")
533
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
534
+ """
535
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
536
+ """
537
+ return pulumi.get(self, "freeform_tags")
538
+
539
+ @_builtins.property
540
+ @pulumi.getter
541
+ def id(self) -> _builtins.str:
542
+ """
543
+ Unique Oracle Cloud Infrastructure Cache Config Set identifier.
544
+ """
545
+ return pulumi.get(self, "id")
546
+
547
+ @_builtins.property
548
+ @pulumi.getter(name="softwareVersion")
549
+ def software_version(self) -> _builtins.str:
550
+ """
551
+ A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
552
+ """
553
+ return pulumi.get(self, "software_version")
554
+
555
+ @_builtins.property
556
+ @pulumi.getter
557
+ def state(self) -> _builtins.str:
558
+ """
559
+ A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
560
+ """
561
+ return pulumi.get(self, "state")
562
+
563
+ @_builtins.property
564
+ @pulumi.getter(name="systemTags")
565
+ def system_tags(self) -> Mapping[str, _builtins.str]:
566
+ """
567
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
568
+ """
569
+ return pulumi.get(self, "system_tags")
570
+
571
+ @_builtins.property
572
+ @pulumi.getter(name="timeCreated")
573
+ def time_created(self) -> _builtins.str:
574
+ """
575
+ The date and time the Oracle Cloud Infrastructure Cache Config Set was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
576
+ """
577
+ return pulumi.get(self, "time_created")
578
+
579
+ @_builtins.property
580
+ @pulumi.getter(name="timeUpdated")
581
+ def time_updated(self) -> _builtins.str:
582
+ """
583
+ The date and time the Oracle Cloud Infrastructure Cache Config Set was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
584
+ """
585
+ return pulumi.get(self, "time_updated")
586
+
587
+
588
+ @pulumi.output_type
589
+ class GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailResult(dict):
590
+ def __init__(__self__, *,
591
+ items: Sequence['outputs.GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailItemResult']):
592
+ """
593
+ :param Sequence['GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailItemArgs'] items: List of ConfigurationInfo objects.
594
+ """
595
+ pulumi.set(__self__, "items", items)
596
+
597
+ @_builtins.property
598
+ @pulumi.getter
599
+ def items(self) -> Sequence['outputs.GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailItemResult']:
600
+ """
601
+ List of ConfigurationInfo objects.
602
+ """
603
+ return pulumi.get(self, "items")
604
+
605
+
606
+ @pulumi.output_type
607
+ class GetOciCacheConfigSetsOciCacheConfigSetCollectionItemConfigurationDetailItemResult(dict):
608
+ def __init__(__self__, *,
609
+ config_key: _builtins.str,
610
+ config_value: _builtins.str):
611
+ """
612
+ :param _builtins.str config_key: Key is the configuration key.
613
+ :param _builtins.str config_value: Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
614
+ """
615
+ pulumi.set(__self__, "config_key", config_key)
616
+ pulumi.set(__self__, "config_value", config_value)
617
+
618
+ @_builtins.property
619
+ @pulumi.getter(name="configKey")
620
+ def config_key(self) -> _builtins.str:
621
+ """
622
+ Key is the configuration key.
623
+ """
624
+ return pulumi.get(self, "config_key")
625
+
626
+ @_builtins.property
627
+ @pulumi.getter(name="configValue")
628
+ def config_value(self) -> _builtins.str:
629
+ """
630
+ Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".
631
+ """
632
+ return pulumi.get(self, "config_value")
633
+
634
+
635
+ @pulumi.output_type
636
+ class GetOciCacheDefaultConfigSetDefaultConfigurationDetailResult(dict):
637
+ def __init__(__self__, *,
638
+ items: Sequence['outputs.GetOciCacheDefaultConfigSetDefaultConfigurationDetailItemResult']):
639
+ """
640
+ :param Sequence['GetOciCacheDefaultConfigSetDefaultConfigurationDetailItemArgs'] items: List of DefaultConfigurationInfo objects.
641
+ """
642
+ pulumi.set(__self__, "items", items)
643
+
644
+ @_builtins.property
645
+ @pulumi.getter
646
+ def items(self) -> Sequence['outputs.GetOciCacheDefaultConfigSetDefaultConfigurationDetailItemResult']:
647
+ """
648
+ List of DefaultConfigurationInfo objects.
649
+ """
650
+ return pulumi.get(self, "items")
651
+
652
+
653
+ @pulumi.output_type
654
+ class GetOciCacheDefaultConfigSetDefaultConfigurationDetailItemResult(dict):
655
+ def __init__(__self__, *,
656
+ allowed_values: _builtins.str,
657
+ config_key: _builtins.str,
658
+ data_type: _builtins.str,
659
+ default_config_value: _builtins.str,
660
+ description: _builtins.str,
661
+ is_modifiable: _builtins.bool):
662
+ """
663
+ :param _builtins.str allowed_values: Allowed values for the configuration setting.
664
+ :param _builtins.str config_key: The key of the configuration setting.
665
+ :param _builtins.str data_type: The data type of the configuration setting.
666
+ :param _builtins.str default_config_value: The default value for the configuration setting.
667
+ :param _builtins.str description: Description of the Oracle Cloud Infrastructure Cache Default Config Set.
668
+ :param _builtins.bool is_modifiable: Indicates if the configuration is modifiable.
669
+ """
670
+ pulumi.set(__self__, "allowed_values", allowed_values)
671
+ pulumi.set(__self__, "config_key", config_key)
672
+ pulumi.set(__self__, "data_type", data_type)
673
+ pulumi.set(__self__, "default_config_value", default_config_value)
674
+ pulumi.set(__self__, "description", description)
675
+ pulumi.set(__self__, "is_modifiable", is_modifiable)
676
+
677
+ @_builtins.property
678
+ @pulumi.getter(name="allowedValues")
679
+ def allowed_values(self) -> _builtins.str:
680
+ """
681
+ Allowed values for the configuration setting.
682
+ """
683
+ return pulumi.get(self, "allowed_values")
684
+
685
+ @_builtins.property
686
+ @pulumi.getter(name="configKey")
687
+ def config_key(self) -> _builtins.str:
688
+ """
689
+ The key of the configuration setting.
690
+ """
691
+ return pulumi.get(self, "config_key")
692
+
693
+ @_builtins.property
694
+ @pulumi.getter(name="dataType")
695
+ def data_type(self) -> _builtins.str:
696
+ """
697
+ The data type of the configuration setting.
698
+ """
699
+ return pulumi.get(self, "data_type")
700
+
701
+ @_builtins.property
702
+ @pulumi.getter(name="defaultConfigValue")
703
+ def default_config_value(self) -> _builtins.str:
704
+ """
705
+ The default value for the configuration setting.
706
+ """
707
+ return pulumi.get(self, "default_config_value")
708
+
709
+ @_builtins.property
710
+ @pulumi.getter
711
+ def description(self) -> _builtins.str:
712
+ """
713
+ Description of the Oracle Cloud Infrastructure Cache Default Config Set.
714
+ """
715
+ return pulumi.get(self, "description")
716
+
717
+ @_builtins.property
718
+ @pulumi.getter(name="isModifiable")
719
+ def is_modifiable(self) -> _builtins.bool:
720
+ """
721
+ Indicates if the configuration is modifiable.
722
+ """
723
+ return pulumi.get(self, "is_modifiable")
724
+
725
+
726
+ @pulumi.output_type
727
+ class GetOciCacheDefaultConfigSetsFilterResult(dict):
728
+ def __init__(__self__, *,
729
+ name: _builtins.str,
730
+ values: Sequence[_builtins.str],
731
+ regex: Optional[_builtins.bool] = None):
732
+ pulumi.set(__self__, "name", name)
733
+ pulumi.set(__self__, "values", values)
734
+ if regex is not None:
735
+ pulumi.set(__self__, "regex", regex)
736
+
737
+ @_builtins.property
738
+ @pulumi.getter
739
+ def name(self) -> _builtins.str:
740
+ return pulumi.get(self, "name")
741
+
742
+ @_builtins.property
743
+ @pulumi.getter
744
+ def values(self) -> Sequence[_builtins.str]:
745
+ return pulumi.get(self, "values")
746
+
747
+ @_builtins.property
748
+ @pulumi.getter
749
+ def regex(self) -> Optional[_builtins.bool]:
750
+ return pulumi.get(self, "regex")
751
+
752
+
753
+ @pulumi.output_type
754
+ class GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionResult(dict):
755
+ def __init__(__self__, *,
756
+ items: Sequence['outputs.GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemResult']):
757
+ """
758
+ :param Sequence['GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemArgs'] items: List of DefaultConfigurationInfo objects.
759
+ """
760
+ pulumi.set(__self__, "items", items)
761
+
762
+ @_builtins.property
763
+ @pulumi.getter
764
+ def items(self) -> Sequence['outputs.GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemResult']:
765
+ """
766
+ List of DefaultConfigurationInfo objects.
767
+ """
768
+ return pulumi.get(self, "items")
769
+
770
+
771
+ @pulumi.output_type
772
+ class GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemResult(dict):
773
+ def __init__(__self__, *,
774
+ default_configuration_details: Sequence['outputs.GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailResult'],
775
+ description: _builtins.str,
776
+ display_name: _builtins.str,
777
+ id: _builtins.str,
778
+ software_version: _builtins.str,
779
+ state: _builtins.str,
780
+ time_created: _builtins.str):
781
+ """
782
+ :param Sequence['GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailArgs'] default_configuration_details: List of Oracle Cloud Infrastructure Cache Default Config Set Values.
783
+ :param _builtins.str description: Description of the Oracle Cloud Infrastructure Cache Default Config Set.
784
+ :param _builtins.str display_name: A filter to return only resources that match the entire display name given.
785
+ :param _builtins.str id: Unique Oracle Cloud Infrastructure Cache Default Config Set identifier.
786
+ :param _builtins.str software_version: A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
787
+ :param _builtins.str state: A filter to return the Oracle Cloud Infrastructure Cache Default Config Set resources, whose lifecycle state matches with the given lifecycle state.
788
+ :param _builtins.str time_created: The date and time the Oracle Cloud Infrastructure Cache Default Config Set was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
789
+ """
790
+ pulumi.set(__self__, "default_configuration_details", default_configuration_details)
791
+ pulumi.set(__self__, "description", description)
792
+ pulumi.set(__self__, "display_name", display_name)
793
+ pulumi.set(__self__, "id", id)
794
+ pulumi.set(__self__, "software_version", software_version)
795
+ pulumi.set(__self__, "state", state)
796
+ pulumi.set(__self__, "time_created", time_created)
797
+
798
+ @_builtins.property
799
+ @pulumi.getter(name="defaultConfigurationDetails")
800
+ def default_configuration_details(self) -> Sequence['outputs.GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailResult']:
801
+ """
802
+ List of Oracle Cloud Infrastructure Cache Default Config Set Values.
803
+ """
804
+ return pulumi.get(self, "default_configuration_details")
805
+
806
+ @_builtins.property
807
+ @pulumi.getter
808
+ def description(self) -> _builtins.str:
809
+ """
810
+ Description of the Oracle Cloud Infrastructure Cache Default Config Set.
811
+ """
812
+ return pulumi.get(self, "description")
813
+
814
+ @_builtins.property
815
+ @pulumi.getter(name="displayName")
816
+ def display_name(self) -> _builtins.str:
817
+ """
818
+ A filter to return only resources that match the entire display name given.
819
+ """
820
+ return pulumi.get(self, "display_name")
821
+
822
+ @_builtins.property
823
+ @pulumi.getter
824
+ def id(self) -> _builtins.str:
825
+ """
826
+ Unique Oracle Cloud Infrastructure Cache Default Config Set identifier.
827
+ """
828
+ return pulumi.get(self, "id")
829
+
830
+ @_builtins.property
831
+ @pulumi.getter(name="softwareVersion")
832
+ def software_version(self) -> _builtins.str:
833
+ """
834
+ A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
835
+ """
836
+ return pulumi.get(self, "software_version")
837
+
838
+ @_builtins.property
839
+ @pulumi.getter
840
+ def state(self) -> _builtins.str:
841
+ """
842
+ A filter to return the Oracle Cloud Infrastructure Cache Default Config Set resources, whose lifecycle state matches with the given lifecycle state.
843
+ """
844
+ return pulumi.get(self, "state")
845
+
846
+ @_builtins.property
847
+ @pulumi.getter(name="timeCreated")
848
+ def time_created(self) -> _builtins.str:
849
+ """
850
+ The date and time the Oracle Cloud Infrastructure Cache Default Config Set was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
851
+ """
852
+ return pulumi.get(self, "time_created")
853
+
854
+
855
+ @pulumi.output_type
856
+ class GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailResult(dict):
857
+ def __init__(__self__, *,
858
+ items: Sequence['outputs.GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailItemResult']):
859
+ """
860
+ :param Sequence['GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailItemArgs'] items: List of DefaultConfigurationInfo objects.
861
+ """
862
+ pulumi.set(__self__, "items", items)
863
+
864
+ @_builtins.property
865
+ @pulumi.getter
866
+ def items(self) -> Sequence['outputs.GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailItemResult']:
867
+ """
868
+ List of DefaultConfigurationInfo objects.
869
+ """
870
+ return pulumi.get(self, "items")
871
+
872
+
873
+ @pulumi.output_type
874
+ class GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionItemDefaultConfigurationDetailItemResult(dict):
875
+ def __init__(__self__, *,
876
+ allowed_values: _builtins.str,
877
+ config_key: _builtins.str,
878
+ data_type: _builtins.str,
879
+ default_config_value: _builtins.str,
880
+ description: _builtins.str,
881
+ is_modifiable: _builtins.bool):
882
+ """
883
+ :param _builtins.str allowed_values: Allowed values for the configuration setting.
884
+ :param _builtins.str config_key: The key of the configuration setting.
885
+ :param _builtins.str data_type: The data type of the configuration setting.
886
+ :param _builtins.str default_config_value: The default value for the configuration setting.
887
+ :param _builtins.str description: Description of the Oracle Cloud Infrastructure Cache Default Config Set.
888
+ :param _builtins.bool is_modifiable: Indicates if the configuration is modifiable.
889
+ """
890
+ pulumi.set(__self__, "allowed_values", allowed_values)
891
+ pulumi.set(__self__, "config_key", config_key)
892
+ pulumi.set(__self__, "data_type", data_type)
893
+ pulumi.set(__self__, "default_config_value", default_config_value)
894
+ pulumi.set(__self__, "description", description)
895
+ pulumi.set(__self__, "is_modifiable", is_modifiable)
896
+
897
+ @_builtins.property
898
+ @pulumi.getter(name="allowedValues")
899
+ def allowed_values(self) -> _builtins.str:
900
+ """
901
+ Allowed values for the configuration setting.
902
+ """
903
+ return pulumi.get(self, "allowed_values")
904
+
905
+ @_builtins.property
906
+ @pulumi.getter(name="configKey")
907
+ def config_key(self) -> _builtins.str:
908
+ """
909
+ The key of the configuration setting.
910
+ """
911
+ return pulumi.get(self, "config_key")
912
+
913
+ @_builtins.property
914
+ @pulumi.getter(name="dataType")
915
+ def data_type(self) -> _builtins.str:
916
+ """
917
+ The data type of the configuration setting.
918
+ """
919
+ return pulumi.get(self, "data_type")
920
+
921
+ @_builtins.property
922
+ @pulumi.getter(name="defaultConfigValue")
923
+ def default_config_value(self) -> _builtins.str:
924
+ """
925
+ The default value for the configuration setting.
926
+ """
927
+ return pulumi.get(self, "default_config_value")
928
+
929
+ @_builtins.property
930
+ @pulumi.getter
931
+ def description(self) -> _builtins.str:
932
+ """
933
+ Description of the Oracle Cloud Infrastructure Cache Default Config Set.
934
+ """
935
+ return pulumi.get(self, "description")
936
+
937
+ @_builtins.property
938
+ @pulumi.getter(name="isModifiable")
939
+ def is_modifiable(self) -> _builtins.bool:
940
+ """
941
+ Indicates if the configuration is modifiable.
942
+ """
943
+ return pulumi.get(self, "is_modifiable")
944
+
945
+
244
946
  @pulumi.output_type
245
947
  class GetOciCacheUserAuthenticationModeResult(dict):
246
948
  def __init__(__self__, *,
@@ -667,6 +1369,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
667
1369
  node_count: _builtins.int,
668
1370
  node_memory_in_gbs: _builtins.float,
669
1371
  nsg_ids: Sequence[_builtins.str],
1372
+ oci_cache_config_set_id: _builtins.str,
670
1373
  primary_endpoint_ip_address: _builtins.str,
671
1374
  primary_fqdn: _builtins.str,
672
1375
  replicas_endpoint_ip_address: _builtins.str,
@@ -690,6 +1393,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
690
1393
  :param _builtins.int node_count: The number of nodes per shard in the cluster when clusterMode is SHARDED. This is the total number of nodes when clusterMode is NONSHARDED.
691
1394
  :param _builtins.float node_memory_in_gbs: The amount of memory allocated to the cluster's nodes, in gigabytes.
692
1395
  :param Sequence[_builtins.str] nsg_ids: A list of Network Security Group (NSG) [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this cluster. For more information, see [Using an NSG for Clusters](https://docs.cloud.oracle.com/iaas/Content/ocicache/connecttocluster.htm#connecttocluster__networksecuritygroup).
1396
+ :param _builtins.str oci_cache_config_set_id: The ID of the corresponding Oracle Cloud Infrastructure Cache Config Set for the cluster.
693
1397
  :param _builtins.str primary_endpoint_ip_address: The private IP address of the API endpoint for the cluster's primary node.
694
1398
  :param _builtins.str primary_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the cluster's primary node.
695
1399
  :param _builtins.str replicas_endpoint_ip_address: The private IP address of the API endpoint for the cluster's replica nodes.
@@ -713,6 +1417,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
713
1417
  pulumi.set(__self__, "node_count", node_count)
714
1418
  pulumi.set(__self__, "node_memory_in_gbs", node_memory_in_gbs)
715
1419
  pulumi.set(__self__, "nsg_ids", nsg_ids)
1420
+ pulumi.set(__self__, "oci_cache_config_set_id", oci_cache_config_set_id)
716
1421
  pulumi.set(__self__, "primary_endpoint_ip_address", primary_endpoint_ip_address)
717
1422
  pulumi.set(__self__, "primary_fqdn", primary_fqdn)
718
1423
  pulumi.set(__self__, "replicas_endpoint_ip_address", replicas_endpoint_ip_address)
@@ -813,6 +1518,14 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
813
1518
  """
814
1519
  return pulumi.get(self, "nsg_ids")
815
1520
 
1521
+ @_builtins.property
1522
+ @pulumi.getter(name="ociCacheConfigSetId")
1523
+ def oci_cache_config_set_id(self) -> _builtins.str:
1524
+ """
1525
+ The ID of the corresponding Oracle Cloud Infrastructure Cache Config Set for the cluster.
1526
+ """
1527
+ return pulumi.get(self, "oci_cache_config_set_id")
1528
+
816
1529
  @_builtins.property
817
1530
  @pulumi.getter(name="primaryEndpointIpAddress")
818
1531
  def primary_endpoint_ip_address(self) -> _builtins.str: