pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.9.0__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/__init__.py +86 -38
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +196 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +225 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +27 -1
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +108 -0
- pulumi_oci/mysql/outputs.py +569 -8
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +127 -108
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -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
|
50
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the 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
|
58
|
+
A user-friendly name of a 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
|
71
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the 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
|
87
|
+
The current state of the 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
|
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).
|
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
|
132
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the 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
|
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).
|
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
|
180
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
181
181
|
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
182
182
|
"""
|
183
183
|
...
|
pulumi_oci/redis/outputs.py
CHANGED
@@ -15,6 +15,9 @@ __all__ = [
|
|
15
15
|
'RedisClusterNodeCollectionItem',
|
16
16
|
'GetRedisClusterNodeCollectionResult',
|
17
17
|
'GetRedisClusterNodeCollectionItemResult',
|
18
|
+
'GetRedisClusterNodesFilterResult',
|
19
|
+
'GetRedisClusterNodesRedisNodeCollectionResult',
|
20
|
+
'GetRedisClusterNodesRedisNodeCollectionItemResult',
|
18
21
|
'GetRedisClustersFilterResult',
|
19
22
|
'GetRedisClustersRedisClusterCollectionResult',
|
20
23
|
'GetRedisClustersRedisClusterCollectionItemResult',
|
@@ -130,7 +133,7 @@ class GetRedisClusterNodeCollectionItemResult(dict):
|
|
130
133
|
private_endpoint_fqdn: str,
|
131
134
|
private_endpoint_ip_address: str):
|
132
135
|
"""
|
133
|
-
:param str display_name: A user-friendly name of a
|
136
|
+
:param str display_name: A user-friendly name of a cluster node.
|
134
137
|
:param str private_endpoint_fqdn: The fully qualified domain name (FQDN) of the API endpoint to access a specific node.
|
135
138
|
:param str private_endpoint_ip_address: The private IP address of the API endpoint to access a specific node.
|
136
139
|
"""
|
@@ -142,7 +145,7 @@ class GetRedisClusterNodeCollectionItemResult(dict):
|
|
142
145
|
@pulumi.getter(name="displayName")
|
143
146
|
def display_name(self) -> str:
|
144
147
|
"""
|
145
|
-
A user-friendly name of a
|
148
|
+
A user-friendly name of a cluster node.
|
146
149
|
"""
|
147
150
|
return pulumi.get(self, "display_name")
|
148
151
|
|
@@ -163,6 +166,113 @@ class GetRedisClusterNodeCollectionItemResult(dict):
|
|
163
166
|
return pulumi.get(self, "private_endpoint_ip_address")
|
164
167
|
|
165
168
|
|
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
|
+
|
166
276
|
@pulumi.output_type
|
167
277
|
class GetRedisClustersFilterResult(dict):
|
168
278
|
def __init__(__self__, *,
|
@@ -211,6 +321,7 @@ class GetRedisClustersRedisClusterCollectionResult(dict):
|
|
211
321
|
@pulumi.output_type
|
212
322
|
class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
213
323
|
def __init__(__self__, *,
|
324
|
+
cluster_mode: str,
|
214
325
|
compartment_id: str,
|
215
326
|
defined_tags: Mapping[str, str],
|
216
327
|
display_name: str,
|
@@ -225,6 +336,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
225
336
|
primary_fqdn: str,
|
226
337
|
replicas_endpoint_ip_address: str,
|
227
338
|
replicas_fqdn: str,
|
339
|
+
shard_count: int,
|
228
340
|
software_version: str,
|
229
341
|
state: str,
|
230
342
|
subnet_id: str,
|
@@ -232,27 +344,30 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
232
344
|
time_created: str,
|
233
345
|
time_updated: str):
|
234
346
|
"""
|
347
|
+
:param str cluster_mode: Specifies whether the cluster is sharded or non-sharded.
|
235
348
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
236
349
|
: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"}`
|
237
350
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
238
351
|
: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"}`
|
239
|
-
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the
|
352
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
240
353
|
: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.
|
241
|
-
:param Sequence['GetRedisClustersRedisClusterCollectionItemNodeCollectionArgs'] node_collections: The collection of
|
242
|
-
:param int node_count: The number of nodes in the
|
243
|
-
:param float node_memory_in_gbs: The amount of memory allocated to the
|
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
|
245
|
-
:param str primary_endpoint_ip_address: The private IP address of the API endpoint for the
|
246
|
-
:param str primary_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the
|
247
|
-
:param str replicas_endpoint_ip_address: The private IP address of the API endpoint for the
|
248
|
-
:param str replicas_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the
|
249
|
-
:param
|
354
|
+
:param Sequence['GetRedisClustersRedisClusterCollectionItemNodeCollectionArgs'] node_collections: The collection of cluster nodes.
|
355
|
+
:param 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.
|
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/ocicache/connecttocluster.htm#connecttocluster__networksecuritygroup).
|
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 int shard_count: The number of shards in a sharded cluster. Only applicable when clusterMode is SHARDED.
|
363
|
+
:param str software_version: The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
|
250
364
|
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
251
|
-
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the
|
365
|
+
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster's subnet.
|
252
366
|
: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"}`
|
253
|
-
:param str time_created: The date and time the
|
254
|
-
:param str time_updated: The date and time the
|
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.
|
255
369
|
"""
|
370
|
+
pulumi.set(__self__, "cluster_mode", cluster_mode)
|
256
371
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
257
372
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
258
373
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -267,6 +382,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
267
382
|
pulumi.set(__self__, "primary_fqdn", primary_fqdn)
|
268
383
|
pulumi.set(__self__, "replicas_endpoint_ip_address", replicas_endpoint_ip_address)
|
269
384
|
pulumi.set(__self__, "replicas_fqdn", replicas_fqdn)
|
385
|
+
pulumi.set(__self__, "shard_count", shard_count)
|
270
386
|
pulumi.set(__self__, "software_version", software_version)
|
271
387
|
pulumi.set(__self__, "state", state)
|
272
388
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -274,6 +390,14 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
274
390
|
pulumi.set(__self__, "time_created", time_created)
|
275
391
|
pulumi.set(__self__, "time_updated", time_updated)
|
276
392
|
|
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
|
+
|
277
401
|
@property
|
278
402
|
@pulumi.getter(name="compartmentId")
|
279
403
|
def compartment_id(self) -> str:
|
@@ -310,7 +434,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
310
434
|
@pulumi.getter
|
311
435
|
def id(self) -> str:
|
312
436
|
"""
|
313
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the
|
437
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
314
438
|
"""
|
315
439
|
return pulumi.get(self, "id")
|
316
440
|
|
@@ -326,7 +450,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
326
450
|
@pulumi.getter(name="nodeCollections")
|
327
451
|
def node_collections(self) -> Sequence['outputs.GetRedisClustersRedisClusterCollectionItemNodeCollectionResult']:
|
328
452
|
"""
|
329
|
-
The collection of
|
453
|
+
The collection of cluster nodes.
|
330
454
|
"""
|
331
455
|
return pulumi.get(self, "node_collections")
|
332
456
|
|
@@ -334,7 +458,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
334
458
|
@pulumi.getter(name="nodeCount")
|
335
459
|
def node_count(self) -> int:
|
336
460
|
"""
|
337
|
-
The number of nodes in the
|
461
|
+
The number of nodes per shard in the cluster when clusterMode is SHARDED. This is the total number of nodes when clusterMode is NONSHARDED.
|
338
462
|
"""
|
339
463
|
return pulumi.get(self, "node_count")
|
340
464
|
|
@@ -342,7 +466,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
342
466
|
@pulumi.getter(name="nodeMemoryInGbs")
|
343
467
|
def node_memory_in_gbs(self) -> float:
|
344
468
|
"""
|
345
|
-
The amount of memory allocated to the
|
469
|
+
The amount of memory allocated to the cluster's nodes, in gigabytes.
|
346
470
|
"""
|
347
471
|
return pulumi.get(self, "node_memory_in_gbs")
|
348
472
|
|
@@ -350,7 +474,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
350
474
|
@pulumi.getter(name="nsgIds")
|
351
475
|
def nsg_ids(self) -> Sequence[str]:
|
352
476
|
"""
|
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
|
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/ocicache/connecttocluster.htm#connecttocluster__networksecuritygroup).
|
354
478
|
"""
|
355
479
|
return pulumi.get(self, "nsg_ids")
|
356
480
|
|
@@ -358,7 +482,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
358
482
|
@pulumi.getter(name="primaryEndpointIpAddress")
|
359
483
|
def primary_endpoint_ip_address(self) -> str:
|
360
484
|
"""
|
361
|
-
The private IP address of the API endpoint for the
|
485
|
+
The private IP address of the API endpoint for the cluster's primary node.
|
362
486
|
"""
|
363
487
|
return pulumi.get(self, "primary_endpoint_ip_address")
|
364
488
|
|
@@ -366,7 +490,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
366
490
|
@pulumi.getter(name="primaryFqdn")
|
367
491
|
def primary_fqdn(self) -> str:
|
368
492
|
"""
|
369
|
-
The fully qualified domain name (FQDN) of the API endpoint for the
|
493
|
+
The fully qualified domain name (FQDN) of the API endpoint for the cluster's primary node.
|
370
494
|
"""
|
371
495
|
return pulumi.get(self, "primary_fqdn")
|
372
496
|
|
@@ -374,7 +498,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
374
498
|
@pulumi.getter(name="replicasEndpointIpAddress")
|
375
499
|
def replicas_endpoint_ip_address(self) -> str:
|
376
500
|
"""
|
377
|
-
The private IP address of the API endpoint for the
|
501
|
+
The private IP address of the API endpoint for the cluster's replica nodes.
|
378
502
|
"""
|
379
503
|
return pulumi.get(self, "replicas_endpoint_ip_address")
|
380
504
|
|
@@ -382,15 +506,23 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
382
506
|
@pulumi.getter(name="replicasFqdn")
|
383
507
|
def replicas_fqdn(self) -> str:
|
384
508
|
"""
|
385
|
-
The fully qualified domain name (FQDN) of the API endpoint for the
|
509
|
+
The fully qualified domain name (FQDN) of the API endpoint for the cluster's replica nodes.
|
386
510
|
"""
|
387
511
|
return pulumi.get(self, "replicas_fqdn")
|
388
512
|
|
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
|
+
|
389
521
|
@property
|
390
522
|
@pulumi.getter(name="softwareVersion")
|
391
523
|
def software_version(self) -> str:
|
392
524
|
"""
|
393
|
-
The
|
525
|
+
The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
|
394
526
|
"""
|
395
527
|
return pulumi.get(self, "software_version")
|
396
528
|
|
@@ -406,7 +538,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
406
538
|
@pulumi.getter(name="subnetId")
|
407
539
|
def subnet_id(self) -> str:
|
408
540
|
"""
|
409
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the
|
541
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster's subnet.
|
410
542
|
"""
|
411
543
|
return pulumi.get(self, "subnet_id")
|
412
544
|
|
@@ -422,7 +554,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
422
554
|
@pulumi.getter(name="timeCreated")
|
423
555
|
def time_created(self) -> str:
|
424
556
|
"""
|
425
|
-
The date and time the
|
557
|
+
The date and time the cluster was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
426
558
|
"""
|
427
559
|
return pulumi.get(self, "time_created")
|
428
560
|
|
@@ -430,7 +562,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
430
562
|
@pulumi.getter(name="timeUpdated")
|
431
563
|
def time_updated(self) -> str:
|
432
564
|
"""
|
433
|
-
The date and time the
|
565
|
+
The date and time the cluster was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
434
566
|
"""
|
435
567
|
return pulumi.get(self, "time_updated")
|
436
568
|
|