pulumi-oci 2.8.0__py3-none-any.whl → 2.8.0a1724220787__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 (33) hide show
  1. pulumi_oci/analytics/_inputs.py +4 -4
  2. pulumi_oci/analytics/analytics_instance.py +25 -199
  3. pulumi_oci/analytics/get_analytics_instance.py +2 -51
  4. pulumi_oci/analytics/get_analytics_instances.py +1 -1
  5. pulumi_oci/analytics/outputs.py +12 -52
  6. pulumi_oci/database/get_maintenance_run.py +1 -14
  7. pulumi_oci/database/maintenance_run.py +7 -56
  8. pulumi_oci/database/outputs.py +0 -33
  9. pulumi_oci/disasterrecovery/_inputs.py +2 -66
  10. pulumi_oci/disasterrecovery/dr_protection_group.py +0 -8
  11. pulumi_oci/disasterrecovery/get_dr_plan_executions.py +0 -24
  12. pulumi_oci/disasterrecovery/outputs.py +10 -150
  13. pulumi_oci/integration/get_integration_instance.py +2 -25
  14. pulumi_oci/integration/integration_instance.py +0 -88
  15. pulumi_oci/integration/outputs.py +6 -24
  16. pulumi_oci/mysql/_inputs.py +2 -202
  17. pulumi_oci/mysql/get_mysql_backup.py +1 -1
  18. pulumi_oci/mysql/get_mysql_db_system.py +2 -15
  19. pulumi_oci/mysql/mysql_backup.py +4 -4
  20. pulumi_oci/mysql/mysql_db_system.py +0 -55
  21. pulumi_oci/mysql/outputs.py +10 -503
  22. pulumi_oci/pulumi-plugin.json +1 -1
  23. pulumi_oci/redis/__init__.py +0 -1
  24. pulumi_oci/redis/_inputs.py +0 -40
  25. pulumi_oci/redis/get_redis_cluster.py +21 -47
  26. pulumi_oci/redis/get_redis_clusters.py +8 -8
  27. pulumi_oci/redis/outputs.py +28 -160
  28. pulumi_oci/redis/redis_cluster.py +79 -177
  29. {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/METADATA +1 -1
  30. {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/RECORD +32 -33
  31. pulumi_oci/redis/get_redis_cluster_nodes.py +0 -156
  32. {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/WHEEL +0 -0
  33. {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.8.0"
4
+ "version": "2.8.0-alpha.1724220787"
5
5
  }
@@ -6,7 +6,6 @@ from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
8
  from .get_redis_cluster import *
9
- from .get_redis_cluster_nodes import *
10
9
  from .get_redis_clusters import *
11
10
  from .redis_cluster import *
12
11
  from ._inputs import *
@@ -12,7 +12,6 @@ from .. import _utilities
12
12
  __all__ = [
13
13
  'RedisClusterNodeCollectionArgs',
14
14
  'RedisClusterNodeCollectionItemArgs',
15
- 'GetRedisClusterNodesFilterArgs',
16
15
  'GetRedisClustersFilterArgs',
17
16
  ]
18
17
 
@@ -94,45 +93,6 @@ class RedisClusterNodeCollectionItemArgs:
94
93
  pulumi.set(self, "private_endpoint_ip_address", value)
95
94
 
96
95
 
97
- @pulumi.input_type
98
- class GetRedisClusterNodesFilterArgs:
99
- def __init__(__self__, *,
100
- name: str,
101
- values: Sequence[str],
102
- regex: Optional[bool] = None):
103
- pulumi.set(__self__, "name", name)
104
- pulumi.set(__self__, "values", values)
105
- if regex is not None:
106
- pulumi.set(__self__, "regex", regex)
107
-
108
- @property
109
- @pulumi.getter
110
- def name(self) -> str:
111
- return pulumi.get(self, "name")
112
-
113
- @name.setter
114
- def name(self, value: str):
115
- pulumi.set(self, "name", value)
116
-
117
- @property
118
- @pulumi.getter
119
- def values(self) -> Sequence[str]:
120
- return pulumi.get(self, "values")
121
-
122
- @values.setter
123
- def values(self, value: Sequence[str]):
124
- pulumi.set(self, "values", value)
125
-
126
- @property
127
- @pulumi.getter
128
- def regex(self) -> Optional[bool]:
129
- return pulumi.get(self, "regex")
130
-
131
- @regex.setter
132
- def regex(self, value: Optional[bool]):
133
- pulumi.set(self, "regex", value)
134
-
135
-
136
96
  @pulumi.input_type
137
97
  class GetRedisClustersFilterArgs:
138
98
  def __init__(__self__, *,
@@ -22,10 +22,7 @@ class GetRedisClusterResult:
22
22
  """
23
23
  A collection of values returned by getRedisCluster.
24
24
  """
25
- def __init__(__self__, cluster_mode=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, node_collections=None, node_count=None, node_memory_in_gbs=None, nsg_ids=None, primary_endpoint_ip_address=None, primary_fqdn=None, redis_cluster_id=None, replicas_endpoint_ip_address=None, replicas_fqdn=None, shard_count=None, software_version=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
26
- if cluster_mode and not isinstance(cluster_mode, str):
27
- raise TypeError("Expected argument 'cluster_mode' to be a str")
28
- pulumi.set(__self__, "cluster_mode", cluster_mode)
25
+ def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, node_collections=None, node_count=None, node_memory_in_gbs=None, nsg_ids=None, primary_endpoint_ip_address=None, primary_fqdn=None, redis_cluster_id=None, replicas_endpoint_ip_address=None, replicas_fqdn=None, software_version=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
29
26
  if compartment_id and not isinstance(compartment_id, str):
30
27
  raise TypeError("Expected argument 'compartment_id' to be a str")
31
28
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -71,9 +68,6 @@ class GetRedisClusterResult:
71
68
  if replicas_fqdn and not isinstance(replicas_fqdn, str):
72
69
  raise TypeError("Expected argument 'replicas_fqdn' to be a str")
73
70
  pulumi.set(__self__, "replicas_fqdn", replicas_fqdn)
74
- if shard_count and not isinstance(shard_count, int):
75
- raise TypeError("Expected argument 'shard_count' to be a int")
76
- pulumi.set(__self__, "shard_count", shard_count)
77
71
  if software_version and not isinstance(software_version, str):
78
72
  raise TypeError("Expected argument 'software_version' to be a str")
79
73
  pulumi.set(__self__, "software_version", software_version)
@@ -93,19 +87,11 @@ class GetRedisClusterResult:
93
87
  raise TypeError("Expected argument 'time_updated' to be a str")
94
88
  pulumi.set(__self__, "time_updated", time_updated)
95
89
 
96
- @property
97
- @pulumi.getter(name="clusterMode")
98
- def cluster_mode(self) -> str:
99
- """
100
- Specifies whether the cluster is sharded or non-sharded.
101
- """
102
- return pulumi.get(self, "cluster_mode")
103
-
104
90
  @property
105
91
  @pulumi.getter(name="compartmentId")
106
92
  def compartment_id(self) -> str:
107
93
  """
108
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the cluster.
94
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the Redis cluster.
109
95
  """
110
96
  return pulumi.get(self, "compartment_id")
111
97
 
@@ -121,7 +107,7 @@ class GetRedisClusterResult:
121
107
  @pulumi.getter(name="displayName")
122
108
  def display_name(self) -> str:
123
109
  """
124
- A user-friendly name of a cluster node.
110
+ A user-friendly name of a Redis cluster node.
125
111
  """
126
112
  return pulumi.get(self, "display_name")
127
113
 
@@ -137,7 +123,7 @@ class GetRedisClusterResult:
137
123
  @pulumi.getter
138
124
  def id(self) -> str:
139
125
  """
140
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
126
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
141
127
  """
142
128
  return pulumi.get(self, "id")
143
129
 
@@ -153,7 +139,7 @@ class GetRedisClusterResult:
153
139
  @pulumi.getter(name="nodeCollections")
154
140
  def node_collections(self) -> Sequence['outputs.GetRedisClusterNodeCollectionResult']:
155
141
  """
156
- The collection of cluster nodes.
142
+ The collection of Redis cluster nodes.
157
143
  """
158
144
  return pulumi.get(self, "node_collections")
159
145
 
@@ -161,7 +147,7 @@ class GetRedisClusterResult:
161
147
  @pulumi.getter(name="nodeCount")
162
148
  def node_count(self) -> int:
163
149
  """
164
- The number of nodes per shard in the cluster when clusterMode is SHARDED. This is the total number of nodes when clusterMode is NONSHARDED.
150
+ The number of nodes in the Redis cluster.
165
151
  """
166
152
  return pulumi.get(self, "node_count")
167
153
 
@@ -169,7 +155,7 @@ class GetRedisClusterResult:
169
155
  @pulumi.getter(name="nodeMemoryInGbs")
170
156
  def node_memory_in_gbs(self) -> float:
171
157
  """
172
- The amount of memory allocated to the cluster's nodes, in gigabytes.
158
+ The amount of memory allocated to the Redis cluster's nodes, in gigabytes.
173
159
  """
174
160
  return pulumi.get(self, "node_memory_in_gbs")
175
161
 
@@ -177,7 +163,7 @@ class GetRedisClusterResult:
177
163
  @pulumi.getter(name="nsgIds")
178
164
  def nsg_ids(self) -> Sequence[str]:
179
165
  """
180
- 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).
166
+ 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 Redis Clusters](https://docs.cloud.oracle.com/iaas/Content/redis/connecttorediscluster.htm#connecttorediscluster__networksecuritygroup).
181
167
  """
182
168
  return pulumi.get(self, "nsg_ids")
183
169
 
@@ -185,7 +171,7 @@ class GetRedisClusterResult:
185
171
  @pulumi.getter(name="primaryEndpointIpAddress")
186
172
  def primary_endpoint_ip_address(self) -> str:
187
173
  """
188
- The private IP address of the API endpoint for the cluster's primary node.
174
+ The private IP address of the API endpoint for the Redis cluster's primary node.
189
175
  """
190
176
  return pulumi.get(self, "primary_endpoint_ip_address")
191
177
 
@@ -193,7 +179,7 @@ class GetRedisClusterResult:
193
179
  @pulumi.getter(name="primaryFqdn")
194
180
  def primary_fqdn(self) -> str:
195
181
  """
196
- The fully qualified domain name (FQDN) of the API endpoint for the cluster's primary node.
182
+ The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node.
197
183
  """
198
184
  return pulumi.get(self, "primary_fqdn")
199
185
 
@@ -206,7 +192,7 @@ class GetRedisClusterResult:
206
192
  @pulumi.getter(name="replicasEndpointIpAddress")
207
193
  def replicas_endpoint_ip_address(self) -> str:
208
194
  """
209
- The private IP address of the API endpoint for the cluster's replica nodes.
195
+ The private IP address of the API endpoint for the Redis cluster's replica nodes.
210
196
  """
211
197
  return pulumi.get(self, "replicas_endpoint_ip_address")
212
198
 
@@ -214,23 +200,15 @@ class GetRedisClusterResult:
214
200
  @pulumi.getter(name="replicasFqdn")
215
201
  def replicas_fqdn(self) -> str:
216
202
  """
217
- The fully qualified domain name (FQDN) of the API endpoint for the cluster's replica nodes.
203
+ The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's replica nodes.
218
204
  """
219
205
  return pulumi.get(self, "replicas_fqdn")
220
206
 
221
- @property
222
- @pulumi.getter(name="shardCount")
223
- def shard_count(self) -> int:
224
- """
225
- The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
226
- """
227
- return pulumi.get(self, "shard_count")
228
-
229
207
  @property
230
208
  @pulumi.getter(name="softwareVersion")
231
209
  def software_version(self) -> str:
232
210
  """
233
- The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
211
+ The Redis version that the cluster is running.
234
212
  """
235
213
  return pulumi.get(self, "software_version")
236
214
 
@@ -238,7 +216,7 @@ class GetRedisClusterResult:
238
216
  @pulumi.getter
239
217
  def state(self) -> str:
240
218
  """
241
- The current state of the cluster.
219
+ The current state of the Redis cluster.
242
220
  """
243
221
  return pulumi.get(self, "state")
244
222
 
@@ -246,7 +224,7 @@ class GetRedisClusterResult:
246
224
  @pulumi.getter(name="subnetId")
247
225
  def subnet_id(self) -> str:
248
226
  """
249
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster's subnet.
227
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster's subnet.
250
228
  """
251
229
  return pulumi.get(self, "subnet_id")
252
230
 
@@ -262,7 +240,7 @@ class GetRedisClusterResult:
262
240
  @pulumi.getter(name="timeCreated")
263
241
  def time_created(self) -> str:
264
242
  """
265
- The date and time the cluster was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
243
+ The date and time the Redis cluster was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
266
244
  """
267
245
  return pulumi.get(self, "time_created")
268
246
 
@@ -270,7 +248,7 @@ class GetRedisClusterResult:
270
248
  @pulumi.getter(name="timeUpdated")
271
249
  def time_updated(self) -> str:
272
250
  """
273
- The date and time the cluster was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
251
+ The date and time the Redis cluster was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
274
252
  """
275
253
  return pulumi.get(self, "time_updated")
276
254
 
@@ -281,7 +259,6 @@ class AwaitableGetRedisClusterResult(GetRedisClusterResult):
281
259
  if False:
282
260
  yield self
283
261
  return GetRedisClusterResult(
284
- cluster_mode=self.cluster_mode,
285
262
  compartment_id=self.compartment_id,
286
263
  defined_tags=self.defined_tags,
287
264
  display_name=self.display_name,
@@ -297,7 +274,6 @@ class AwaitableGetRedisClusterResult(GetRedisClusterResult):
297
274
  redis_cluster_id=self.redis_cluster_id,
298
275
  replicas_endpoint_ip_address=self.replicas_endpoint_ip_address,
299
276
  replicas_fqdn=self.replicas_fqdn,
300
- shard_count=self.shard_count,
301
277
  software_version=self.software_version,
302
278
  state=self.state,
303
279
  subnet_id=self.subnet_id,
@@ -311,7 +287,7 @@ def get_redis_cluster(redis_cluster_id: Optional[str] = None,
311
287
  """
312
288
  This data source provides details about a specific Redis Cluster resource in Oracle Cloud Infrastructure Redis service.
313
289
 
314
- Retrieves the specified Oracle Cloud Infrastructure Cache cluster. A cluster is a memory-based storage solution. For more information, see [OCI Cache](https://docs.cloud.oracle.com/iaas/Content/ocicache/home.htm).
290
+ Retrieves the specified Redis cluster. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](https://docs.cloud.oracle.com/iaas/Content/redis/home.htm).
315
291
 
316
292
  ## Example Usage
317
293
 
@@ -323,7 +299,7 @@ def get_redis_cluster(redis_cluster_id: Optional[str] = None,
323
299
  ```
324
300
 
325
301
 
326
- :param str redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
302
+ :param str redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
327
303
  """
328
304
  __args__ = dict()
329
305
  __args__['redisClusterId'] = redis_cluster_id
@@ -331,7 +307,6 @@ def get_redis_cluster(redis_cluster_id: Optional[str] = None,
331
307
  __ret__ = pulumi.runtime.invoke('oci:Redis/getRedisCluster:getRedisCluster', __args__, opts=opts, typ=GetRedisClusterResult).value
332
308
 
333
309
  return AwaitableGetRedisClusterResult(
334
- cluster_mode=pulumi.get(__ret__, 'cluster_mode'),
335
310
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
336
311
  defined_tags=pulumi.get(__ret__, 'defined_tags'),
337
312
  display_name=pulumi.get(__ret__, 'display_name'),
@@ -347,7 +322,6 @@ def get_redis_cluster(redis_cluster_id: Optional[str] = None,
347
322
  redis_cluster_id=pulumi.get(__ret__, 'redis_cluster_id'),
348
323
  replicas_endpoint_ip_address=pulumi.get(__ret__, 'replicas_endpoint_ip_address'),
349
324
  replicas_fqdn=pulumi.get(__ret__, 'replicas_fqdn'),
350
- shard_count=pulumi.get(__ret__, 'shard_count'),
351
325
  software_version=pulumi.get(__ret__, 'software_version'),
352
326
  state=pulumi.get(__ret__, 'state'),
353
327
  subnet_id=pulumi.get(__ret__, 'subnet_id'),
@@ -362,7 +336,7 @@ def get_redis_cluster_output(redis_cluster_id: Optional[pulumi.Input[str]] = Non
362
336
  """
363
337
  This data source provides details about a specific Redis Cluster resource in Oracle Cloud Infrastructure Redis service.
364
338
 
365
- Retrieves the specified Oracle Cloud Infrastructure Cache cluster. A cluster is a memory-based storage solution. For more information, see [OCI Cache](https://docs.cloud.oracle.com/iaas/Content/ocicache/home.htm).
339
+ Retrieves the specified Redis cluster. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](https://docs.cloud.oracle.com/iaas/Content/redis/home.htm).
366
340
 
367
341
  ## Example Usage
368
342
 
@@ -374,6 +348,6 @@ def get_redis_cluster_output(redis_cluster_id: Optional[pulumi.Input[str]] = Non
374
348
  ```
375
349
 
376
350
 
377
- :param str redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
351
+ :param str redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
378
352
  """
379
353
  ...
@@ -47,7 +47,7 @@ class GetRedisClustersResult:
47
47
  @pulumi.getter(name="compartmentId")
48
48
  def compartment_id(self) -> Optional[str]:
49
49
  """
50
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the cluster.
50
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the Redis cluster.
51
51
  """
52
52
  return pulumi.get(self, "compartment_id")
53
53
 
@@ -55,7 +55,7 @@ class GetRedisClustersResult:
55
55
  @pulumi.getter(name="displayName")
56
56
  def display_name(self) -> Optional[str]:
57
57
  """
58
- A user-friendly name of a cluster node.
58
+ A user-friendly name of a Redis cluster node.
59
59
  """
60
60
  return pulumi.get(self, "display_name")
61
61
 
@@ -68,7 +68,7 @@ class GetRedisClustersResult:
68
68
  @pulumi.getter
69
69
  def id(self) -> Optional[str]:
70
70
  """
71
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
71
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
72
72
  """
73
73
  return pulumi.get(self, "id")
74
74
 
@@ -84,7 +84,7 @@ class GetRedisClustersResult:
84
84
  @pulumi.getter
85
85
  def state(self) -> Optional[str]:
86
86
  """
87
- The current state of the cluster.
87
+ The current state of the Redis cluster.
88
88
  """
89
89
  return pulumi.get(self, "state")
90
90
 
@@ -112,7 +112,7 @@ def get_redis_clusters(compartment_id: Optional[str] = None,
112
112
  """
113
113
  This data source provides the list of Redis Clusters in Oracle Cloud Infrastructure Redis service.
114
114
 
115
- Lists the Oracle Cloud Infrastructure Cache clusters in the specified compartment. A cluster is a memory-based storage solution. For more information, see [OCI Cache](https://docs.cloud.oracle.com/iaas/Content/ocicache/home.htm).
115
+ Lists the Redis clusters in the specified compartment. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](https://docs.cloud.oracle.com/iaas/Content/redis/home.htm).
116
116
 
117
117
  ## Example Usage
118
118
 
@@ -129,7 +129,7 @@ def get_redis_clusters(compartment_id: Optional[str] = None,
129
129
 
130
130
  :param str compartment_id: The ID of the compartment in which to list resources.
131
131
  :param str display_name: A filter to return only resources that match the entire display name given.
132
- :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
132
+ :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
133
133
  :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
134
134
  """
135
135
  __args__ = dict()
@@ -160,7 +160,7 @@ def get_redis_clusters_output(compartment_id: Optional[pulumi.Input[Optional[str
160
160
  """
161
161
  This data source provides the list of Redis Clusters in Oracle Cloud Infrastructure Redis service.
162
162
 
163
- Lists the Oracle Cloud Infrastructure Cache clusters in the specified compartment. A cluster is a memory-based storage solution. For more information, see [OCI Cache](https://docs.cloud.oracle.com/iaas/Content/ocicache/home.htm).
163
+ Lists the Redis clusters in the specified compartment. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](https://docs.cloud.oracle.com/iaas/Content/redis/home.htm).
164
164
 
165
165
  ## Example Usage
166
166
 
@@ -177,7 +177,7 @@ def get_redis_clusters_output(compartment_id: Optional[pulumi.Input[Optional[str
177
177
 
178
178
  :param str compartment_id: The ID of the compartment in which to list resources.
179
179
  :param str display_name: A filter to return only resources that match the entire display name given.
180
- :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
180
+ :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
181
181
  :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
182
182
  """
183
183
  ...