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.
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +25 -199
- pulumi_oci/analytics/get_analytics_instance.py +2 -51
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +12 -52
- pulumi_oci/database/get_maintenance_run.py +1 -14
- pulumi_oci/database/maintenance_run.py +7 -56
- pulumi_oci/database/outputs.py +0 -33
- pulumi_oci/disasterrecovery/_inputs.py +2 -66
- pulumi_oci/disasterrecovery/dr_protection_group.py +0 -8
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +0 -24
- pulumi_oci/disasterrecovery/outputs.py +10 -150
- pulumi_oci/integration/get_integration_instance.py +2 -25
- pulumi_oci/integration/integration_instance.py +0 -88
- pulumi_oci/integration/outputs.py +6 -24
- pulumi_oci/mysql/_inputs.py +2 -202
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +2 -15
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +0 -55
- pulumi_oci/mysql/outputs.py +10 -503
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +0 -1
- pulumi_oci/redis/_inputs.py +0 -40
- pulumi_oci/redis/get_redis_cluster.py +21 -47
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +28 -160
- pulumi_oci/redis/redis_cluster.py +79 -177
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/RECORD +32 -33
- pulumi_oci/redis/get_redis_cluster_nodes.py +0 -156
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/top_level.txt +0 -0
pulumi_oci/redis/outputs.py
CHANGED
@@ -15,9 +15,6 @@ __all__ = [
|
|
15
15
|
'RedisClusterNodeCollectionItem',
|
16
16
|
'GetRedisClusterNodeCollectionResult',
|
17
17
|
'GetRedisClusterNodeCollectionItemResult',
|
18
|
-
'GetRedisClusterNodesFilterResult',
|
19
|
-
'GetRedisClusterNodesRedisNodeCollectionResult',
|
20
|
-
'GetRedisClusterNodesRedisNodeCollectionItemResult',
|
21
18
|
'GetRedisClustersFilterResult',
|
22
19
|
'GetRedisClustersRedisClusterCollectionResult',
|
23
20
|
'GetRedisClustersRedisClusterCollectionItemResult',
|
@@ -133,7 +130,7 @@ class GetRedisClusterNodeCollectionItemResult(dict):
|
|
133
130
|
private_endpoint_fqdn: str,
|
134
131
|
private_endpoint_ip_address: str):
|
135
132
|
"""
|
136
|
-
:param str display_name: A user-friendly name of a cluster node.
|
133
|
+
:param str display_name: A user-friendly name of a Redis cluster node.
|
137
134
|
:param str private_endpoint_fqdn: The fully qualified domain name (FQDN) of the API endpoint to access a specific node.
|
138
135
|
:param str private_endpoint_ip_address: The private IP address of the API endpoint to access a specific node.
|
139
136
|
"""
|
@@ -145,7 +142,7 @@ class GetRedisClusterNodeCollectionItemResult(dict):
|
|
145
142
|
@pulumi.getter(name="displayName")
|
146
143
|
def display_name(self) -> str:
|
147
144
|
"""
|
148
|
-
A user-friendly name of a cluster node.
|
145
|
+
A user-friendly name of a Redis cluster node.
|
149
146
|
"""
|
150
147
|
return pulumi.get(self, "display_name")
|
151
148
|
|
@@ -166,113 +163,6 @@ class GetRedisClusterNodeCollectionItemResult(dict):
|
|
166
163
|
return pulumi.get(self, "private_endpoint_ip_address")
|
167
164
|
|
168
165
|
|
169
|
-
@pulumi.output_type
|
170
|
-
class GetRedisClusterNodesFilterResult(dict):
|
171
|
-
def __init__(__self__, *,
|
172
|
-
name: str,
|
173
|
-
values: Sequence[str],
|
174
|
-
regex: Optional[bool] = None):
|
175
|
-
pulumi.set(__self__, "name", name)
|
176
|
-
pulumi.set(__self__, "values", values)
|
177
|
-
if regex is not None:
|
178
|
-
pulumi.set(__self__, "regex", regex)
|
179
|
-
|
180
|
-
@property
|
181
|
-
@pulumi.getter
|
182
|
-
def name(self) -> str:
|
183
|
-
return pulumi.get(self, "name")
|
184
|
-
|
185
|
-
@property
|
186
|
-
@pulumi.getter
|
187
|
-
def values(self) -> Sequence[str]:
|
188
|
-
return pulumi.get(self, "values")
|
189
|
-
|
190
|
-
@property
|
191
|
-
@pulumi.getter
|
192
|
-
def regex(self) -> Optional[bool]:
|
193
|
-
return pulumi.get(self, "regex")
|
194
|
-
|
195
|
-
|
196
|
-
@pulumi.output_type
|
197
|
-
class GetRedisClusterNodesRedisNodeCollectionResult(dict):
|
198
|
-
def __init__(__self__, *,
|
199
|
-
items: Sequence['outputs.GetRedisClusterNodesRedisNodeCollectionItemResult']):
|
200
|
-
"""
|
201
|
-
:param Sequence['GetRedisClusterNodesRedisNodeCollectionItemArgs'] items: The list of nodes in a cluster.
|
202
|
-
"""
|
203
|
-
pulumi.set(__self__, "items", items)
|
204
|
-
|
205
|
-
@property
|
206
|
-
@pulumi.getter
|
207
|
-
def items(self) -> Sequence['outputs.GetRedisClusterNodesRedisNodeCollectionItemResult']:
|
208
|
-
"""
|
209
|
-
The list of nodes in a cluster.
|
210
|
-
"""
|
211
|
-
return pulumi.get(self, "items")
|
212
|
-
|
213
|
-
|
214
|
-
@pulumi.output_type
|
215
|
-
class GetRedisClusterNodesRedisNodeCollectionItemResult(dict):
|
216
|
-
def __init__(__self__, *,
|
217
|
-
display_name: str,
|
218
|
-
private_endpoint_fqdn: str,
|
219
|
-
private_endpoint_ip_address: str,
|
220
|
-
redis_cluster_id: str,
|
221
|
-
shard_number: int):
|
222
|
-
"""
|
223
|
-
:param str display_name: A filter to return only resources that match the entire display name given.
|
224
|
-
:param str private_endpoint_fqdn: The fully qualified domain name (FQDN) of the API endpoint to access a specific node.
|
225
|
-
:param str private_endpoint_ip_address: The private IP address of the API endpoint to access a specific node.
|
226
|
-
:param str redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
227
|
-
:param int shard_number: The shard number to which the node belongs to.
|
228
|
-
"""
|
229
|
-
pulumi.set(__self__, "display_name", display_name)
|
230
|
-
pulumi.set(__self__, "private_endpoint_fqdn", private_endpoint_fqdn)
|
231
|
-
pulumi.set(__self__, "private_endpoint_ip_address", private_endpoint_ip_address)
|
232
|
-
pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
|
233
|
-
pulumi.set(__self__, "shard_number", shard_number)
|
234
|
-
|
235
|
-
@property
|
236
|
-
@pulumi.getter(name="displayName")
|
237
|
-
def display_name(self) -> str:
|
238
|
-
"""
|
239
|
-
A filter to return only resources that match the entire display name given.
|
240
|
-
"""
|
241
|
-
return pulumi.get(self, "display_name")
|
242
|
-
|
243
|
-
@property
|
244
|
-
@pulumi.getter(name="privateEndpointFqdn")
|
245
|
-
def private_endpoint_fqdn(self) -> str:
|
246
|
-
"""
|
247
|
-
The fully qualified domain name (FQDN) of the API endpoint to access a specific node.
|
248
|
-
"""
|
249
|
-
return pulumi.get(self, "private_endpoint_fqdn")
|
250
|
-
|
251
|
-
@property
|
252
|
-
@pulumi.getter(name="privateEndpointIpAddress")
|
253
|
-
def private_endpoint_ip_address(self) -> str:
|
254
|
-
"""
|
255
|
-
The private IP address of the API endpoint to access a specific node.
|
256
|
-
"""
|
257
|
-
return pulumi.get(self, "private_endpoint_ip_address")
|
258
|
-
|
259
|
-
@property
|
260
|
-
@pulumi.getter(name="redisClusterId")
|
261
|
-
def redis_cluster_id(self) -> str:
|
262
|
-
"""
|
263
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
264
|
-
"""
|
265
|
-
return pulumi.get(self, "redis_cluster_id")
|
266
|
-
|
267
|
-
@property
|
268
|
-
@pulumi.getter(name="shardNumber")
|
269
|
-
def shard_number(self) -> int:
|
270
|
-
"""
|
271
|
-
The shard number to which the node belongs to.
|
272
|
-
"""
|
273
|
-
return pulumi.get(self, "shard_number")
|
274
|
-
|
275
|
-
|
276
166
|
@pulumi.output_type
|
277
167
|
class GetRedisClustersFilterResult(dict):
|
278
168
|
def __init__(__self__, *,
|
@@ -321,7 +211,6 @@ class GetRedisClustersRedisClusterCollectionResult(dict):
|
|
321
211
|
@pulumi.output_type
|
322
212
|
class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
323
213
|
def __init__(__self__, *,
|
324
|
-
cluster_mode: str,
|
325
214
|
compartment_id: str,
|
326
215
|
defined_tags: Mapping[str, str],
|
327
216
|
display_name: str,
|
@@ -336,7 +225,6 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
336
225
|
primary_fqdn: str,
|
337
226
|
replicas_endpoint_ip_address: str,
|
338
227
|
replicas_fqdn: str,
|
339
|
-
shard_count: int,
|
340
228
|
software_version: str,
|
341
229
|
state: str,
|
342
230
|
subnet_id: str,
|
@@ -344,30 +232,27 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
344
232
|
time_created: str,
|
345
233
|
time_updated: str):
|
346
234
|
"""
|
347
|
-
:param str cluster_mode: Specifies whether the cluster is sharded or non-sharded.
|
348
235
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
349
236
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
350
237
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
351
238
|
:param Mapping[str, 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"}`
|
352
|
-
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
239
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
|
353
240
|
:param str lifecycle_details: A message describing the current state in more detail. For example, the message might provide actionable information for a resource in `FAILED` state.
|
354
|
-
:param Sequence['GetRedisClustersRedisClusterCollectionItemNodeCollectionArgs'] node_collections: The collection of
|
355
|
-
:param int node_count: The number of nodes
|
356
|
-
:param float node_memory_in_gbs: The amount of memory allocated to the cluster's nodes, in gigabytes.
|
357
|
-
:param Sequence[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/
|
358
|
-
:param str primary_endpoint_ip_address: The private IP address of the API endpoint for the cluster's primary node.
|
359
|
-
:param str primary_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the cluster's primary node.
|
360
|
-
:param str replicas_endpoint_ip_address: The private IP address of the API endpoint for the cluster's replica nodes.
|
361
|
-
:param str replicas_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the cluster's replica nodes.
|
362
|
-
:param
|
363
|
-
:param str software_version: The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
|
241
|
+
:param Sequence['GetRedisClustersRedisClusterCollectionItemNodeCollectionArgs'] node_collections: The collection of Redis cluster nodes.
|
242
|
+
:param int node_count: The number of nodes in the Redis cluster.
|
243
|
+
:param float node_memory_in_gbs: The amount of memory allocated to the Redis cluster's nodes, in gigabytes.
|
244
|
+
:param Sequence[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 Redis Clusters](https://docs.cloud.oracle.com/iaas/Content/redis/connecttorediscluster.htm#connecttorediscluster__networksecuritygroup).
|
245
|
+
:param str primary_endpoint_ip_address: The private IP address of the API endpoint for the Redis cluster's primary node.
|
246
|
+
:param str primary_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node.
|
247
|
+
:param str replicas_endpoint_ip_address: The private IP address of the API endpoint for the Redis cluster's replica nodes.
|
248
|
+
:param str replicas_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's replica nodes.
|
249
|
+
:param str software_version: The Redis version that the cluster is running.
|
364
250
|
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
365
|
-
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster's subnet.
|
251
|
+
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster's subnet.
|
366
252
|
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
367
|
-
:param str time_created: The date and time the cluster was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
368
|
-
:param str time_updated: The date and time the cluster was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
253
|
+
:param str time_created: The date and time the Redis cluster was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
254
|
+
:param str time_updated: The date and time the Redis cluster was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
369
255
|
"""
|
370
|
-
pulumi.set(__self__, "cluster_mode", cluster_mode)
|
371
256
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
372
257
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
373
258
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -382,7 +267,6 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
382
267
|
pulumi.set(__self__, "primary_fqdn", primary_fqdn)
|
383
268
|
pulumi.set(__self__, "replicas_endpoint_ip_address", replicas_endpoint_ip_address)
|
384
269
|
pulumi.set(__self__, "replicas_fqdn", replicas_fqdn)
|
385
|
-
pulumi.set(__self__, "shard_count", shard_count)
|
386
270
|
pulumi.set(__self__, "software_version", software_version)
|
387
271
|
pulumi.set(__self__, "state", state)
|
388
272
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -390,14 +274,6 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
390
274
|
pulumi.set(__self__, "time_created", time_created)
|
391
275
|
pulumi.set(__self__, "time_updated", time_updated)
|
392
276
|
|
393
|
-
@property
|
394
|
-
@pulumi.getter(name="clusterMode")
|
395
|
-
def cluster_mode(self) -> str:
|
396
|
-
"""
|
397
|
-
Specifies whether the cluster is sharded or non-sharded.
|
398
|
-
"""
|
399
|
-
return pulumi.get(self, "cluster_mode")
|
400
|
-
|
401
277
|
@property
|
402
278
|
@pulumi.getter(name="compartmentId")
|
403
279
|
def compartment_id(self) -> str:
|
@@ -434,7 +310,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
434
310
|
@pulumi.getter
|
435
311
|
def id(self) -> str:
|
436
312
|
"""
|
437
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
313
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
|
438
314
|
"""
|
439
315
|
return pulumi.get(self, "id")
|
440
316
|
|
@@ -450,7 +326,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
450
326
|
@pulumi.getter(name="nodeCollections")
|
451
327
|
def node_collections(self) -> Sequence['outputs.GetRedisClustersRedisClusterCollectionItemNodeCollectionResult']:
|
452
328
|
"""
|
453
|
-
The collection of
|
329
|
+
The collection of Redis cluster nodes.
|
454
330
|
"""
|
455
331
|
return pulumi.get(self, "node_collections")
|
456
332
|
|
@@ -458,7 +334,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
458
334
|
@pulumi.getter(name="nodeCount")
|
459
335
|
def node_count(self) -> int:
|
460
336
|
"""
|
461
|
-
The number of nodes
|
337
|
+
The number of nodes in the Redis cluster.
|
462
338
|
"""
|
463
339
|
return pulumi.get(self, "node_count")
|
464
340
|
|
@@ -466,7 +342,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
466
342
|
@pulumi.getter(name="nodeMemoryInGbs")
|
467
343
|
def node_memory_in_gbs(self) -> float:
|
468
344
|
"""
|
469
|
-
The amount of memory allocated to the cluster's nodes, in gigabytes.
|
345
|
+
The amount of memory allocated to the Redis cluster's nodes, in gigabytes.
|
470
346
|
"""
|
471
347
|
return pulumi.get(self, "node_memory_in_gbs")
|
472
348
|
|
@@ -474,7 +350,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
474
350
|
@pulumi.getter(name="nsgIds")
|
475
351
|
def nsg_ids(self) -> Sequence[str]:
|
476
352
|
"""
|
477
|
-
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/
|
353
|
+
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).
|
478
354
|
"""
|
479
355
|
return pulumi.get(self, "nsg_ids")
|
480
356
|
|
@@ -482,7 +358,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
482
358
|
@pulumi.getter(name="primaryEndpointIpAddress")
|
483
359
|
def primary_endpoint_ip_address(self) -> str:
|
484
360
|
"""
|
485
|
-
The private IP address of the API endpoint for the cluster's primary node.
|
361
|
+
The private IP address of the API endpoint for the Redis cluster's primary node.
|
486
362
|
"""
|
487
363
|
return pulumi.get(self, "primary_endpoint_ip_address")
|
488
364
|
|
@@ -490,7 +366,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
490
366
|
@pulumi.getter(name="primaryFqdn")
|
491
367
|
def primary_fqdn(self) -> str:
|
492
368
|
"""
|
493
|
-
The fully qualified domain name (FQDN) of the API endpoint for the cluster's primary node.
|
369
|
+
The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node.
|
494
370
|
"""
|
495
371
|
return pulumi.get(self, "primary_fqdn")
|
496
372
|
|
@@ -498,7 +374,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
498
374
|
@pulumi.getter(name="replicasEndpointIpAddress")
|
499
375
|
def replicas_endpoint_ip_address(self) -> str:
|
500
376
|
"""
|
501
|
-
The private IP address of the API endpoint for the cluster's replica nodes.
|
377
|
+
The private IP address of the API endpoint for the Redis cluster's replica nodes.
|
502
378
|
"""
|
503
379
|
return pulumi.get(self, "replicas_endpoint_ip_address")
|
504
380
|
|
@@ -506,23 +382,15 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
506
382
|
@pulumi.getter(name="replicasFqdn")
|
507
383
|
def replicas_fqdn(self) -> str:
|
508
384
|
"""
|
509
|
-
The fully qualified domain name (FQDN) of the API endpoint for the cluster's replica nodes.
|
385
|
+
The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's replica nodes.
|
510
386
|
"""
|
511
387
|
return pulumi.get(self, "replicas_fqdn")
|
512
388
|
|
513
|
-
@property
|
514
|
-
@pulumi.getter(name="shardCount")
|
515
|
-
def shard_count(self) -> int:
|
516
|
-
"""
|
517
|
-
The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
|
518
|
-
"""
|
519
|
-
return pulumi.get(self, "shard_count")
|
520
|
-
|
521
389
|
@property
|
522
390
|
@pulumi.getter(name="softwareVersion")
|
523
391
|
def software_version(self) -> str:
|
524
392
|
"""
|
525
|
-
The
|
393
|
+
The Redis version that the cluster is running.
|
526
394
|
"""
|
527
395
|
return pulumi.get(self, "software_version")
|
528
396
|
|
@@ -538,7 +406,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
538
406
|
@pulumi.getter(name="subnetId")
|
539
407
|
def subnet_id(self) -> str:
|
540
408
|
"""
|
541
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster's subnet.
|
409
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster's subnet.
|
542
410
|
"""
|
543
411
|
return pulumi.get(self, "subnet_id")
|
544
412
|
|
@@ -554,7 +422,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
554
422
|
@pulumi.getter(name="timeCreated")
|
555
423
|
def time_created(self) -> str:
|
556
424
|
"""
|
557
|
-
The date and time the cluster was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
425
|
+
The date and time the Redis cluster was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
558
426
|
"""
|
559
427
|
return pulumi.get(self, "time_created")
|
560
428
|
|
@@ -562,7 +430,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
562
430
|
@pulumi.getter(name="timeUpdated")
|
563
431
|
def time_updated(self) -> str:
|
564
432
|
"""
|
565
|
-
The date and time the cluster was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
433
|
+
The date and time the Redis cluster was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
566
434
|
"""
|
567
435
|
return pulumi.get(self, "time_updated")
|
568
436
|
|