pulumi-oci 2.15.0a1730374112__py3-none-any.whl → 2.16.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 +19 -0
- pulumi_oci/cloudmigrations/target_asset.py +8 -8
- pulumi_oci/containerengine/cluster.py +8 -8
- pulumi_oci/containerengine/node_pool.py +4 -4
- pulumi_oci/containerengine/virtual_node_pool.py +4 -4
- pulumi_oci/core/cluster_network.py +4 -4
- pulumi_oci/core/instance_configuration.py +32 -32
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +105 -0
- pulumi_oci/database/cloud_vm_cluster.py +49 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +68 -7
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +16 -2
- pulumi_oci/database/outputs.py +97 -2
- pulumi_oci/dataflow/get_sql_endpoint.py +1 -15
- pulumi_oci/dataflow/outputs.py +0 -11
- pulumi_oci/dataflow/sql_endpoint.py +88 -85
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +348 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +746 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2114 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +822 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +2157 -0
- pulumi_oci/identity/__init__.py +2 -0
- pulumi_oci/identity/_inputs.py +55 -6
- pulumi_oci/identity/domains_condition.py +9 -2
- pulumi_oci/identity/domains_policy.py +9 -2
- pulumi_oci/identity/domains_rule.py +9 -2
- pulumi_oci/identity/get_domains_condition.py +2 -2
- pulumi_oci/identity/get_domains_conditions.py +2 -2
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consent.py +503 -0
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consents.py +338 -0
- pulumi_oci/identity/get_domains_policies.py +2 -2
- pulumi_oci/identity/get_domains_policy.py +2 -2
- pulumi_oci/identity/get_domains_rule.py +2 -2
- pulumi_oci/identity/get_domains_rules.py +2 -2
- pulumi_oci/identity/outputs.py +917 -4
- pulumi_oci/mysql/mysql_db_system.py +4 -4
- pulumi_oci/osmanagementhub/lifecycle_environment.py +8 -8
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.15.0a1730374112.dist-info → pulumi_oci-2.16.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.15.0a1730374112.dist-info → pulumi_oci-2.16.0.dist-info}/RECORD +52 -41
- {pulumi_oci-2.15.0a1730374112.dist-info → pulumi_oci-2.16.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.15.0a1730374112.dist-info → pulumi_oci-2.16.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1289 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'ShardedDatabaseCatalogDetailArgs',
|
19
|
+
'ShardedDatabaseCatalogDetailArgsDict',
|
20
|
+
'ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgs',
|
21
|
+
'ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgsDict',
|
22
|
+
'ShardedDatabaseConnectionStringArgs',
|
23
|
+
'ShardedDatabaseConnectionStringArgsDict',
|
24
|
+
'ShardedDatabaseGsmArgs',
|
25
|
+
'ShardedDatabaseGsmArgsDict',
|
26
|
+
'ShardedDatabasePatchOperationArgs',
|
27
|
+
'ShardedDatabasePatchOperationArgsDict',
|
28
|
+
'ShardedDatabaseShardDetailArgs',
|
29
|
+
'ShardedDatabaseShardDetailArgsDict',
|
30
|
+
'ShardedDatabaseShardDetailEncryptionKeyDetailsArgs',
|
31
|
+
'ShardedDatabaseShardDetailEncryptionKeyDetailsArgsDict',
|
32
|
+
'GetPrivateEndpointsFilterArgs',
|
33
|
+
'GetPrivateEndpointsFilterArgsDict',
|
34
|
+
'GetShardedDatabasesFilterArgs',
|
35
|
+
'GetShardedDatabasesFilterArgsDict',
|
36
|
+
]
|
37
|
+
|
38
|
+
MYPY = False
|
39
|
+
|
40
|
+
if not MYPY:
|
41
|
+
class ShardedDatabaseCatalogDetailArgsDict(TypedDict):
|
42
|
+
admin_password: pulumi.Input[str]
|
43
|
+
"""
|
44
|
+
Admin password for the catalog database.
|
45
|
+
"""
|
46
|
+
cloud_autonomous_vm_cluster_id: pulumi.Input[str]
|
47
|
+
"""
|
48
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Autonomous Exadata VM Cluster.
|
49
|
+
"""
|
50
|
+
compute_count: pulumi.Input[float]
|
51
|
+
"""
|
52
|
+
The compute count for the catalog database. It has to be in multiple of 2.
|
53
|
+
"""
|
54
|
+
data_storage_size_in_gbs: pulumi.Input[float]
|
55
|
+
"""
|
56
|
+
The data disk group size to be allocated in GBs for the catalog database.
|
57
|
+
"""
|
58
|
+
is_auto_scaling_enabled: pulumi.Input[bool]
|
59
|
+
"""
|
60
|
+
Determines the auto-scaling mode for the catalog database.
|
61
|
+
"""
|
62
|
+
container_database_id: NotRequired[pulumi.Input[str]]
|
63
|
+
"""
|
64
|
+
Identifier of the underlying container database.
|
65
|
+
"""
|
66
|
+
container_database_parent_id: NotRequired[pulumi.Input[str]]
|
67
|
+
"""
|
68
|
+
Identifier of the underlying container database parent.
|
69
|
+
"""
|
70
|
+
encryption_key_details: NotRequired[pulumi.Input['ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgsDict']]
|
71
|
+
"""
|
72
|
+
Details of encryption key to be used to encrypt data for shards and catalog for sharded database. For system-defined sharding type, all shards have to use same encryptionKeyDetails. For system-defined sharding, if encryptionKeyDetails are not specified for catalog, then Oracle managed key will be used for catalog. For user-defined sharding type, if encryptionKeyDetails are not provided for any shard or catalog, then Oracle managed key will be used for such shard or catalog. For system-defined or user-defined sharding type, if the shard or catalog has a peer in region other than primary shard or catalog region, then make sure to provide virtual vault for such shard or catalog, which is also replicated to peer region (the region where peer or standby shard or catalog exists).
|
73
|
+
"""
|
74
|
+
metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
75
|
+
"""
|
76
|
+
Additional metadata related to shard's underlying supporting resource.
|
77
|
+
"""
|
78
|
+
name: NotRequired[pulumi.Input[str]]
|
79
|
+
"""
|
80
|
+
Name of the shard.
|
81
|
+
"""
|
82
|
+
peer_cloud_autonomous_vm_cluster_id: NotRequired[pulumi.Input[str]]
|
83
|
+
"""
|
84
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer cloud Autonomous Exadata VM Cluster.
|
85
|
+
"""
|
86
|
+
shard_group: NotRequired[pulumi.Input[str]]
|
87
|
+
"""
|
88
|
+
Name of the shard-group to which the shard belongs.
|
89
|
+
"""
|
90
|
+
status: NotRequired[pulumi.Input[str]]
|
91
|
+
"""
|
92
|
+
Status of shard or catalog or gsm for the sharded database.
|
93
|
+
"""
|
94
|
+
supporting_resource_id: NotRequired[pulumi.Input[str]]
|
95
|
+
"""
|
96
|
+
Identifier of the underlying supporting resource.
|
97
|
+
"""
|
98
|
+
time_created: NotRequired[pulumi.Input[str]]
|
99
|
+
"""
|
100
|
+
The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
101
|
+
"""
|
102
|
+
time_ssl_certificate_expires: NotRequired[pulumi.Input[str]]
|
103
|
+
"""
|
104
|
+
The time the ssl certificate associated with shard expires. An RFC3339 formatted datetime string
|
105
|
+
"""
|
106
|
+
time_updated: NotRequired[pulumi.Input[str]]
|
107
|
+
"""
|
108
|
+
The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
109
|
+
"""
|
110
|
+
elif False:
|
111
|
+
ShardedDatabaseCatalogDetailArgsDict: TypeAlias = Mapping[str, Any]
|
112
|
+
|
113
|
+
@pulumi.input_type
|
114
|
+
class ShardedDatabaseCatalogDetailArgs:
|
115
|
+
def __init__(__self__, *,
|
116
|
+
admin_password: pulumi.Input[str],
|
117
|
+
cloud_autonomous_vm_cluster_id: pulumi.Input[str],
|
118
|
+
compute_count: pulumi.Input[float],
|
119
|
+
data_storage_size_in_gbs: pulumi.Input[float],
|
120
|
+
is_auto_scaling_enabled: pulumi.Input[bool],
|
121
|
+
container_database_id: Optional[pulumi.Input[str]] = None,
|
122
|
+
container_database_parent_id: Optional[pulumi.Input[str]] = None,
|
123
|
+
encryption_key_details: Optional[pulumi.Input['ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgs']] = None,
|
124
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
125
|
+
name: Optional[pulumi.Input[str]] = None,
|
126
|
+
peer_cloud_autonomous_vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
127
|
+
shard_group: Optional[pulumi.Input[str]] = None,
|
128
|
+
status: Optional[pulumi.Input[str]] = None,
|
129
|
+
supporting_resource_id: Optional[pulumi.Input[str]] = None,
|
130
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
131
|
+
time_ssl_certificate_expires: Optional[pulumi.Input[str]] = None,
|
132
|
+
time_updated: Optional[pulumi.Input[str]] = None):
|
133
|
+
"""
|
134
|
+
:param pulumi.Input[str] admin_password: Admin password for the catalog database.
|
135
|
+
:param pulumi.Input[str] cloud_autonomous_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Autonomous Exadata VM Cluster.
|
136
|
+
:param pulumi.Input[float] compute_count: The compute count for the catalog database. It has to be in multiple of 2.
|
137
|
+
:param pulumi.Input[float] data_storage_size_in_gbs: The data disk group size to be allocated in GBs for the catalog database.
|
138
|
+
:param pulumi.Input[bool] is_auto_scaling_enabled: Determines the auto-scaling mode for the catalog database.
|
139
|
+
:param pulumi.Input[str] container_database_id: Identifier of the underlying container database.
|
140
|
+
:param pulumi.Input[str] container_database_parent_id: Identifier of the underlying container database parent.
|
141
|
+
:param pulumi.Input['ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgs'] encryption_key_details: Details of encryption key to be used to encrypt data for shards and catalog for sharded database. For system-defined sharding type, all shards have to use same encryptionKeyDetails. For system-defined sharding, if encryptionKeyDetails are not specified for catalog, then Oracle managed key will be used for catalog. For user-defined sharding type, if encryptionKeyDetails are not provided for any shard or catalog, then Oracle managed key will be used for such shard or catalog. For system-defined or user-defined sharding type, if the shard or catalog has a peer in region other than primary shard or catalog region, then make sure to provide virtual vault for such shard or catalog, which is also replicated to peer region (the region where peer or standby shard or catalog exists).
|
142
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Additional metadata related to shard's underlying supporting resource.
|
143
|
+
:param pulumi.Input[str] name: Name of the shard.
|
144
|
+
:param pulumi.Input[str] peer_cloud_autonomous_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer cloud Autonomous Exadata VM Cluster.
|
145
|
+
:param pulumi.Input[str] shard_group: Name of the shard-group to which the shard belongs.
|
146
|
+
:param pulumi.Input[str] status: Status of shard or catalog or gsm for the sharded database.
|
147
|
+
:param pulumi.Input[str] supporting_resource_id: Identifier of the underlying supporting resource.
|
148
|
+
:param pulumi.Input[str] time_created: The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
149
|
+
:param pulumi.Input[str] time_ssl_certificate_expires: The time the ssl certificate associated with shard expires. An RFC3339 formatted datetime string
|
150
|
+
:param pulumi.Input[str] time_updated: The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
151
|
+
"""
|
152
|
+
pulumi.set(__self__, "admin_password", admin_password)
|
153
|
+
pulumi.set(__self__, "cloud_autonomous_vm_cluster_id", cloud_autonomous_vm_cluster_id)
|
154
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
155
|
+
pulumi.set(__self__, "data_storage_size_in_gbs", data_storage_size_in_gbs)
|
156
|
+
pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
|
157
|
+
if container_database_id is not None:
|
158
|
+
pulumi.set(__self__, "container_database_id", container_database_id)
|
159
|
+
if container_database_parent_id is not None:
|
160
|
+
pulumi.set(__self__, "container_database_parent_id", container_database_parent_id)
|
161
|
+
if encryption_key_details is not None:
|
162
|
+
pulumi.set(__self__, "encryption_key_details", encryption_key_details)
|
163
|
+
if metadata is not None:
|
164
|
+
pulumi.set(__self__, "metadata", metadata)
|
165
|
+
if name is not None:
|
166
|
+
pulumi.set(__self__, "name", name)
|
167
|
+
if peer_cloud_autonomous_vm_cluster_id is not None:
|
168
|
+
pulumi.set(__self__, "peer_cloud_autonomous_vm_cluster_id", peer_cloud_autonomous_vm_cluster_id)
|
169
|
+
if shard_group is not None:
|
170
|
+
pulumi.set(__self__, "shard_group", shard_group)
|
171
|
+
if status is not None:
|
172
|
+
pulumi.set(__self__, "status", status)
|
173
|
+
if supporting_resource_id is not None:
|
174
|
+
pulumi.set(__self__, "supporting_resource_id", supporting_resource_id)
|
175
|
+
if time_created is not None:
|
176
|
+
pulumi.set(__self__, "time_created", time_created)
|
177
|
+
if time_ssl_certificate_expires is not None:
|
178
|
+
pulumi.set(__self__, "time_ssl_certificate_expires", time_ssl_certificate_expires)
|
179
|
+
if time_updated is not None:
|
180
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
181
|
+
|
182
|
+
@property
|
183
|
+
@pulumi.getter(name="adminPassword")
|
184
|
+
def admin_password(self) -> pulumi.Input[str]:
|
185
|
+
"""
|
186
|
+
Admin password for the catalog database.
|
187
|
+
"""
|
188
|
+
return pulumi.get(self, "admin_password")
|
189
|
+
|
190
|
+
@admin_password.setter
|
191
|
+
def admin_password(self, value: pulumi.Input[str]):
|
192
|
+
pulumi.set(self, "admin_password", value)
|
193
|
+
|
194
|
+
@property
|
195
|
+
@pulumi.getter(name="cloudAutonomousVmClusterId")
|
196
|
+
def cloud_autonomous_vm_cluster_id(self) -> pulumi.Input[str]:
|
197
|
+
"""
|
198
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Autonomous Exadata VM Cluster.
|
199
|
+
"""
|
200
|
+
return pulumi.get(self, "cloud_autonomous_vm_cluster_id")
|
201
|
+
|
202
|
+
@cloud_autonomous_vm_cluster_id.setter
|
203
|
+
def cloud_autonomous_vm_cluster_id(self, value: pulumi.Input[str]):
|
204
|
+
pulumi.set(self, "cloud_autonomous_vm_cluster_id", value)
|
205
|
+
|
206
|
+
@property
|
207
|
+
@pulumi.getter(name="computeCount")
|
208
|
+
def compute_count(self) -> pulumi.Input[float]:
|
209
|
+
"""
|
210
|
+
The compute count for the catalog database. It has to be in multiple of 2.
|
211
|
+
"""
|
212
|
+
return pulumi.get(self, "compute_count")
|
213
|
+
|
214
|
+
@compute_count.setter
|
215
|
+
def compute_count(self, value: pulumi.Input[float]):
|
216
|
+
pulumi.set(self, "compute_count", value)
|
217
|
+
|
218
|
+
@property
|
219
|
+
@pulumi.getter(name="dataStorageSizeInGbs")
|
220
|
+
def data_storage_size_in_gbs(self) -> pulumi.Input[float]:
|
221
|
+
"""
|
222
|
+
The data disk group size to be allocated in GBs for the catalog database.
|
223
|
+
"""
|
224
|
+
return pulumi.get(self, "data_storage_size_in_gbs")
|
225
|
+
|
226
|
+
@data_storage_size_in_gbs.setter
|
227
|
+
def data_storage_size_in_gbs(self, value: pulumi.Input[float]):
|
228
|
+
pulumi.set(self, "data_storage_size_in_gbs", value)
|
229
|
+
|
230
|
+
@property
|
231
|
+
@pulumi.getter(name="isAutoScalingEnabled")
|
232
|
+
def is_auto_scaling_enabled(self) -> pulumi.Input[bool]:
|
233
|
+
"""
|
234
|
+
Determines the auto-scaling mode for the catalog database.
|
235
|
+
"""
|
236
|
+
return pulumi.get(self, "is_auto_scaling_enabled")
|
237
|
+
|
238
|
+
@is_auto_scaling_enabled.setter
|
239
|
+
def is_auto_scaling_enabled(self, value: pulumi.Input[bool]):
|
240
|
+
pulumi.set(self, "is_auto_scaling_enabled", value)
|
241
|
+
|
242
|
+
@property
|
243
|
+
@pulumi.getter(name="containerDatabaseId")
|
244
|
+
def container_database_id(self) -> Optional[pulumi.Input[str]]:
|
245
|
+
"""
|
246
|
+
Identifier of the underlying container database.
|
247
|
+
"""
|
248
|
+
return pulumi.get(self, "container_database_id")
|
249
|
+
|
250
|
+
@container_database_id.setter
|
251
|
+
def container_database_id(self, value: Optional[pulumi.Input[str]]):
|
252
|
+
pulumi.set(self, "container_database_id", value)
|
253
|
+
|
254
|
+
@property
|
255
|
+
@pulumi.getter(name="containerDatabaseParentId")
|
256
|
+
def container_database_parent_id(self) -> Optional[pulumi.Input[str]]:
|
257
|
+
"""
|
258
|
+
Identifier of the underlying container database parent.
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "container_database_parent_id")
|
261
|
+
|
262
|
+
@container_database_parent_id.setter
|
263
|
+
def container_database_parent_id(self, value: Optional[pulumi.Input[str]]):
|
264
|
+
pulumi.set(self, "container_database_parent_id", value)
|
265
|
+
|
266
|
+
@property
|
267
|
+
@pulumi.getter(name="encryptionKeyDetails")
|
268
|
+
def encryption_key_details(self) -> Optional[pulumi.Input['ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgs']]:
|
269
|
+
"""
|
270
|
+
Details of encryption key to be used to encrypt data for shards and catalog for sharded database. For system-defined sharding type, all shards have to use same encryptionKeyDetails. For system-defined sharding, if encryptionKeyDetails are not specified for catalog, then Oracle managed key will be used for catalog. For user-defined sharding type, if encryptionKeyDetails are not provided for any shard or catalog, then Oracle managed key will be used for such shard or catalog. For system-defined or user-defined sharding type, if the shard or catalog has a peer in region other than primary shard or catalog region, then make sure to provide virtual vault for such shard or catalog, which is also replicated to peer region (the region where peer or standby shard or catalog exists).
|
271
|
+
"""
|
272
|
+
return pulumi.get(self, "encryption_key_details")
|
273
|
+
|
274
|
+
@encryption_key_details.setter
|
275
|
+
def encryption_key_details(self, value: Optional[pulumi.Input['ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgs']]):
|
276
|
+
pulumi.set(self, "encryption_key_details", value)
|
277
|
+
|
278
|
+
@property
|
279
|
+
@pulumi.getter
|
280
|
+
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
281
|
+
"""
|
282
|
+
Additional metadata related to shard's underlying supporting resource.
|
283
|
+
"""
|
284
|
+
return pulumi.get(self, "metadata")
|
285
|
+
|
286
|
+
@metadata.setter
|
287
|
+
def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
288
|
+
pulumi.set(self, "metadata", value)
|
289
|
+
|
290
|
+
@property
|
291
|
+
@pulumi.getter
|
292
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
293
|
+
"""
|
294
|
+
Name of the shard.
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "name")
|
297
|
+
|
298
|
+
@name.setter
|
299
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
300
|
+
pulumi.set(self, "name", value)
|
301
|
+
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="peerCloudAutonomousVmClusterId")
|
304
|
+
def peer_cloud_autonomous_vm_cluster_id(self) -> Optional[pulumi.Input[str]]:
|
305
|
+
"""
|
306
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer cloud Autonomous Exadata VM Cluster.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "peer_cloud_autonomous_vm_cluster_id")
|
309
|
+
|
310
|
+
@peer_cloud_autonomous_vm_cluster_id.setter
|
311
|
+
def peer_cloud_autonomous_vm_cluster_id(self, value: Optional[pulumi.Input[str]]):
|
312
|
+
pulumi.set(self, "peer_cloud_autonomous_vm_cluster_id", value)
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter(name="shardGroup")
|
316
|
+
def shard_group(self) -> Optional[pulumi.Input[str]]:
|
317
|
+
"""
|
318
|
+
Name of the shard-group to which the shard belongs.
|
319
|
+
"""
|
320
|
+
return pulumi.get(self, "shard_group")
|
321
|
+
|
322
|
+
@shard_group.setter
|
323
|
+
def shard_group(self, value: Optional[pulumi.Input[str]]):
|
324
|
+
pulumi.set(self, "shard_group", value)
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter
|
328
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
329
|
+
"""
|
330
|
+
Status of shard or catalog or gsm for the sharded database.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "status")
|
333
|
+
|
334
|
+
@status.setter
|
335
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
336
|
+
pulumi.set(self, "status", value)
|
337
|
+
|
338
|
+
@property
|
339
|
+
@pulumi.getter(name="supportingResourceId")
|
340
|
+
def supporting_resource_id(self) -> Optional[pulumi.Input[str]]:
|
341
|
+
"""
|
342
|
+
Identifier of the underlying supporting resource.
|
343
|
+
"""
|
344
|
+
return pulumi.get(self, "supporting_resource_id")
|
345
|
+
|
346
|
+
@supporting_resource_id.setter
|
347
|
+
def supporting_resource_id(self, value: Optional[pulumi.Input[str]]):
|
348
|
+
pulumi.set(self, "supporting_resource_id", value)
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter(name="timeCreated")
|
352
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
353
|
+
"""
|
354
|
+
The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "time_created")
|
357
|
+
|
358
|
+
@time_created.setter
|
359
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
360
|
+
pulumi.set(self, "time_created", value)
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter(name="timeSslCertificateExpires")
|
364
|
+
def time_ssl_certificate_expires(self) -> Optional[pulumi.Input[str]]:
|
365
|
+
"""
|
366
|
+
The time the ssl certificate associated with shard expires. An RFC3339 formatted datetime string
|
367
|
+
"""
|
368
|
+
return pulumi.get(self, "time_ssl_certificate_expires")
|
369
|
+
|
370
|
+
@time_ssl_certificate_expires.setter
|
371
|
+
def time_ssl_certificate_expires(self, value: Optional[pulumi.Input[str]]):
|
372
|
+
pulumi.set(self, "time_ssl_certificate_expires", value)
|
373
|
+
|
374
|
+
@property
|
375
|
+
@pulumi.getter(name="timeUpdated")
|
376
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
377
|
+
"""
|
378
|
+
The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "time_updated")
|
381
|
+
|
382
|
+
@time_updated.setter
|
383
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
384
|
+
pulumi.set(self, "time_updated", value)
|
385
|
+
|
386
|
+
|
387
|
+
if not MYPY:
|
388
|
+
class ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgsDict(TypedDict):
|
389
|
+
kms_key_id: pulumi.Input[str]
|
390
|
+
"""
|
391
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key in vault identified by vaultId in customer tenancy that is used as the master encryption key.
|
392
|
+
"""
|
393
|
+
vault_id: pulumi.Input[str]
|
394
|
+
"""
|
395
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vault in customer tenancy where KMS key is present. For shard or catalog with cross-region data guard enabled, user needs to make sure to provide virtual private vault only, which is also replicated in the region of standby shard.
|
396
|
+
"""
|
397
|
+
kms_key_version_id: NotRequired[pulumi.Input[str]]
|
398
|
+
"""
|
399
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key version for key identified by kmsKeyId that is used in data encryption (TDE) operations.
|
400
|
+
"""
|
401
|
+
elif False:
|
402
|
+
ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
403
|
+
|
404
|
+
@pulumi.input_type
|
405
|
+
class ShardedDatabaseCatalogDetailEncryptionKeyDetailsArgs:
|
406
|
+
def __init__(__self__, *,
|
407
|
+
kms_key_id: pulumi.Input[str],
|
408
|
+
vault_id: pulumi.Input[str],
|
409
|
+
kms_key_version_id: Optional[pulumi.Input[str]] = None):
|
410
|
+
"""
|
411
|
+
:param pulumi.Input[str] kms_key_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key in vault identified by vaultId in customer tenancy that is used as the master encryption key.
|
412
|
+
:param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vault in customer tenancy where KMS key is present. For shard or catalog with cross-region data guard enabled, user needs to make sure to provide virtual private vault only, which is also replicated in the region of standby shard.
|
413
|
+
:param pulumi.Input[str] kms_key_version_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key version for key identified by kmsKeyId that is used in data encryption (TDE) operations.
|
414
|
+
"""
|
415
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
416
|
+
pulumi.set(__self__, "vault_id", vault_id)
|
417
|
+
if kms_key_version_id is not None:
|
418
|
+
pulumi.set(__self__, "kms_key_version_id", kms_key_version_id)
|
419
|
+
|
420
|
+
@property
|
421
|
+
@pulumi.getter(name="kmsKeyId")
|
422
|
+
def kms_key_id(self) -> pulumi.Input[str]:
|
423
|
+
"""
|
424
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key in vault identified by vaultId in customer tenancy that is used as the master encryption key.
|
425
|
+
"""
|
426
|
+
return pulumi.get(self, "kms_key_id")
|
427
|
+
|
428
|
+
@kms_key_id.setter
|
429
|
+
def kms_key_id(self, value: pulumi.Input[str]):
|
430
|
+
pulumi.set(self, "kms_key_id", value)
|
431
|
+
|
432
|
+
@property
|
433
|
+
@pulumi.getter(name="vaultId")
|
434
|
+
def vault_id(self) -> pulumi.Input[str]:
|
435
|
+
"""
|
436
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vault in customer tenancy where KMS key is present. For shard or catalog with cross-region data guard enabled, user needs to make sure to provide virtual private vault only, which is also replicated in the region of standby shard.
|
437
|
+
"""
|
438
|
+
return pulumi.get(self, "vault_id")
|
439
|
+
|
440
|
+
@vault_id.setter
|
441
|
+
def vault_id(self, value: pulumi.Input[str]):
|
442
|
+
pulumi.set(self, "vault_id", value)
|
443
|
+
|
444
|
+
@property
|
445
|
+
@pulumi.getter(name="kmsKeyVersionId")
|
446
|
+
def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
|
447
|
+
"""
|
448
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key version for key identified by kmsKeyId that is used in data encryption (TDE) operations.
|
449
|
+
"""
|
450
|
+
return pulumi.get(self, "kms_key_version_id")
|
451
|
+
|
452
|
+
@kms_key_version_id.setter
|
453
|
+
def kms_key_version_id(self, value: Optional[pulumi.Input[str]]):
|
454
|
+
pulumi.set(self, "kms_key_version_id", value)
|
455
|
+
|
456
|
+
|
457
|
+
if not MYPY:
|
458
|
+
class ShardedDatabaseConnectionStringArgsDict(TypedDict):
|
459
|
+
all_connection_strings: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
460
|
+
"""
|
461
|
+
Collection of connection strings.
|
462
|
+
"""
|
463
|
+
elif False:
|
464
|
+
ShardedDatabaseConnectionStringArgsDict: TypeAlias = Mapping[str, Any]
|
465
|
+
|
466
|
+
@pulumi.input_type
|
467
|
+
class ShardedDatabaseConnectionStringArgs:
|
468
|
+
def __init__(__self__, *,
|
469
|
+
all_connection_strings: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
470
|
+
"""
|
471
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] all_connection_strings: Collection of connection strings.
|
472
|
+
"""
|
473
|
+
if all_connection_strings is not None:
|
474
|
+
pulumi.set(__self__, "all_connection_strings", all_connection_strings)
|
475
|
+
|
476
|
+
@property
|
477
|
+
@pulumi.getter(name="allConnectionStrings")
|
478
|
+
def all_connection_strings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
479
|
+
"""
|
480
|
+
Collection of connection strings.
|
481
|
+
"""
|
482
|
+
return pulumi.get(self, "all_connection_strings")
|
483
|
+
|
484
|
+
@all_connection_strings.setter
|
485
|
+
def all_connection_strings(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
486
|
+
pulumi.set(self, "all_connection_strings", value)
|
487
|
+
|
488
|
+
|
489
|
+
if not MYPY:
|
490
|
+
class ShardedDatabaseGsmArgsDict(TypedDict):
|
491
|
+
compute_count: NotRequired[pulumi.Input[float]]
|
492
|
+
"""
|
493
|
+
The compute amount available to the underlying autonomous database associated with shard.
|
494
|
+
"""
|
495
|
+
data_storage_size_in_gbs: NotRequired[pulumi.Input[float]]
|
496
|
+
"""
|
497
|
+
The data disk group size to be allocated in GBs.
|
498
|
+
"""
|
499
|
+
metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
500
|
+
"""
|
501
|
+
Additional metadata related to shard's underlying supporting resource.
|
502
|
+
"""
|
503
|
+
name: NotRequired[pulumi.Input[str]]
|
504
|
+
"""
|
505
|
+
Name of the shard.
|
506
|
+
"""
|
507
|
+
status: NotRequired[pulumi.Input[str]]
|
508
|
+
"""
|
509
|
+
Status of shard or catalog or gsm for the sharded database.
|
510
|
+
"""
|
511
|
+
supporting_resource_id: NotRequired[pulumi.Input[str]]
|
512
|
+
"""
|
513
|
+
Identifier of the underlying supporting resource.
|
514
|
+
"""
|
515
|
+
time_created: NotRequired[pulumi.Input[str]]
|
516
|
+
"""
|
517
|
+
The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
518
|
+
"""
|
519
|
+
time_ssl_certificate_expires: NotRequired[pulumi.Input[str]]
|
520
|
+
"""
|
521
|
+
The time the ssl certificate associated with shard expires. An RFC3339 formatted datetime string
|
522
|
+
"""
|
523
|
+
time_updated: NotRequired[pulumi.Input[str]]
|
524
|
+
"""
|
525
|
+
The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
526
|
+
"""
|
527
|
+
elif False:
|
528
|
+
ShardedDatabaseGsmArgsDict: TypeAlias = Mapping[str, Any]
|
529
|
+
|
530
|
+
@pulumi.input_type
|
531
|
+
class ShardedDatabaseGsmArgs:
|
532
|
+
def __init__(__self__, *,
|
533
|
+
compute_count: Optional[pulumi.Input[float]] = None,
|
534
|
+
data_storage_size_in_gbs: Optional[pulumi.Input[float]] = None,
|
535
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
536
|
+
name: Optional[pulumi.Input[str]] = None,
|
537
|
+
status: Optional[pulumi.Input[str]] = None,
|
538
|
+
supporting_resource_id: Optional[pulumi.Input[str]] = None,
|
539
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
540
|
+
time_ssl_certificate_expires: Optional[pulumi.Input[str]] = None,
|
541
|
+
time_updated: Optional[pulumi.Input[str]] = None):
|
542
|
+
"""
|
543
|
+
:param pulumi.Input[float] compute_count: The compute amount available to the underlying autonomous database associated with shard.
|
544
|
+
:param pulumi.Input[float] data_storage_size_in_gbs: The data disk group size to be allocated in GBs.
|
545
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Additional metadata related to shard's underlying supporting resource.
|
546
|
+
:param pulumi.Input[str] name: Name of the shard.
|
547
|
+
:param pulumi.Input[str] status: Status of shard or catalog or gsm for the sharded database.
|
548
|
+
:param pulumi.Input[str] supporting_resource_id: Identifier of the underlying supporting resource.
|
549
|
+
:param pulumi.Input[str] time_created: The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
550
|
+
:param pulumi.Input[str] time_ssl_certificate_expires: The time the ssl certificate associated with shard expires. An RFC3339 formatted datetime string
|
551
|
+
:param pulumi.Input[str] time_updated: The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
552
|
+
"""
|
553
|
+
if compute_count is not None:
|
554
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
555
|
+
if data_storage_size_in_gbs is not None:
|
556
|
+
pulumi.set(__self__, "data_storage_size_in_gbs", data_storage_size_in_gbs)
|
557
|
+
if metadata is not None:
|
558
|
+
pulumi.set(__self__, "metadata", metadata)
|
559
|
+
if name is not None:
|
560
|
+
pulumi.set(__self__, "name", name)
|
561
|
+
if status is not None:
|
562
|
+
pulumi.set(__self__, "status", status)
|
563
|
+
if supporting_resource_id is not None:
|
564
|
+
pulumi.set(__self__, "supporting_resource_id", supporting_resource_id)
|
565
|
+
if time_created is not None:
|
566
|
+
pulumi.set(__self__, "time_created", time_created)
|
567
|
+
if time_ssl_certificate_expires is not None:
|
568
|
+
pulumi.set(__self__, "time_ssl_certificate_expires", time_ssl_certificate_expires)
|
569
|
+
if time_updated is not None:
|
570
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
571
|
+
|
572
|
+
@property
|
573
|
+
@pulumi.getter(name="computeCount")
|
574
|
+
def compute_count(self) -> Optional[pulumi.Input[float]]:
|
575
|
+
"""
|
576
|
+
The compute amount available to the underlying autonomous database associated with shard.
|
577
|
+
"""
|
578
|
+
return pulumi.get(self, "compute_count")
|
579
|
+
|
580
|
+
@compute_count.setter
|
581
|
+
def compute_count(self, value: Optional[pulumi.Input[float]]):
|
582
|
+
pulumi.set(self, "compute_count", value)
|
583
|
+
|
584
|
+
@property
|
585
|
+
@pulumi.getter(name="dataStorageSizeInGbs")
|
586
|
+
def data_storage_size_in_gbs(self) -> Optional[pulumi.Input[float]]:
|
587
|
+
"""
|
588
|
+
The data disk group size to be allocated in GBs.
|
589
|
+
"""
|
590
|
+
return pulumi.get(self, "data_storage_size_in_gbs")
|
591
|
+
|
592
|
+
@data_storage_size_in_gbs.setter
|
593
|
+
def data_storage_size_in_gbs(self, value: Optional[pulumi.Input[float]]):
|
594
|
+
pulumi.set(self, "data_storage_size_in_gbs", value)
|
595
|
+
|
596
|
+
@property
|
597
|
+
@pulumi.getter
|
598
|
+
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
599
|
+
"""
|
600
|
+
Additional metadata related to shard's underlying supporting resource.
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "metadata")
|
603
|
+
|
604
|
+
@metadata.setter
|
605
|
+
def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
606
|
+
pulumi.set(self, "metadata", value)
|
607
|
+
|
608
|
+
@property
|
609
|
+
@pulumi.getter
|
610
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
611
|
+
"""
|
612
|
+
Name of the shard.
|
613
|
+
"""
|
614
|
+
return pulumi.get(self, "name")
|
615
|
+
|
616
|
+
@name.setter
|
617
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
618
|
+
pulumi.set(self, "name", value)
|
619
|
+
|
620
|
+
@property
|
621
|
+
@pulumi.getter
|
622
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
623
|
+
"""
|
624
|
+
Status of shard or catalog or gsm for the sharded database.
|
625
|
+
"""
|
626
|
+
return pulumi.get(self, "status")
|
627
|
+
|
628
|
+
@status.setter
|
629
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
630
|
+
pulumi.set(self, "status", value)
|
631
|
+
|
632
|
+
@property
|
633
|
+
@pulumi.getter(name="supportingResourceId")
|
634
|
+
def supporting_resource_id(self) -> Optional[pulumi.Input[str]]:
|
635
|
+
"""
|
636
|
+
Identifier of the underlying supporting resource.
|
637
|
+
"""
|
638
|
+
return pulumi.get(self, "supporting_resource_id")
|
639
|
+
|
640
|
+
@supporting_resource_id.setter
|
641
|
+
def supporting_resource_id(self, value: Optional[pulumi.Input[str]]):
|
642
|
+
pulumi.set(self, "supporting_resource_id", value)
|
643
|
+
|
644
|
+
@property
|
645
|
+
@pulumi.getter(name="timeCreated")
|
646
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
647
|
+
"""
|
648
|
+
The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
649
|
+
"""
|
650
|
+
return pulumi.get(self, "time_created")
|
651
|
+
|
652
|
+
@time_created.setter
|
653
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
654
|
+
pulumi.set(self, "time_created", value)
|
655
|
+
|
656
|
+
@property
|
657
|
+
@pulumi.getter(name="timeSslCertificateExpires")
|
658
|
+
def time_ssl_certificate_expires(self) -> Optional[pulumi.Input[str]]:
|
659
|
+
"""
|
660
|
+
The time the ssl certificate associated with shard expires. An RFC3339 formatted datetime string
|
661
|
+
"""
|
662
|
+
return pulumi.get(self, "time_ssl_certificate_expires")
|
663
|
+
|
664
|
+
@time_ssl_certificate_expires.setter
|
665
|
+
def time_ssl_certificate_expires(self, value: Optional[pulumi.Input[str]]):
|
666
|
+
pulumi.set(self, "time_ssl_certificate_expires", value)
|
667
|
+
|
668
|
+
@property
|
669
|
+
@pulumi.getter(name="timeUpdated")
|
670
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
671
|
+
"""
|
672
|
+
The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
673
|
+
"""
|
674
|
+
return pulumi.get(self, "time_updated")
|
675
|
+
|
676
|
+
@time_updated.setter
|
677
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
678
|
+
pulumi.set(self, "time_updated", value)
|
679
|
+
|
680
|
+
|
681
|
+
if not MYPY:
|
682
|
+
class ShardedDatabasePatchOperationArgsDict(TypedDict):
|
683
|
+
operation: pulumi.Input[str]
|
684
|
+
"""
|
685
|
+
(Updatable) The operation can be one of these values: `INSERT`, `MERGE`, `REMOVE`
|
686
|
+
"""
|
687
|
+
selection: pulumi.Input[str]
|
688
|
+
"""
|
689
|
+
(Updatable)
|
690
|
+
"""
|
691
|
+
value: pulumi.Input[str]
|
692
|
+
"""
|
693
|
+
(Updatable)
|
694
|
+
"""
|
695
|
+
elif False:
|
696
|
+
ShardedDatabasePatchOperationArgsDict: TypeAlias = Mapping[str, Any]
|
697
|
+
|
698
|
+
@pulumi.input_type
|
699
|
+
class ShardedDatabasePatchOperationArgs:
|
700
|
+
def __init__(__self__, *,
|
701
|
+
operation: pulumi.Input[str],
|
702
|
+
selection: pulumi.Input[str],
|
703
|
+
value: pulumi.Input[str]):
|
704
|
+
"""
|
705
|
+
:param pulumi.Input[str] operation: (Updatable) The operation can be one of these values: `INSERT`, `MERGE`, `REMOVE`
|
706
|
+
:param pulumi.Input[str] selection: (Updatable)
|
707
|
+
:param pulumi.Input[str] value: (Updatable)
|
708
|
+
"""
|
709
|
+
pulumi.set(__self__, "operation", operation)
|
710
|
+
pulumi.set(__self__, "selection", selection)
|
711
|
+
pulumi.set(__self__, "value", value)
|
712
|
+
|
713
|
+
@property
|
714
|
+
@pulumi.getter
|
715
|
+
def operation(self) -> pulumi.Input[str]:
|
716
|
+
"""
|
717
|
+
(Updatable) The operation can be one of these values: `INSERT`, `MERGE`, `REMOVE`
|
718
|
+
"""
|
719
|
+
return pulumi.get(self, "operation")
|
720
|
+
|
721
|
+
@operation.setter
|
722
|
+
def operation(self, value: pulumi.Input[str]):
|
723
|
+
pulumi.set(self, "operation", value)
|
724
|
+
|
725
|
+
@property
|
726
|
+
@pulumi.getter
|
727
|
+
def selection(self) -> pulumi.Input[str]:
|
728
|
+
"""
|
729
|
+
(Updatable)
|
730
|
+
"""
|
731
|
+
return pulumi.get(self, "selection")
|
732
|
+
|
733
|
+
@selection.setter
|
734
|
+
def selection(self, value: pulumi.Input[str]):
|
735
|
+
pulumi.set(self, "selection", value)
|
736
|
+
|
737
|
+
@property
|
738
|
+
@pulumi.getter
|
739
|
+
def value(self) -> pulumi.Input[str]:
|
740
|
+
"""
|
741
|
+
(Updatable)
|
742
|
+
"""
|
743
|
+
return pulumi.get(self, "value")
|
744
|
+
|
745
|
+
@value.setter
|
746
|
+
def value(self, value: pulumi.Input[str]):
|
747
|
+
pulumi.set(self, "value", value)
|
748
|
+
|
749
|
+
|
750
|
+
if not MYPY:
|
751
|
+
class ShardedDatabaseShardDetailArgsDict(TypedDict):
|
752
|
+
admin_password: pulumi.Input[str]
|
753
|
+
"""
|
754
|
+
Admin password for shard database.
|
755
|
+
"""
|
756
|
+
cloud_autonomous_vm_cluster_id: pulumi.Input[str]
|
757
|
+
"""
|
758
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Autonomous Exadata VM Cluster.
|
759
|
+
"""
|
760
|
+
compute_count: pulumi.Input[float]
|
761
|
+
"""
|
762
|
+
The compute count for the shard database. It has to be in multiples of 2.
|
763
|
+
"""
|
764
|
+
data_storage_size_in_gbs: pulumi.Input[float]
|
765
|
+
"""
|
766
|
+
The data disk group size to be allocated in GBs for the shard database.
|
767
|
+
"""
|
768
|
+
is_auto_scaling_enabled: pulumi.Input[bool]
|
769
|
+
"""
|
770
|
+
Determines the auto-scaling mode for the shard database.
|
771
|
+
"""
|
772
|
+
container_database_id: NotRequired[pulumi.Input[str]]
|
773
|
+
"""
|
774
|
+
Identifier of the underlying container database.
|
775
|
+
"""
|
776
|
+
container_database_parent_id: NotRequired[pulumi.Input[str]]
|
777
|
+
"""
|
778
|
+
Identifier of the underlying container database parent.
|
779
|
+
"""
|
780
|
+
encryption_key_details: NotRequired[pulumi.Input['ShardedDatabaseShardDetailEncryptionKeyDetailsArgsDict']]
|
781
|
+
"""
|
782
|
+
Details of encryption key to be used to encrypt data for shards and catalog for sharded database. For system-defined sharding type, all shards have to use same encryptionKeyDetails. For system-defined sharding, if encryptionKeyDetails are not specified for catalog, then Oracle managed key will be used for catalog. For user-defined sharding type, if encryptionKeyDetails are not provided for any shard or catalog, then Oracle managed key will be used for such shard or catalog. For system-defined or user-defined sharding type, if the shard or catalog has a peer in region other than primary shard or catalog region, then make sure to provide virtual vault for such shard or catalog, which is also replicated to peer region (the region where peer or standby shard or catalog exists).
|
783
|
+
"""
|
784
|
+
metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
785
|
+
"""
|
786
|
+
Additional metadata related to shard's underlying supporting resource.
|
787
|
+
"""
|
788
|
+
name: NotRequired[pulumi.Input[str]]
|
789
|
+
"""
|
790
|
+
Name of the shard.
|
791
|
+
"""
|
792
|
+
peer_cloud_autonomous_vm_cluster_id: NotRequired[pulumi.Input[str]]
|
793
|
+
"""
|
794
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer cloud Autonomous Exadata VM Cluster.
|
795
|
+
"""
|
796
|
+
shard_group: NotRequired[pulumi.Input[str]]
|
797
|
+
"""
|
798
|
+
Name of the shard-group to which the shard belongs.
|
799
|
+
"""
|
800
|
+
shard_space: NotRequired[pulumi.Input[str]]
|
801
|
+
"""
|
802
|
+
The shard space name for the shard database. Shard space for existing shard cannot be changed, once shard is created. Shard space name shall be used while creation of new shards. For User defined sharding, every shard must have a unique shard space name. For system defined sharding, shard space name is not required.
|
803
|
+
"""
|
804
|
+
status: NotRequired[pulumi.Input[str]]
|
805
|
+
"""
|
806
|
+
Status of shard or catalog or gsm for the sharded database.
|
807
|
+
"""
|
808
|
+
supporting_resource_id: NotRequired[pulumi.Input[str]]
|
809
|
+
"""
|
810
|
+
Identifier of the underlying supporting resource.
|
811
|
+
"""
|
812
|
+
time_created: NotRequired[pulumi.Input[str]]
|
813
|
+
"""
|
814
|
+
The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
815
|
+
"""
|
816
|
+
time_ssl_certificate_expires: NotRequired[pulumi.Input[str]]
|
817
|
+
"""
|
818
|
+
The time the ssl certificate associated with shard expires. An RFC3339 formatted datetime string
|
819
|
+
"""
|
820
|
+
time_updated: NotRequired[pulumi.Input[str]]
|
821
|
+
"""
|
822
|
+
The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
823
|
+
"""
|
824
|
+
elif False:
|
825
|
+
ShardedDatabaseShardDetailArgsDict: TypeAlias = Mapping[str, Any]
|
826
|
+
|
827
|
+
@pulumi.input_type
|
828
|
+
class ShardedDatabaseShardDetailArgs:
|
829
|
+
def __init__(__self__, *,
|
830
|
+
admin_password: pulumi.Input[str],
|
831
|
+
cloud_autonomous_vm_cluster_id: pulumi.Input[str],
|
832
|
+
compute_count: pulumi.Input[float],
|
833
|
+
data_storage_size_in_gbs: pulumi.Input[float],
|
834
|
+
is_auto_scaling_enabled: pulumi.Input[bool],
|
835
|
+
container_database_id: Optional[pulumi.Input[str]] = None,
|
836
|
+
container_database_parent_id: Optional[pulumi.Input[str]] = None,
|
837
|
+
encryption_key_details: Optional[pulumi.Input['ShardedDatabaseShardDetailEncryptionKeyDetailsArgs']] = None,
|
838
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
839
|
+
name: Optional[pulumi.Input[str]] = None,
|
840
|
+
peer_cloud_autonomous_vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
841
|
+
shard_group: Optional[pulumi.Input[str]] = None,
|
842
|
+
shard_space: Optional[pulumi.Input[str]] = None,
|
843
|
+
status: Optional[pulumi.Input[str]] = None,
|
844
|
+
supporting_resource_id: Optional[pulumi.Input[str]] = None,
|
845
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
846
|
+
time_ssl_certificate_expires: Optional[pulumi.Input[str]] = None,
|
847
|
+
time_updated: Optional[pulumi.Input[str]] = None):
|
848
|
+
"""
|
849
|
+
:param pulumi.Input[str] admin_password: Admin password for shard database.
|
850
|
+
:param pulumi.Input[str] cloud_autonomous_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Autonomous Exadata VM Cluster.
|
851
|
+
:param pulumi.Input[float] compute_count: The compute count for the shard database. It has to be in multiples of 2.
|
852
|
+
:param pulumi.Input[float] data_storage_size_in_gbs: The data disk group size to be allocated in GBs for the shard database.
|
853
|
+
:param pulumi.Input[bool] is_auto_scaling_enabled: Determines the auto-scaling mode for the shard database.
|
854
|
+
:param pulumi.Input[str] container_database_id: Identifier of the underlying container database.
|
855
|
+
:param pulumi.Input[str] container_database_parent_id: Identifier of the underlying container database parent.
|
856
|
+
:param pulumi.Input['ShardedDatabaseShardDetailEncryptionKeyDetailsArgs'] encryption_key_details: Details of encryption key to be used to encrypt data for shards and catalog for sharded database. For system-defined sharding type, all shards have to use same encryptionKeyDetails. For system-defined sharding, if encryptionKeyDetails are not specified for catalog, then Oracle managed key will be used for catalog. For user-defined sharding type, if encryptionKeyDetails are not provided for any shard or catalog, then Oracle managed key will be used for such shard or catalog. For system-defined or user-defined sharding type, if the shard or catalog has a peer in region other than primary shard or catalog region, then make sure to provide virtual vault for such shard or catalog, which is also replicated to peer region (the region where peer or standby shard or catalog exists).
|
857
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Additional metadata related to shard's underlying supporting resource.
|
858
|
+
:param pulumi.Input[str] name: Name of the shard.
|
859
|
+
:param pulumi.Input[str] peer_cloud_autonomous_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer cloud Autonomous Exadata VM Cluster.
|
860
|
+
:param pulumi.Input[str] shard_group: Name of the shard-group to which the shard belongs.
|
861
|
+
:param pulumi.Input[str] shard_space: The shard space name for the shard database. Shard space for existing shard cannot be changed, once shard is created. Shard space name shall be used while creation of new shards. For User defined sharding, every shard must have a unique shard space name. For system defined sharding, shard space name is not required.
|
862
|
+
:param pulumi.Input[str] status: Status of shard or catalog or gsm for the sharded database.
|
863
|
+
:param pulumi.Input[str] supporting_resource_id: Identifier of the underlying supporting resource.
|
864
|
+
:param pulumi.Input[str] time_created: The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
865
|
+
:param pulumi.Input[str] time_ssl_certificate_expires: The time the ssl certificate associated with shard expires. An RFC3339 formatted datetime string
|
866
|
+
:param pulumi.Input[str] time_updated: The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
867
|
+
"""
|
868
|
+
pulumi.set(__self__, "admin_password", admin_password)
|
869
|
+
pulumi.set(__self__, "cloud_autonomous_vm_cluster_id", cloud_autonomous_vm_cluster_id)
|
870
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
871
|
+
pulumi.set(__self__, "data_storage_size_in_gbs", data_storage_size_in_gbs)
|
872
|
+
pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
|
873
|
+
if container_database_id is not None:
|
874
|
+
pulumi.set(__self__, "container_database_id", container_database_id)
|
875
|
+
if container_database_parent_id is not None:
|
876
|
+
pulumi.set(__self__, "container_database_parent_id", container_database_parent_id)
|
877
|
+
if encryption_key_details is not None:
|
878
|
+
pulumi.set(__self__, "encryption_key_details", encryption_key_details)
|
879
|
+
if metadata is not None:
|
880
|
+
pulumi.set(__self__, "metadata", metadata)
|
881
|
+
if name is not None:
|
882
|
+
pulumi.set(__self__, "name", name)
|
883
|
+
if peer_cloud_autonomous_vm_cluster_id is not None:
|
884
|
+
pulumi.set(__self__, "peer_cloud_autonomous_vm_cluster_id", peer_cloud_autonomous_vm_cluster_id)
|
885
|
+
if shard_group is not None:
|
886
|
+
pulumi.set(__self__, "shard_group", shard_group)
|
887
|
+
if shard_space is not None:
|
888
|
+
pulumi.set(__self__, "shard_space", shard_space)
|
889
|
+
if status is not None:
|
890
|
+
pulumi.set(__self__, "status", status)
|
891
|
+
if supporting_resource_id is not None:
|
892
|
+
pulumi.set(__self__, "supporting_resource_id", supporting_resource_id)
|
893
|
+
if time_created is not None:
|
894
|
+
pulumi.set(__self__, "time_created", time_created)
|
895
|
+
if time_ssl_certificate_expires is not None:
|
896
|
+
pulumi.set(__self__, "time_ssl_certificate_expires", time_ssl_certificate_expires)
|
897
|
+
if time_updated is not None:
|
898
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
899
|
+
|
900
|
+
@property
|
901
|
+
@pulumi.getter(name="adminPassword")
|
902
|
+
def admin_password(self) -> pulumi.Input[str]:
|
903
|
+
"""
|
904
|
+
Admin password for shard database.
|
905
|
+
"""
|
906
|
+
return pulumi.get(self, "admin_password")
|
907
|
+
|
908
|
+
@admin_password.setter
|
909
|
+
def admin_password(self, value: pulumi.Input[str]):
|
910
|
+
pulumi.set(self, "admin_password", value)
|
911
|
+
|
912
|
+
@property
|
913
|
+
@pulumi.getter(name="cloudAutonomousVmClusterId")
|
914
|
+
def cloud_autonomous_vm_cluster_id(self) -> pulumi.Input[str]:
|
915
|
+
"""
|
916
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Autonomous Exadata VM Cluster.
|
917
|
+
"""
|
918
|
+
return pulumi.get(self, "cloud_autonomous_vm_cluster_id")
|
919
|
+
|
920
|
+
@cloud_autonomous_vm_cluster_id.setter
|
921
|
+
def cloud_autonomous_vm_cluster_id(self, value: pulumi.Input[str]):
|
922
|
+
pulumi.set(self, "cloud_autonomous_vm_cluster_id", value)
|
923
|
+
|
924
|
+
@property
|
925
|
+
@pulumi.getter(name="computeCount")
|
926
|
+
def compute_count(self) -> pulumi.Input[float]:
|
927
|
+
"""
|
928
|
+
The compute count for the shard database. It has to be in multiples of 2.
|
929
|
+
"""
|
930
|
+
return pulumi.get(self, "compute_count")
|
931
|
+
|
932
|
+
@compute_count.setter
|
933
|
+
def compute_count(self, value: pulumi.Input[float]):
|
934
|
+
pulumi.set(self, "compute_count", value)
|
935
|
+
|
936
|
+
@property
|
937
|
+
@pulumi.getter(name="dataStorageSizeInGbs")
|
938
|
+
def data_storage_size_in_gbs(self) -> pulumi.Input[float]:
|
939
|
+
"""
|
940
|
+
The data disk group size to be allocated in GBs for the shard database.
|
941
|
+
"""
|
942
|
+
return pulumi.get(self, "data_storage_size_in_gbs")
|
943
|
+
|
944
|
+
@data_storage_size_in_gbs.setter
|
945
|
+
def data_storage_size_in_gbs(self, value: pulumi.Input[float]):
|
946
|
+
pulumi.set(self, "data_storage_size_in_gbs", value)
|
947
|
+
|
948
|
+
@property
|
949
|
+
@pulumi.getter(name="isAutoScalingEnabled")
|
950
|
+
def is_auto_scaling_enabled(self) -> pulumi.Input[bool]:
|
951
|
+
"""
|
952
|
+
Determines the auto-scaling mode for the shard database.
|
953
|
+
"""
|
954
|
+
return pulumi.get(self, "is_auto_scaling_enabled")
|
955
|
+
|
956
|
+
@is_auto_scaling_enabled.setter
|
957
|
+
def is_auto_scaling_enabled(self, value: pulumi.Input[bool]):
|
958
|
+
pulumi.set(self, "is_auto_scaling_enabled", value)
|
959
|
+
|
960
|
+
@property
|
961
|
+
@pulumi.getter(name="containerDatabaseId")
|
962
|
+
def container_database_id(self) -> Optional[pulumi.Input[str]]:
|
963
|
+
"""
|
964
|
+
Identifier of the underlying container database.
|
965
|
+
"""
|
966
|
+
return pulumi.get(self, "container_database_id")
|
967
|
+
|
968
|
+
@container_database_id.setter
|
969
|
+
def container_database_id(self, value: Optional[pulumi.Input[str]]):
|
970
|
+
pulumi.set(self, "container_database_id", value)
|
971
|
+
|
972
|
+
@property
|
973
|
+
@pulumi.getter(name="containerDatabaseParentId")
|
974
|
+
def container_database_parent_id(self) -> Optional[pulumi.Input[str]]:
|
975
|
+
"""
|
976
|
+
Identifier of the underlying container database parent.
|
977
|
+
"""
|
978
|
+
return pulumi.get(self, "container_database_parent_id")
|
979
|
+
|
980
|
+
@container_database_parent_id.setter
|
981
|
+
def container_database_parent_id(self, value: Optional[pulumi.Input[str]]):
|
982
|
+
pulumi.set(self, "container_database_parent_id", value)
|
983
|
+
|
984
|
+
@property
|
985
|
+
@pulumi.getter(name="encryptionKeyDetails")
|
986
|
+
def encryption_key_details(self) -> Optional[pulumi.Input['ShardedDatabaseShardDetailEncryptionKeyDetailsArgs']]:
|
987
|
+
"""
|
988
|
+
Details of encryption key to be used to encrypt data for shards and catalog for sharded database. For system-defined sharding type, all shards have to use same encryptionKeyDetails. For system-defined sharding, if encryptionKeyDetails are not specified for catalog, then Oracle managed key will be used for catalog. For user-defined sharding type, if encryptionKeyDetails are not provided for any shard or catalog, then Oracle managed key will be used for such shard or catalog. For system-defined or user-defined sharding type, if the shard or catalog has a peer in region other than primary shard or catalog region, then make sure to provide virtual vault for such shard or catalog, which is also replicated to peer region (the region where peer or standby shard or catalog exists).
|
989
|
+
"""
|
990
|
+
return pulumi.get(self, "encryption_key_details")
|
991
|
+
|
992
|
+
@encryption_key_details.setter
|
993
|
+
def encryption_key_details(self, value: Optional[pulumi.Input['ShardedDatabaseShardDetailEncryptionKeyDetailsArgs']]):
|
994
|
+
pulumi.set(self, "encryption_key_details", value)
|
995
|
+
|
996
|
+
@property
|
997
|
+
@pulumi.getter
|
998
|
+
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
999
|
+
"""
|
1000
|
+
Additional metadata related to shard's underlying supporting resource.
|
1001
|
+
"""
|
1002
|
+
return pulumi.get(self, "metadata")
|
1003
|
+
|
1004
|
+
@metadata.setter
|
1005
|
+
def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1006
|
+
pulumi.set(self, "metadata", value)
|
1007
|
+
|
1008
|
+
@property
|
1009
|
+
@pulumi.getter
|
1010
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
1011
|
+
"""
|
1012
|
+
Name of the shard.
|
1013
|
+
"""
|
1014
|
+
return pulumi.get(self, "name")
|
1015
|
+
|
1016
|
+
@name.setter
|
1017
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
1018
|
+
pulumi.set(self, "name", value)
|
1019
|
+
|
1020
|
+
@property
|
1021
|
+
@pulumi.getter(name="peerCloudAutonomousVmClusterId")
|
1022
|
+
def peer_cloud_autonomous_vm_cluster_id(self) -> Optional[pulumi.Input[str]]:
|
1023
|
+
"""
|
1024
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer cloud Autonomous Exadata VM Cluster.
|
1025
|
+
"""
|
1026
|
+
return pulumi.get(self, "peer_cloud_autonomous_vm_cluster_id")
|
1027
|
+
|
1028
|
+
@peer_cloud_autonomous_vm_cluster_id.setter
|
1029
|
+
def peer_cloud_autonomous_vm_cluster_id(self, value: Optional[pulumi.Input[str]]):
|
1030
|
+
pulumi.set(self, "peer_cloud_autonomous_vm_cluster_id", value)
|
1031
|
+
|
1032
|
+
@property
|
1033
|
+
@pulumi.getter(name="shardGroup")
|
1034
|
+
def shard_group(self) -> Optional[pulumi.Input[str]]:
|
1035
|
+
"""
|
1036
|
+
Name of the shard-group to which the shard belongs.
|
1037
|
+
"""
|
1038
|
+
return pulumi.get(self, "shard_group")
|
1039
|
+
|
1040
|
+
@shard_group.setter
|
1041
|
+
def shard_group(self, value: Optional[pulumi.Input[str]]):
|
1042
|
+
pulumi.set(self, "shard_group", value)
|
1043
|
+
|
1044
|
+
@property
|
1045
|
+
@pulumi.getter(name="shardSpace")
|
1046
|
+
def shard_space(self) -> Optional[pulumi.Input[str]]:
|
1047
|
+
"""
|
1048
|
+
The shard space name for the shard database. Shard space for existing shard cannot be changed, once shard is created. Shard space name shall be used while creation of new shards. For User defined sharding, every shard must have a unique shard space name. For system defined sharding, shard space name is not required.
|
1049
|
+
"""
|
1050
|
+
return pulumi.get(self, "shard_space")
|
1051
|
+
|
1052
|
+
@shard_space.setter
|
1053
|
+
def shard_space(self, value: Optional[pulumi.Input[str]]):
|
1054
|
+
pulumi.set(self, "shard_space", value)
|
1055
|
+
|
1056
|
+
@property
|
1057
|
+
@pulumi.getter
|
1058
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
1059
|
+
"""
|
1060
|
+
Status of shard or catalog or gsm for the sharded database.
|
1061
|
+
"""
|
1062
|
+
return pulumi.get(self, "status")
|
1063
|
+
|
1064
|
+
@status.setter
|
1065
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
1066
|
+
pulumi.set(self, "status", value)
|
1067
|
+
|
1068
|
+
@property
|
1069
|
+
@pulumi.getter(name="supportingResourceId")
|
1070
|
+
def supporting_resource_id(self) -> Optional[pulumi.Input[str]]:
|
1071
|
+
"""
|
1072
|
+
Identifier of the underlying supporting resource.
|
1073
|
+
"""
|
1074
|
+
return pulumi.get(self, "supporting_resource_id")
|
1075
|
+
|
1076
|
+
@supporting_resource_id.setter
|
1077
|
+
def supporting_resource_id(self, value: Optional[pulumi.Input[str]]):
|
1078
|
+
pulumi.set(self, "supporting_resource_id", value)
|
1079
|
+
|
1080
|
+
@property
|
1081
|
+
@pulumi.getter(name="timeCreated")
|
1082
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
1083
|
+
"""
|
1084
|
+
The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
1085
|
+
"""
|
1086
|
+
return pulumi.get(self, "time_created")
|
1087
|
+
|
1088
|
+
@time_created.setter
|
1089
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
1090
|
+
pulumi.set(self, "time_created", value)
|
1091
|
+
|
1092
|
+
@property
|
1093
|
+
@pulumi.getter(name="timeSslCertificateExpires")
|
1094
|
+
def time_ssl_certificate_expires(self) -> Optional[pulumi.Input[str]]:
|
1095
|
+
"""
|
1096
|
+
The time the ssl certificate associated with shard expires. An RFC3339 formatted datetime string
|
1097
|
+
"""
|
1098
|
+
return pulumi.get(self, "time_ssl_certificate_expires")
|
1099
|
+
|
1100
|
+
@time_ssl_certificate_expires.setter
|
1101
|
+
def time_ssl_certificate_expires(self, value: Optional[pulumi.Input[str]]):
|
1102
|
+
pulumi.set(self, "time_ssl_certificate_expires", value)
|
1103
|
+
|
1104
|
+
@property
|
1105
|
+
@pulumi.getter(name="timeUpdated")
|
1106
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
1107
|
+
"""
|
1108
|
+
The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
1109
|
+
"""
|
1110
|
+
return pulumi.get(self, "time_updated")
|
1111
|
+
|
1112
|
+
@time_updated.setter
|
1113
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
1114
|
+
pulumi.set(self, "time_updated", value)
|
1115
|
+
|
1116
|
+
|
1117
|
+
if not MYPY:
|
1118
|
+
class ShardedDatabaseShardDetailEncryptionKeyDetailsArgsDict(TypedDict):
|
1119
|
+
kms_key_id: pulumi.Input[str]
|
1120
|
+
"""
|
1121
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key in vault identified by vaultId in customer tenancy that is used as the master encryption key.
|
1122
|
+
"""
|
1123
|
+
vault_id: pulumi.Input[str]
|
1124
|
+
"""
|
1125
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vault in customer tenancy where KMS key is present. For shard or catalog with cross-region data guard enabled, user needs to make sure to provide virtual private vault only, which is also replicated in the region of standby shard.
|
1126
|
+
"""
|
1127
|
+
kms_key_version_id: NotRequired[pulumi.Input[str]]
|
1128
|
+
"""
|
1129
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key version for key identified by kmsKeyId that is used in data encryption (TDE) operations.
|
1130
|
+
"""
|
1131
|
+
elif False:
|
1132
|
+
ShardedDatabaseShardDetailEncryptionKeyDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
1133
|
+
|
1134
|
+
@pulumi.input_type
|
1135
|
+
class ShardedDatabaseShardDetailEncryptionKeyDetailsArgs:
|
1136
|
+
def __init__(__self__, *,
|
1137
|
+
kms_key_id: pulumi.Input[str],
|
1138
|
+
vault_id: pulumi.Input[str],
|
1139
|
+
kms_key_version_id: Optional[pulumi.Input[str]] = None):
|
1140
|
+
"""
|
1141
|
+
:param pulumi.Input[str] kms_key_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key in vault identified by vaultId in customer tenancy that is used as the master encryption key.
|
1142
|
+
:param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vault in customer tenancy where KMS key is present. For shard or catalog with cross-region data guard enabled, user needs to make sure to provide virtual private vault only, which is also replicated in the region of standby shard.
|
1143
|
+
:param pulumi.Input[str] kms_key_version_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key version for key identified by kmsKeyId that is used in data encryption (TDE) operations.
|
1144
|
+
"""
|
1145
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
1146
|
+
pulumi.set(__self__, "vault_id", vault_id)
|
1147
|
+
if kms_key_version_id is not None:
|
1148
|
+
pulumi.set(__self__, "kms_key_version_id", kms_key_version_id)
|
1149
|
+
|
1150
|
+
@property
|
1151
|
+
@pulumi.getter(name="kmsKeyId")
|
1152
|
+
def kms_key_id(self) -> pulumi.Input[str]:
|
1153
|
+
"""
|
1154
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key in vault identified by vaultId in customer tenancy that is used as the master encryption key.
|
1155
|
+
"""
|
1156
|
+
return pulumi.get(self, "kms_key_id")
|
1157
|
+
|
1158
|
+
@kms_key_id.setter
|
1159
|
+
def kms_key_id(self, value: pulumi.Input[str]):
|
1160
|
+
pulumi.set(self, "kms_key_id", value)
|
1161
|
+
|
1162
|
+
@property
|
1163
|
+
@pulumi.getter(name="vaultId")
|
1164
|
+
def vault_id(self) -> pulumi.Input[str]:
|
1165
|
+
"""
|
1166
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the vault in customer tenancy where KMS key is present. For shard or catalog with cross-region data guard enabled, user needs to make sure to provide virtual private vault only, which is also replicated in the region of standby shard.
|
1167
|
+
"""
|
1168
|
+
return pulumi.get(self, "vault_id")
|
1169
|
+
|
1170
|
+
@vault_id.setter
|
1171
|
+
def vault_id(self, value: pulumi.Input[str]):
|
1172
|
+
pulumi.set(self, "vault_id", value)
|
1173
|
+
|
1174
|
+
@property
|
1175
|
+
@pulumi.getter(name="kmsKeyVersionId")
|
1176
|
+
def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
|
1177
|
+
"""
|
1178
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key version for key identified by kmsKeyId that is used in data encryption (TDE) operations.
|
1179
|
+
"""
|
1180
|
+
return pulumi.get(self, "kms_key_version_id")
|
1181
|
+
|
1182
|
+
@kms_key_version_id.setter
|
1183
|
+
def kms_key_version_id(self, value: Optional[pulumi.Input[str]]):
|
1184
|
+
pulumi.set(self, "kms_key_version_id", value)
|
1185
|
+
|
1186
|
+
|
1187
|
+
if not MYPY:
|
1188
|
+
class GetPrivateEndpointsFilterArgsDict(TypedDict):
|
1189
|
+
name: str
|
1190
|
+
values: Sequence[str]
|
1191
|
+
regex: NotRequired[bool]
|
1192
|
+
elif False:
|
1193
|
+
GetPrivateEndpointsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1194
|
+
|
1195
|
+
@pulumi.input_type
|
1196
|
+
class GetPrivateEndpointsFilterArgs:
|
1197
|
+
def __init__(__self__, *,
|
1198
|
+
name: str,
|
1199
|
+
values: Sequence[str],
|
1200
|
+
regex: Optional[bool] = None):
|
1201
|
+
pulumi.set(__self__, "name", name)
|
1202
|
+
pulumi.set(__self__, "values", values)
|
1203
|
+
if regex is not None:
|
1204
|
+
pulumi.set(__self__, "regex", regex)
|
1205
|
+
|
1206
|
+
@property
|
1207
|
+
@pulumi.getter
|
1208
|
+
def name(self) -> str:
|
1209
|
+
return pulumi.get(self, "name")
|
1210
|
+
|
1211
|
+
@name.setter
|
1212
|
+
def name(self, value: str):
|
1213
|
+
pulumi.set(self, "name", value)
|
1214
|
+
|
1215
|
+
@property
|
1216
|
+
@pulumi.getter
|
1217
|
+
def values(self) -> Sequence[str]:
|
1218
|
+
return pulumi.get(self, "values")
|
1219
|
+
|
1220
|
+
@values.setter
|
1221
|
+
def values(self, value: Sequence[str]):
|
1222
|
+
pulumi.set(self, "values", value)
|
1223
|
+
|
1224
|
+
@property
|
1225
|
+
@pulumi.getter
|
1226
|
+
def regex(self) -> Optional[bool]:
|
1227
|
+
return pulumi.get(self, "regex")
|
1228
|
+
|
1229
|
+
@regex.setter
|
1230
|
+
def regex(self, value: Optional[bool]):
|
1231
|
+
pulumi.set(self, "regex", value)
|
1232
|
+
|
1233
|
+
|
1234
|
+
if not MYPY:
|
1235
|
+
class GetShardedDatabasesFilterArgsDict(TypedDict):
|
1236
|
+
name: str
|
1237
|
+
"""
|
1238
|
+
Name of the shard.
|
1239
|
+
"""
|
1240
|
+
values: Sequence[str]
|
1241
|
+
regex: NotRequired[bool]
|
1242
|
+
elif False:
|
1243
|
+
GetShardedDatabasesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1244
|
+
|
1245
|
+
@pulumi.input_type
|
1246
|
+
class GetShardedDatabasesFilterArgs:
|
1247
|
+
def __init__(__self__, *,
|
1248
|
+
name: str,
|
1249
|
+
values: Sequence[str],
|
1250
|
+
regex: Optional[bool] = None):
|
1251
|
+
"""
|
1252
|
+
:param str name: Name of the shard.
|
1253
|
+
"""
|
1254
|
+
pulumi.set(__self__, "name", name)
|
1255
|
+
pulumi.set(__self__, "values", values)
|
1256
|
+
if regex is not None:
|
1257
|
+
pulumi.set(__self__, "regex", regex)
|
1258
|
+
|
1259
|
+
@property
|
1260
|
+
@pulumi.getter
|
1261
|
+
def name(self) -> str:
|
1262
|
+
"""
|
1263
|
+
Name of the shard.
|
1264
|
+
"""
|
1265
|
+
return pulumi.get(self, "name")
|
1266
|
+
|
1267
|
+
@name.setter
|
1268
|
+
def name(self, value: str):
|
1269
|
+
pulumi.set(self, "name", value)
|
1270
|
+
|
1271
|
+
@property
|
1272
|
+
@pulumi.getter
|
1273
|
+
def values(self) -> Sequence[str]:
|
1274
|
+
return pulumi.get(self, "values")
|
1275
|
+
|
1276
|
+
@values.setter
|
1277
|
+
def values(self, value: Sequence[str]):
|
1278
|
+
pulumi.set(self, "values", value)
|
1279
|
+
|
1280
|
+
@property
|
1281
|
+
@pulumi.getter
|
1282
|
+
def regex(self) -> Optional[bool]:
|
1283
|
+
return pulumi.get(self, "regex")
|
1284
|
+
|
1285
|
+
@regex.setter
|
1286
|
+
def regex(self, value: Optional[bool]):
|
1287
|
+
pulumi.set(self, "regex", value)
|
1288
|
+
|
1289
|
+
|