pulumi-oci 2.16.0a1731363948__py3-none-any.whl → 2.16.0a1731504509__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/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/pulumi-plugin.json +1 -1
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/METADATA +1 -1
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/RECORD +44 -33
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2157 @@
|
|
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
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = ['ShardedDatabaseArgs', 'ShardedDatabase']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class ShardedDatabaseArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
catalog_details: pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseCatalogDetailArgs']]],
|
25
|
+
character_set: pulumi.Input[str],
|
26
|
+
compartment_id: pulumi.Input[str],
|
27
|
+
db_deployment_type: pulumi.Input[str],
|
28
|
+
db_version: pulumi.Input[str],
|
29
|
+
db_workload: pulumi.Input[str],
|
30
|
+
display_name: pulumi.Input[str],
|
31
|
+
listener_port: pulumi.Input[int],
|
32
|
+
listener_port_tls: pulumi.Input[int],
|
33
|
+
ncharacter_set: pulumi.Input[str],
|
34
|
+
ons_port_local: pulumi.Input[int],
|
35
|
+
ons_port_remote: pulumi.Input[int],
|
36
|
+
prefix: pulumi.Input[str],
|
37
|
+
shard_details: pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseShardDetailArgs']]],
|
38
|
+
sharding_method: pulumi.Input[str],
|
39
|
+
ca_signed_certificate: Optional[pulumi.Input[str]] = None,
|
40
|
+
chunks: Optional[pulumi.Input[int]] = None,
|
41
|
+
cluster_certificate_common_name: Optional[pulumi.Input[str]] = None,
|
42
|
+
configure_gsms_trigger: Optional[pulumi.Input[int]] = None,
|
43
|
+
configure_gsms_trigger_is_latest_gsm_image: Optional[pulumi.Input[bool]] = None,
|
44
|
+
configure_gsms_trigger_old_gsm_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
45
|
+
configure_sharding_trigger: Optional[pulumi.Input[int]] = None,
|
46
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
47
|
+
download_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
48
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
49
|
+
generate_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
50
|
+
generate_wallet_password: Optional[pulumi.Input[str]] = None,
|
51
|
+
generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
52
|
+
get_connection_string_trigger: Optional[pulumi.Input[int]] = None,
|
53
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabasePatchOperationArgs']]]] = None,
|
54
|
+
replication_factor: Optional[pulumi.Input[int]] = None,
|
55
|
+
replication_method: Optional[pulumi.Input[str]] = None,
|
56
|
+
replication_unit: Optional[pulumi.Input[int]] = None,
|
57
|
+
start_database_trigger: Optional[pulumi.Input[int]] = None,
|
58
|
+
stop_database_trigger: Optional[pulumi.Input[int]] = None,
|
59
|
+
upload_signed_certificate_and_generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
60
|
+
validate_network_trigger: Optional[pulumi.Input[int]] = None):
|
61
|
+
"""
|
62
|
+
The set of arguments for constructing a ShardedDatabase resource.
|
63
|
+
:param pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseCatalogDetailArgs']]] catalog_details: Collection of ATP-Dedicated catalogs that needs to be created.
|
64
|
+
:param pulumi.Input[str] character_set: The character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
65
|
+
:param pulumi.Input[str] compartment_id: (Updatable) Identifier of the compartment where sharded database is to be created.
|
66
|
+
:param pulumi.Input[str] db_deployment_type: The database deployment type.
|
67
|
+
:param pulumi.Input[str] db_version: Oracle Database version of the Autonomous Container Database.
|
68
|
+
:param pulumi.Input[str] db_workload: Possible workload types.
|
69
|
+
:param pulumi.Input[str] display_name: (Updatable) Oracle sharded database display name.
|
70
|
+
:param pulumi.Input[int] listener_port: The listener port number for sharded database.
|
71
|
+
:param pulumi.Input[int] listener_port_tls: The TLS listener port number for sharded database.
|
72
|
+
:param pulumi.Input[str] ncharacter_set: The national character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed national character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
73
|
+
:param pulumi.Input[int] ons_port_local: Ons port local for sharded database.
|
74
|
+
:param pulumi.Input[int] ons_port_remote: Ons remote port for sharded database.
|
75
|
+
:param pulumi.Input[str] prefix: Unique name prefix for the sharded databases. Only alpha-numeric values are allowed. First character has to be a letter followed by any combination of letter and number.
|
76
|
+
:param pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseShardDetailArgs']]] shard_details: Collection of ATP-Dedicated shards that needs to be created.
|
77
|
+
:param pulumi.Input[str] sharding_method: Sharding Method.
|
78
|
+
:param pulumi.Input[int] chunks: The default number of unique chunks in a shardspace. The value of chunks must be greater than 2 times the size of the largest shardgroup in any shardspace.
|
79
|
+
:param pulumi.Input[str] cluster_certificate_common_name: The certificate common name used in all cloudAutonomousVmClusters for the sharded database topology. Eg. Production. All the clusters used in one sharded database topology shall have same CABundle setup. Valid characterset for clusterCertificateCommonName include uppercase or lowercase letters, numbers, hyphens, underscores, and period.
|
80
|
+
:param pulumi.Input[int] configure_gsms_trigger: (Updatable) An optional property when incremented triggers Configure Gsms. Could be set to any integer value.
|
81
|
+
:param pulumi.Input[int] configure_sharding_trigger: (Updatable) An optional property when incremented triggers Configure Sharding. Could be set to any integer value.
|
82
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
83
|
+
:param pulumi.Input[int] download_gsm_certificate_signing_request_trigger: (Updatable) An optional property when incremented triggers Download Gsm Certificate Signing Request. Could be set to any integer value.
|
84
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
85
|
+
:param pulumi.Input[int] generate_gsm_certificate_signing_request_trigger: (Updatable) An optional property when incremented triggers Generate Gsm Certificate Signing Request. Could be set to any integer value.
|
86
|
+
:param pulumi.Input[int] generate_wallet_trigger: (Updatable) An optional property when incremented triggers Generate Wallet. Could be set to any integer value.
|
87
|
+
:param pulumi.Input[int] get_connection_string_trigger: (Updatable) An optional property when incremented triggers Get Connection String. Could be set to any integer value.
|
88
|
+
:param pulumi.Input[Sequence[pulumi.Input['ShardedDatabasePatchOperationArgs']]] patch_operations: (Updatable)
|
89
|
+
:param pulumi.Input[int] replication_factor: The Replication factor for RAFT replication based sharded database. Currently supported values are 3, 5 and 7.
|
90
|
+
:param pulumi.Input[str] replication_method: The Replication method for sharded database.
|
91
|
+
:param pulumi.Input[int] replication_unit: For RAFT replication based sharded database, the value should be atleast twice the number of shards.
|
92
|
+
:param pulumi.Input[int] start_database_trigger: (Updatable) An optional property when incremented triggers Start Database. Could be set to any integer value.
|
93
|
+
:param pulumi.Input[int] stop_database_trigger: (Updatable) An optional property when incremented triggers Stop Database. Could be set to any integer value.
|
94
|
+
:param pulumi.Input[int] upload_signed_certificate_and_generate_wallet_trigger: (Updatable) An optional property when incremented triggers Upload Signed Certificate And Generate Wallet. Could be set to any integer value.
|
95
|
+
:param pulumi.Input[int] validate_network_trigger: (Updatable) An optional property when incremented triggers Validate Network. Could be set to any integer value.
|
96
|
+
|
97
|
+
|
98
|
+
** IMPORTANT **
|
99
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
100
|
+
"""
|
101
|
+
pulumi.set(__self__, "catalog_details", catalog_details)
|
102
|
+
pulumi.set(__self__, "character_set", character_set)
|
103
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
104
|
+
pulumi.set(__self__, "db_deployment_type", db_deployment_type)
|
105
|
+
pulumi.set(__self__, "db_version", db_version)
|
106
|
+
pulumi.set(__self__, "db_workload", db_workload)
|
107
|
+
pulumi.set(__self__, "display_name", display_name)
|
108
|
+
pulumi.set(__self__, "listener_port", listener_port)
|
109
|
+
pulumi.set(__self__, "listener_port_tls", listener_port_tls)
|
110
|
+
pulumi.set(__self__, "ncharacter_set", ncharacter_set)
|
111
|
+
pulumi.set(__self__, "ons_port_local", ons_port_local)
|
112
|
+
pulumi.set(__self__, "ons_port_remote", ons_port_remote)
|
113
|
+
pulumi.set(__self__, "prefix", prefix)
|
114
|
+
pulumi.set(__self__, "shard_details", shard_details)
|
115
|
+
pulumi.set(__self__, "sharding_method", sharding_method)
|
116
|
+
if ca_signed_certificate is not None:
|
117
|
+
pulumi.set(__self__, "ca_signed_certificate", ca_signed_certificate)
|
118
|
+
if chunks is not None:
|
119
|
+
pulumi.set(__self__, "chunks", chunks)
|
120
|
+
if cluster_certificate_common_name is not None:
|
121
|
+
pulumi.set(__self__, "cluster_certificate_common_name", cluster_certificate_common_name)
|
122
|
+
if configure_gsms_trigger is not None:
|
123
|
+
pulumi.set(__self__, "configure_gsms_trigger", configure_gsms_trigger)
|
124
|
+
if configure_gsms_trigger_is_latest_gsm_image is not None:
|
125
|
+
pulumi.set(__self__, "configure_gsms_trigger_is_latest_gsm_image", configure_gsms_trigger_is_latest_gsm_image)
|
126
|
+
if configure_gsms_trigger_old_gsm_names is not None:
|
127
|
+
pulumi.set(__self__, "configure_gsms_trigger_old_gsm_names", configure_gsms_trigger_old_gsm_names)
|
128
|
+
if configure_sharding_trigger is not None:
|
129
|
+
pulumi.set(__self__, "configure_sharding_trigger", configure_sharding_trigger)
|
130
|
+
if defined_tags is not None:
|
131
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
132
|
+
if download_gsm_certificate_signing_request_trigger is not None:
|
133
|
+
pulumi.set(__self__, "download_gsm_certificate_signing_request_trigger", download_gsm_certificate_signing_request_trigger)
|
134
|
+
if freeform_tags is not None:
|
135
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
136
|
+
if generate_gsm_certificate_signing_request_trigger is not None:
|
137
|
+
pulumi.set(__self__, "generate_gsm_certificate_signing_request_trigger", generate_gsm_certificate_signing_request_trigger)
|
138
|
+
if generate_wallet_password is not None:
|
139
|
+
pulumi.set(__self__, "generate_wallet_password", generate_wallet_password)
|
140
|
+
if generate_wallet_trigger is not None:
|
141
|
+
pulumi.set(__self__, "generate_wallet_trigger", generate_wallet_trigger)
|
142
|
+
if get_connection_string_trigger is not None:
|
143
|
+
pulumi.set(__self__, "get_connection_string_trigger", get_connection_string_trigger)
|
144
|
+
if patch_operations is not None:
|
145
|
+
pulumi.set(__self__, "patch_operations", patch_operations)
|
146
|
+
if replication_factor is not None:
|
147
|
+
pulumi.set(__self__, "replication_factor", replication_factor)
|
148
|
+
if replication_method is not None:
|
149
|
+
pulumi.set(__self__, "replication_method", replication_method)
|
150
|
+
if replication_unit is not None:
|
151
|
+
pulumi.set(__self__, "replication_unit", replication_unit)
|
152
|
+
if start_database_trigger is not None:
|
153
|
+
pulumi.set(__self__, "start_database_trigger", start_database_trigger)
|
154
|
+
if stop_database_trigger is not None:
|
155
|
+
pulumi.set(__self__, "stop_database_trigger", stop_database_trigger)
|
156
|
+
if upload_signed_certificate_and_generate_wallet_trigger is not None:
|
157
|
+
pulumi.set(__self__, "upload_signed_certificate_and_generate_wallet_trigger", upload_signed_certificate_and_generate_wallet_trigger)
|
158
|
+
if validate_network_trigger is not None:
|
159
|
+
pulumi.set(__self__, "validate_network_trigger", validate_network_trigger)
|
160
|
+
|
161
|
+
@property
|
162
|
+
@pulumi.getter(name="catalogDetails")
|
163
|
+
def catalog_details(self) -> pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseCatalogDetailArgs']]]:
|
164
|
+
"""
|
165
|
+
Collection of ATP-Dedicated catalogs that needs to be created.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "catalog_details")
|
168
|
+
|
169
|
+
@catalog_details.setter
|
170
|
+
def catalog_details(self, value: pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseCatalogDetailArgs']]]):
|
171
|
+
pulumi.set(self, "catalog_details", value)
|
172
|
+
|
173
|
+
@property
|
174
|
+
@pulumi.getter(name="characterSet")
|
175
|
+
def character_set(self) -> pulumi.Input[str]:
|
176
|
+
"""
|
177
|
+
The character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
178
|
+
"""
|
179
|
+
return pulumi.get(self, "character_set")
|
180
|
+
|
181
|
+
@character_set.setter
|
182
|
+
def character_set(self, value: pulumi.Input[str]):
|
183
|
+
pulumi.set(self, "character_set", value)
|
184
|
+
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="compartmentId")
|
187
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
188
|
+
"""
|
189
|
+
(Updatable) Identifier of the compartment where sharded database is to be created.
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "compartment_id")
|
192
|
+
|
193
|
+
@compartment_id.setter
|
194
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
195
|
+
pulumi.set(self, "compartment_id", value)
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="dbDeploymentType")
|
199
|
+
def db_deployment_type(self) -> pulumi.Input[str]:
|
200
|
+
"""
|
201
|
+
The database deployment type.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "db_deployment_type")
|
204
|
+
|
205
|
+
@db_deployment_type.setter
|
206
|
+
def db_deployment_type(self, value: pulumi.Input[str]):
|
207
|
+
pulumi.set(self, "db_deployment_type", value)
|
208
|
+
|
209
|
+
@property
|
210
|
+
@pulumi.getter(name="dbVersion")
|
211
|
+
def db_version(self) -> pulumi.Input[str]:
|
212
|
+
"""
|
213
|
+
Oracle Database version of the Autonomous Container Database.
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "db_version")
|
216
|
+
|
217
|
+
@db_version.setter
|
218
|
+
def db_version(self, value: pulumi.Input[str]):
|
219
|
+
pulumi.set(self, "db_version", value)
|
220
|
+
|
221
|
+
@property
|
222
|
+
@pulumi.getter(name="dbWorkload")
|
223
|
+
def db_workload(self) -> pulumi.Input[str]:
|
224
|
+
"""
|
225
|
+
Possible workload types.
|
226
|
+
"""
|
227
|
+
return pulumi.get(self, "db_workload")
|
228
|
+
|
229
|
+
@db_workload.setter
|
230
|
+
def db_workload(self, value: pulumi.Input[str]):
|
231
|
+
pulumi.set(self, "db_workload", value)
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="displayName")
|
235
|
+
def display_name(self) -> pulumi.Input[str]:
|
236
|
+
"""
|
237
|
+
(Updatable) Oracle sharded database display name.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "display_name")
|
240
|
+
|
241
|
+
@display_name.setter
|
242
|
+
def display_name(self, value: pulumi.Input[str]):
|
243
|
+
pulumi.set(self, "display_name", value)
|
244
|
+
|
245
|
+
@property
|
246
|
+
@pulumi.getter(name="listenerPort")
|
247
|
+
def listener_port(self) -> pulumi.Input[int]:
|
248
|
+
"""
|
249
|
+
The listener port number for sharded database.
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "listener_port")
|
252
|
+
|
253
|
+
@listener_port.setter
|
254
|
+
def listener_port(self, value: pulumi.Input[int]):
|
255
|
+
pulumi.set(self, "listener_port", value)
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="listenerPortTls")
|
259
|
+
def listener_port_tls(self) -> pulumi.Input[int]:
|
260
|
+
"""
|
261
|
+
The TLS listener port number for sharded database.
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "listener_port_tls")
|
264
|
+
|
265
|
+
@listener_port_tls.setter
|
266
|
+
def listener_port_tls(self, value: pulumi.Input[int]):
|
267
|
+
pulumi.set(self, "listener_port_tls", value)
|
268
|
+
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="ncharacterSet")
|
271
|
+
def ncharacter_set(self) -> pulumi.Input[str]:
|
272
|
+
"""
|
273
|
+
The national character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed national character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "ncharacter_set")
|
276
|
+
|
277
|
+
@ncharacter_set.setter
|
278
|
+
def ncharacter_set(self, value: pulumi.Input[str]):
|
279
|
+
pulumi.set(self, "ncharacter_set", value)
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="onsPortLocal")
|
283
|
+
def ons_port_local(self) -> pulumi.Input[int]:
|
284
|
+
"""
|
285
|
+
Ons port local for sharded database.
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "ons_port_local")
|
288
|
+
|
289
|
+
@ons_port_local.setter
|
290
|
+
def ons_port_local(self, value: pulumi.Input[int]):
|
291
|
+
pulumi.set(self, "ons_port_local", value)
|
292
|
+
|
293
|
+
@property
|
294
|
+
@pulumi.getter(name="onsPortRemote")
|
295
|
+
def ons_port_remote(self) -> pulumi.Input[int]:
|
296
|
+
"""
|
297
|
+
Ons remote port for sharded database.
|
298
|
+
"""
|
299
|
+
return pulumi.get(self, "ons_port_remote")
|
300
|
+
|
301
|
+
@ons_port_remote.setter
|
302
|
+
def ons_port_remote(self, value: pulumi.Input[int]):
|
303
|
+
pulumi.set(self, "ons_port_remote", value)
|
304
|
+
|
305
|
+
@property
|
306
|
+
@pulumi.getter
|
307
|
+
def prefix(self) -> pulumi.Input[str]:
|
308
|
+
"""
|
309
|
+
Unique name prefix for the sharded databases. Only alpha-numeric values are allowed. First character has to be a letter followed by any combination of letter and number.
|
310
|
+
"""
|
311
|
+
return pulumi.get(self, "prefix")
|
312
|
+
|
313
|
+
@prefix.setter
|
314
|
+
def prefix(self, value: pulumi.Input[str]):
|
315
|
+
pulumi.set(self, "prefix", value)
|
316
|
+
|
317
|
+
@property
|
318
|
+
@pulumi.getter(name="shardDetails")
|
319
|
+
def shard_details(self) -> pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseShardDetailArgs']]]:
|
320
|
+
"""
|
321
|
+
Collection of ATP-Dedicated shards that needs to be created.
|
322
|
+
"""
|
323
|
+
return pulumi.get(self, "shard_details")
|
324
|
+
|
325
|
+
@shard_details.setter
|
326
|
+
def shard_details(self, value: pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseShardDetailArgs']]]):
|
327
|
+
pulumi.set(self, "shard_details", value)
|
328
|
+
|
329
|
+
@property
|
330
|
+
@pulumi.getter(name="shardingMethod")
|
331
|
+
def sharding_method(self) -> pulumi.Input[str]:
|
332
|
+
"""
|
333
|
+
Sharding Method.
|
334
|
+
"""
|
335
|
+
return pulumi.get(self, "sharding_method")
|
336
|
+
|
337
|
+
@sharding_method.setter
|
338
|
+
def sharding_method(self, value: pulumi.Input[str]):
|
339
|
+
pulumi.set(self, "sharding_method", value)
|
340
|
+
|
341
|
+
@property
|
342
|
+
@pulumi.getter(name="caSignedCertificate")
|
343
|
+
def ca_signed_certificate(self) -> Optional[pulumi.Input[str]]:
|
344
|
+
return pulumi.get(self, "ca_signed_certificate")
|
345
|
+
|
346
|
+
@ca_signed_certificate.setter
|
347
|
+
def ca_signed_certificate(self, value: Optional[pulumi.Input[str]]):
|
348
|
+
pulumi.set(self, "ca_signed_certificate", value)
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter
|
352
|
+
def chunks(self) -> Optional[pulumi.Input[int]]:
|
353
|
+
"""
|
354
|
+
The default number of unique chunks in a shardspace. The value of chunks must be greater than 2 times the size of the largest shardgroup in any shardspace.
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "chunks")
|
357
|
+
|
358
|
+
@chunks.setter
|
359
|
+
def chunks(self, value: Optional[pulumi.Input[int]]):
|
360
|
+
pulumi.set(self, "chunks", value)
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter(name="clusterCertificateCommonName")
|
364
|
+
def cluster_certificate_common_name(self) -> Optional[pulumi.Input[str]]:
|
365
|
+
"""
|
366
|
+
The certificate common name used in all cloudAutonomousVmClusters for the sharded database topology. Eg. Production. All the clusters used in one sharded database topology shall have same CABundle setup. Valid characterset for clusterCertificateCommonName include uppercase or lowercase letters, numbers, hyphens, underscores, and period.
|
367
|
+
"""
|
368
|
+
return pulumi.get(self, "cluster_certificate_common_name")
|
369
|
+
|
370
|
+
@cluster_certificate_common_name.setter
|
371
|
+
def cluster_certificate_common_name(self, value: Optional[pulumi.Input[str]]):
|
372
|
+
pulumi.set(self, "cluster_certificate_common_name", value)
|
373
|
+
|
374
|
+
@property
|
375
|
+
@pulumi.getter(name="configureGsmsTrigger")
|
376
|
+
def configure_gsms_trigger(self) -> Optional[pulumi.Input[int]]:
|
377
|
+
"""
|
378
|
+
(Updatable) An optional property when incremented triggers Configure Gsms. Could be set to any integer value.
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "configure_gsms_trigger")
|
381
|
+
|
382
|
+
@configure_gsms_trigger.setter
|
383
|
+
def configure_gsms_trigger(self, value: Optional[pulumi.Input[int]]):
|
384
|
+
pulumi.set(self, "configure_gsms_trigger", value)
|
385
|
+
|
386
|
+
@property
|
387
|
+
@pulumi.getter(name="configureGsmsTriggerIsLatestGsmImage")
|
388
|
+
def configure_gsms_trigger_is_latest_gsm_image(self) -> Optional[pulumi.Input[bool]]:
|
389
|
+
return pulumi.get(self, "configure_gsms_trigger_is_latest_gsm_image")
|
390
|
+
|
391
|
+
@configure_gsms_trigger_is_latest_gsm_image.setter
|
392
|
+
def configure_gsms_trigger_is_latest_gsm_image(self, value: Optional[pulumi.Input[bool]]):
|
393
|
+
pulumi.set(self, "configure_gsms_trigger_is_latest_gsm_image", value)
|
394
|
+
|
395
|
+
@property
|
396
|
+
@pulumi.getter(name="configureGsmsTriggerOldGsmNames")
|
397
|
+
def configure_gsms_trigger_old_gsm_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
398
|
+
return pulumi.get(self, "configure_gsms_trigger_old_gsm_names")
|
399
|
+
|
400
|
+
@configure_gsms_trigger_old_gsm_names.setter
|
401
|
+
def configure_gsms_trigger_old_gsm_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
402
|
+
pulumi.set(self, "configure_gsms_trigger_old_gsm_names", value)
|
403
|
+
|
404
|
+
@property
|
405
|
+
@pulumi.getter(name="configureShardingTrigger")
|
406
|
+
def configure_sharding_trigger(self) -> Optional[pulumi.Input[int]]:
|
407
|
+
"""
|
408
|
+
(Updatable) An optional property when incremented triggers Configure Sharding. Could be set to any integer value.
|
409
|
+
"""
|
410
|
+
return pulumi.get(self, "configure_sharding_trigger")
|
411
|
+
|
412
|
+
@configure_sharding_trigger.setter
|
413
|
+
def configure_sharding_trigger(self, value: Optional[pulumi.Input[int]]):
|
414
|
+
pulumi.set(self, "configure_sharding_trigger", value)
|
415
|
+
|
416
|
+
@property
|
417
|
+
@pulumi.getter(name="definedTags")
|
418
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
419
|
+
"""
|
420
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
421
|
+
"""
|
422
|
+
return pulumi.get(self, "defined_tags")
|
423
|
+
|
424
|
+
@defined_tags.setter
|
425
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
426
|
+
pulumi.set(self, "defined_tags", value)
|
427
|
+
|
428
|
+
@property
|
429
|
+
@pulumi.getter(name="downloadGsmCertificateSigningRequestTrigger")
|
430
|
+
def download_gsm_certificate_signing_request_trigger(self) -> Optional[pulumi.Input[int]]:
|
431
|
+
"""
|
432
|
+
(Updatable) An optional property when incremented triggers Download Gsm Certificate Signing Request. Could be set to any integer value.
|
433
|
+
"""
|
434
|
+
return pulumi.get(self, "download_gsm_certificate_signing_request_trigger")
|
435
|
+
|
436
|
+
@download_gsm_certificate_signing_request_trigger.setter
|
437
|
+
def download_gsm_certificate_signing_request_trigger(self, value: Optional[pulumi.Input[int]]):
|
438
|
+
pulumi.set(self, "download_gsm_certificate_signing_request_trigger", value)
|
439
|
+
|
440
|
+
@property
|
441
|
+
@pulumi.getter(name="freeformTags")
|
442
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
443
|
+
"""
|
444
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
445
|
+
"""
|
446
|
+
return pulumi.get(self, "freeform_tags")
|
447
|
+
|
448
|
+
@freeform_tags.setter
|
449
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
450
|
+
pulumi.set(self, "freeform_tags", value)
|
451
|
+
|
452
|
+
@property
|
453
|
+
@pulumi.getter(name="generateGsmCertificateSigningRequestTrigger")
|
454
|
+
def generate_gsm_certificate_signing_request_trigger(self) -> Optional[pulumi.Input[int]]:
|
455
|
+
"""
|
456
|
+
(Updatable) An optional property when incremented triggers Generate Gsm Certificate Signing Request. Could be set to any integer value.
|
457
|
+
"""
|
458
|
+
return pulumi.get(self, "generate_gsm_certificate_signing_request_trigger")
|
459
|
+
|
460
|
+
@generate_gsm_certificate_signing_request_trigger.setter
|
461
|
+
def generate_gsm_certificate_signing_request_trigger(self, value: Optional[pulumi.Input[int]]):
|
462
|
+
pulumi.set(self, "generate_gsm_certificate_signing_request_trigger", value)
|
463
|
+
|
464
|
+
@property
|
465
|
+
@pulumi.getter(name="generateWalletPassword")
|
466
|
+
def generate_wallet_password(self) -> Optional[pulumi.Input[str]]:
|
467
|
+
return pulumi.get(self, "generate_wallet_password")
|
468
|
+
|
469
|
+
@generate_wallet_password.setter
|
470
|
+
def generate_wallet_password(self, value: Optional[pulumi.Input[str]]):
|
471
|
+
pulumi.set(self, "generate_wallet_password", value)
|
472
|
+
|
473
|
+
@property
|
474
|
+
@pulumi.getter(name="generateWalletTrigger")
|
475
|
+
def generate_wallet_trigger(self) -> Optional[pulumi.Input[int]]:
|
476
|
+
"""
|
477
|
+
(Updatable) An optional property when incremented triggers Generate Wallet. Could be set to any integer value.
|
478
|
+
"""
|
479
|
+
return pulumi.get(self, "generate_wallet_trigger")
|
480
|
+
|
481
|
+
@generate_wallet_trigger.setter
|
482
|
+
def generate_wallet_trigger(self, value: Optional[pulumi.Input[int]]):
|
483
|
+
pulumi.set(self, "generate_wallet_trigger", value)
|
484
|
+
|
485
|
+
@property
|
486
|
+
@pulumi.getter(name="getConnectionStringTrigger")
|
487
|
+
def get_connection_string_trigger(self) -> Optional[pulumi.Input[int]]:
|
488
|
+
"""
|
489
|
+
(Updatable) An optional property when incremented triggers Get Connection String. Could be set to any integer value.
|
490
|
+
"""
|
491
|
+
return pulumi.get(self, "get_connection_string_trigger")
|
492
|
+
|
493
|
+
@get_connection_string_trigger.setter
|
494
|
+
def get_connection_string_trigger(self, value: Optional[pulumi.Input[int]]):
|
495
|
+
pulumi.set(self, "get_connection_string_trigger", value)
|
496
|
+
|
497
|
+
@property
|
498
|
+
@pulumi.getter(name="patchOperations")
|
499
|
+
def patch_operations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabasePatchOperationArgs']]]]:
|
500
|
+
"""
|
501
|
+
(Updatable)
|
502
|
+
"""
|
503
|
+
return pulumi.get(self, "patch_operations")
|
504
|
+
|
505
|
+
@patch_operations.setter
|
506
|
+
def patch_operations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabasePatchOperationArgs']]]]):
|
507
|
+
pulumi.set(self, "patch_operations", value)
|
508
|
+
|
509
|
+
@property
|
510
|
+
@pulumi.getter(name="replicationFactor")
|
511
|
+
def replication_factor(self) -> Optional[pulumi.Input[int]]:
|
512
|
+
"""
|
513
|
+
The Replication factor for RAFT replication based sharded database. Currently supported values are 3, 5 and 7.
|
514
|
+
"""
|
515
|
+
return pulumi.get(self, "replication_factor")
|
516
|
+
|
517
|
+
@replication_factor.setter
|
518
|
+
def replication_factor(self, value: Optional[pulumi.Input[int]]):
|
519
|
+
pulumi.set(self, "replication_factor", value)
|
520
|
+
|
521
|
+
@property
|
522
|
+
@pulumi.getter(name="replicationMethod")
|
523
|
+
def replication_method(self) -> Optional[pulumi.Input[str]]:
|
524
|
+
"""
|
525
|
+
The Replication method for sharded database.
|
526
|
+
"""
|
527
|
+
return pulumi.get(self, "replication_method")
|
528
|
+
|
529
|
+
@replication_method.setter
|
530
|
+
def replication_method(self, value: Optional[pulumi.Input[str]]):
|
531
|
+
pulumi.set(self, "replication_method", value)
|
532
|
+
|
533
|
+
@property
|
534
|
+
@pulumi.getter(name="replicationUnit")
|
535
|
+
def replication_unit(self) -> Optional[pulumi.Input[int]]:
|
536
|
+
"""
|
537
|
+
For RAFT replication based sharded database, the value should be atleast twice the number of shards.
|
538
|
+
"""
|
539
|
+
return pulumi.get(self, "replication_unit")
|
540
|
+
|
541
|
+
@replication_unit.setter
|
542
|
+
def replication_unit(self, value: Optional[pulumi.Input[int]]):
|
543
|
+
pulumi.set(self, "replication_unit", value)
|
544
|
+
|
545
|
+
@property
|
546
|
+
@pulumi.getter(name="startDatabaseTrigger")
|
547
|
+
def start_database_trigger(self) -> Optional[pulumi.Input[int]]:
|
548
|
+
"""
|
549
|
+
(Updatable) An optional property when incremented triggers Start Database. Could be set to any integer value.
|
550
|
+
"""
|
551
|
+
return pulumi.get(self, "start_database_trigger")
|
552
|
+
|
553
|
+
@start_database_trigger.setter
|
554
|
+
def start_database_trigger(self, value: Optional[pulumi.Input[int]]):
|
555
|
+
pulumi.set(self, "start_database_trigger", value)
|
556
|
+
|
557
|
+
@property
|
558
|
+
@pulumi.getter(name="stopDatabaseTrigger")
|
559
|
+
def stop_database_trigger(self) -> Optional[pulumi.Input[int]]:
|
560
|
+
"""
|
561
|
+
(Updatable) An optional property when incremented triggers Stop Database. Could be set to any integer value.
|
562
|
+
"""
|
563
|
+
return pulumi.get(self, "stop_database_trigger")
|
564
|
+
|
565
|
+
@stop_database_trigger.setter
|
566
|
+
def stop_database_trigger(self, value: Optional[pulumi.Input[int]]):
|
567
|
+
pulumi.set(self, "stop_database_trigger", value)
|
568
|
+
|
569
|
+
@property
|
570
|
+
@pulumi.getter(name="uploadSignedCertificateAndGenerateWalletTrigger")
|
571
|
+
def upload_signed_certificate_and_generate_wallet_trigger(self) -> Optional[pulumi.Input[int]]:
|
572
|
+
"""
|
573
|
+
(Updatable) An optional property when incremented triggers Upload Signed Certificate And Generate Wallet. Could be set to any integer value.
|
574
|
+
"""
|
575
|
+
return pulumi.get(self, "upload_signed_certificate_and_generate_wallet_trigger")
|
576
|
+
|
577
|
+
@upload_signed_certificate_and_generate_wallet_trigger.setter
|
578
|
+
def upload_signed_certificate_and_generate_wallet_trigger(self, value: Optional[pulumi.Input[int]]):
|
579
|
+
pulumi.set(self, "upload_signed_certificate_and_generate_wallet_trigger", value)
|
580
|
+
|
581
|
+
@property
|
582
|
+
@pulumi.getter(name="validateNetworkTrigger")
|
583
|
+
def validate_network_trigger(self) -> Optional[pulumi.Input[int]]:
|
584
|
+
"""
|
585
|
+
(Updatable) An optional property when incremented triggers Validate Network. Could be set to any integer value.
|
586
|
+
|
587
|
+
|
588
|
+
** IMPORTANT **
|
589
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
590
|
+
"""
|
591
|
+
return pulumi.get(self, "validate_network_trigger")
|
592
|
+
|
593
|
+
@validate_network_trigger.setter
|
594
|
+
def validate_network_trigger(self, value: Optional[pulumi.Input[int]]):
|
595
|
+
pulumi.set(self, "validate_network_trigger", value)
|
596
|
+
|
597
|
+
|
598
|
+
@pulumi.input_type
|
599
|
+
class _ShardedDatabaseState:
|
600
|
+
def __init__(__self__, *,
|
601
|
+
ca_signed_certificate: Optional[pulumi.Input[str]] = None,
|
602
|
+
catalog_details: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseCatalogDetailArgs']]]] = None,
|
603
|
+
character_set: Optional[pulumi.Input[str]] = None,
|
604
|
+
chunks: Optional[pulumi.Input[int]] = None,
|
605
|
+
cluster_certificate_common_name: Optional[pulumi.Input[str]] = None,
|
606
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
607
|
+
configure_gsms_trigger: Optional[pulumi.Input[int]] = None,
|
608
|
+
configure_gsms_trigger_is_latest_gsm_image: Optional[pulumi.Input[bool]] = None,
|
609
|
+
configure_gsms_trigger_old_gsm_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
610
|
+
configure_sharding_trigger: Optional[pulumi.Input[int]] = None,
|
611
|
+
connection_strings: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseConnectionStringArgs']]]] = None,
|
612
|
+
db_deployment_type: Optional[pulumi.Input[str]] = None,
|
613
|
+
db_version: Optional[pulumi.Input[str]] = None,
|
614
|
+
db_workload: Optional[pulumi.Input[str]] = None,
|
615
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
616
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
617
|
+
download_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
618
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
619
|
+
generate_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
620
|
+
generate_wallet_password: Optional[pulumi.Input[str]] = None,
|
621
|
+
generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
622
|
+
get_connection_string_trigger: Optional[pulumi.Input[int]] = None,
|
623
|
+
gsms: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseGsmArgs']]]] = None,
|
624
|
+
lifecycle_state: Optional[pulumi.Input[str]] = None,
|
625
|
+
lifecycle_state_details: Optional[pulumi.Input[str]] = None,
|
626
|
+
listener_port: Optional[pulumi.Input[int]] = None,
|
627
|
+
listener_port_tls: Optional[pulumi.Input[int]] = None,
|
628
|
+
ncharacter_set: Optional[pulumi.Input[str]] = None,
|
629
|
+
ons_port_local: Optional[pulumi.Input[int]] = None,
|
630
|
+
ons_port_remote: Optional[pulumi.Input[int]] = None,
|
631
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabasePatchOperationArgs']]]] = None,
|
632
|
+
prefix: Optional[pulumi.Input[str]] = None,
|
633
|
+
private_endpoint: Optional[pulumi.Input[str]] = None,
|
634
|
+
replication_factor: Optional[pulumi.Input[int]] = None,
|
635
|
+
replication_method: Optional[pulumi.Input[str]] = None,
|
636
|
+
replication_unit: Optional[pulumi.Input[int]] = None,
|
637
|
+
shard_details: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseShardDetailArgs']]]] = None,
|
638
|
+
sharded_database_id: Optional[pulumi.Input[str]] = None,
|
639
|
+
sharding_method: Optional[pulumi.Input[str]] = None,
|
640
|
+
start_database_trigger: Optional[pulumi.Input[int]] = None,
|
641
|
+
state: Optional[pulumi.Input[str]] = None,
|
642
|
+
stop_database_trigger: Optional[pulumi.Input[int]] = None,
|
643
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
644
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
645
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
646
|
+
time_zone: Optional[pulumi.Input[str]] = None,
|
647
|
+
upload_signed_certificate_and_generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
648
|
+
validate_network_trigger: Optional[pulumi.Input[int]] = None):
|
649
|
+
"""
|
650
|
+
Input properties used for looking up and filtering ShardedDatabase resources.
|
651
|
+
:param pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseCatalogDetailArgs']]] catalog_details: Collection of ATP-Dedicated catalogs that needs to be created.
|
652
|
+
:param pulumi.Input[str] character_set: The character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
653
|
+
:param pulumi.Input[int] chunks: The default number of unique chunks in a shardspace. The value of chunks must be greater than 2 times the size of the largest shardgroup in any shardspace.
|
654
|
+
:param pulumi.Input[str] cluster_certificate_common_name: The certificate common name used in all cloudAutonomousVmClusters for the sharded database topology. Eg. Production. All the clusters used in one sharded database topology shall have same CABundle setup. Valid characterset for clusterCertificateCommonName include uppercase or lowercase letters, numbers, hyphens, underscores, and period.
|
655
|
+
:param pulumi.Input[str] compartment_id: (Updatable) Identifier of the compartment where sharded database is to be created.
|
656
|
+
:param pulumi.Input[int] configure_gsms_trigger: (Updatable) An optional property when incremented triggers Configure Gsms. Could be set to any integer value.
|
657
|
+
:param pulumi.Input[int] configure_sharding_trigger: (Updatable) An optional property when incremented triggers Configure Sharding. Could be set to any integer value.
|
658
|
+
:param pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseConnectionStringArgs']]] connection_strings: Details of sharded database connection String.
|
659
|
+
:param pulumi.Input[str] db_deployment_type: The database deployment type.
|
660
|
+
:param pulumi.Input[str] db_version: Oracle Database version of the Autonomous Container Database.
|
661
|
+
:param pulumi.Input[str] db_workload: Possible workload types.
|
662
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
663
|
+
:param pulumi.Input[str] display_name: (Updatable) Oracle sharded database display name.
|
664
|
+
:param pulumi.Input[int] download_gsm_certificate_signing_request_trigger: (Updatable) An optional property when incremented triggers Download Gsm Certificate Signing Request. Could be set to any integer value.
|
665
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
666
|
+
:param pulumi.Input[int] generate_gsm_certificate_signing_request_trigger: (Updatable) An optional property when incremented triggers Generate Gsm Certificate Signing Request. Could be set to any integer value.
|
667
|
+
:param pulumi.Input[int] generate_wallet_trigger: (Updatable) An optional property when incremented triggers Generate Wallet. Could be set to any integer value.
|
668
|
+
:param pulumi.Input[int] get_connection_string_trigger: (Updatable) An optional property when incremented triggers Get Connection String. Could be set to any integer value.
|
669
|
+
:param pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseGsmArgs']]] gsms: Details of GSM instances for the sharded database.
|
670
|
+
:param pulumi.Input[str] lifecycle_state_details: Detailed message for the lifecycle state.
|
671
|
+
:param pulumi.Input[int] listener_port: The listener port number for sharded database.
|
672
|
+
:param pulumi.Input[int] listener_port_tls: The TLS listener port number for sharded database.
|
673
|
+
:param pulumi.Input[str] ncharacter_set: The national character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed national character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
674
|
+
:param pulumi.Input[int] ons_port_local: Ons port local for sharded database.
|
675
|
+
:param pulumi.Input[int] ons_port_remote: Ons remote port for sharded database.
|
676
|
+
:param pulumi.Input[Sequence[pulumi.Input['ShardedDatabasePatchOperationArgs']]] patch_operations: (Updatable)
|
677
|
+
:param pulumi.Input[str] prefix: Unique name prefix for the sharded databases. Only alpha-numeric values are allowed. First character has to be a letter followed by any combination of letter and number.
|
678
|
+
:param pulumi.Input[str] private_endpoint: The OCID of private endpoint being used by the sharded database.
|
679
|
+
:param pulumi.Input[int] replication_factor: The Replication factor for RAFT replication based sharded database. Currently supported values are 3, 5 and 7.
|
680
|
+
:param pulumi.Input[str] replication_method: The Replication method for sharded database.
|
681
|
+
:param pulumi.Input[int] replication_unit: For RAFT replication based sharded database, the value should be atleast twice the number of shards.
|
682
|
+
:param pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseShardDetailArgs']]] shard_details: Collection of ATP-Dedicated shards that needs to be created.
|
683
|
+
:param pulumi.Input[str] sharding_method: Sharding Method.
|
684
|
+
:param pulumi.Input[int] start_database_trigger: (Updatable) An optional property when incremented triggers Start Database. Could be set to any integer value.
|
685
|
+
:param pulumi.Input[str] state: Lifecycle states for sharded databases.
|
686
|
+
:param pulumi.Input[int] stop_database_trigger: (Updatable) An optional property when incremented triggers Stop Database. Could be set to any integer value.
|
687
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
688
|
+
:param pulumi.Input[str] time_created: The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
689
|
+
:param pulumi.Input[str] time_updated: The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
690
|
+
:param pulumi.Input[str] time_zone: Timezone associated with the sharded database.
|
691
|
+
:param pulumi.Input[int] upload_signed_certificate_and_generate_wallet_trigger: (Updatable) An optional property when incremented triggers Upload Signed Certificate And Generate Wallet. Could be set to any integer value.
|
692
|
+
:param pulumi.Input[int] validate_network_trigger: (Updatable) An optional property when incremented triggers Validate Network. Could be set to any integer value.
|
693
|
+
|
694
|
+
|
695
|
+
** IMPORTANT **
|
696
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
697
|
+
"""
|
698
|
+
if ca_signed_certificate is not None:
|
699
|
+
pulumi.set(__self__, "ca_signed_certificate", ca_signed_certificate)
|
700
|
+
if catalog_details is not None:
|
701
|
+
pulumi.set(__self__, "catalog_details", catalog_details)
|
702
|
+
if character_set is not None:
|
703
|
+
pulumi.set(__self__, "character_set", character_set)
|
704
|
+
if chunks is not None:
|
705
|
+
pulumi.set(__self__, "chunks", chunks)
|
706
|
+
if cluster_certificate_common_name is not None:
|
707
|
+
pulumi.set(__self__, "cluster_certificate_common_name", cluster_certificate_common_name)
|
708
|
+
if compartment_id is not None:
|
709
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
710
|
+
if configure_gsms_trigger is not None:
|
711
|
+
pulumi.set(__self__, "configure_gsms_trigger", configure_gsms_trigger)
|
712
|
+
if configure_gsms_trigger_is_latest_gsm_image is not None:
|
713
|
+
pulumi.set(__self__, "configure_gsms_trigger_is_latest_gsm_image", configure_gsms_trigger_is_latest_gsm_image)
|
714
|
+
if configure_gsms_trigger_old_gsm_names is not None:
|
715
|
+
pulumi.set(__self__, "configure_gsms_trigger_old_gsm_names", configure_gsms_trigger_old_gsm_names)
|
716
|
+
if configure_sharding_trigger is not None:
|
717
|
+
pulumi.set(__self__, "configure_sharding_trigger", configure_sharding_trigger)
|
718
|
+
if connection_strings is not None:
|
719
|
+
pulumi.set(__self__, "connection_strings", connection_strings)
|
720
|
+
if db_deployment_type is not None:
|
721
|
+
pulumi.set(__self__, "db_deployment_type", db_deployment_type)
|
722
|
+
if db_version is not None:
|
723
|
+
pulumi.set(__self__, "db_version", db_version)
|
724
|
+
if db_workload is not None:
|
725
|
+
pulumi.set(__self__, "db_workload", db_workload)
|
726
|
+
if defined_tags is not None:
|
727
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
728
|
+
if display_name is not None:
|
729
|
+
pulumi.set(__self__, "display_name", display_name)
|
730
|
+
if download_gsm_certificate_signing_request_trigger is not None:
|
731
|
+
pulumi.set(__self__, "download_gsm_certificate_signing_request_trigger", download_gsm_certificate_signing_request_trigger)
|
732
|
+
if freeform_tags is not None:
|
733
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
734
|
+
if generate_gsm_certificate_signing_request_trigger is not None:
|
735
|
+
pulumi.set(__self__, "generate_gsm_certificate_signing_request_trigger", generate_gsm_certificate_signing_request_trigger)
|
736
|
+
if generate_wallet_password is not None:
|
737
|
+
pulumi.set(__self__, "generate_wallet_password", generate_wallet_password)
|
738
|
+
if generate_wallet_trigger is not None:
|
739
|
+
pulumi.set(__self__, "generate_wallet_trigger", generate_wallet_trigger)
|
740
|
+
if get_connection_string_trigger is not None:
|
741
|
+
pulumi.set(__self__, "get_connection_string_trigger", get_connection_string_trigger)
|
742
|
+
if gsms is not None:
|
743
|
+
pulumi.set(__self__, "gsms", gsms)
|
744
|
+
if lifecycle_state is not None:
|
745
|
+
pulumi.set(__self__, "lifecycle_state", lifecycle_state)
|
746
|
+
if lifecycle_state_details is not None:
|
747
|
+
pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
|
748
|
+
if listener_port is not None:
|
749
|
+
pulumi.set(__self__, "listener_port", listener_port)
|
750
|
+
if listener_port_tls is not None:
|
751
|
+
pulumi.set(__self__, "listener_port_tls", listener_port_tls)
|
752
|
+
if ncharacter_set is not None:
|
753
|
+
pulumi.set(__self__, "ncharacter_set", ncharacter_set)
|
754
|
+
if ons_port_local is not None:
|
755
|
+
pulumi.set(__self__, "ons_port_local", ons_port_local)
|
756
|
+
if ons_port_remote is not None:
|
757
|
+
pulumi.set(__self__, "ons_port_remote", ons_port_remote)
|
758
|
+
if patch_operations is not None:
|
759
|
+
pulumi.set(__self__, "patch_operations", patch_operations)
|
760
|
+
if prefix is not None:
|
761
|
+
pulumi.set(__self__, "prefix", prefix)
|
762
|
+
if private_endpoint is not None:
|
763
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
764
|
+
if replication_factor is not None:
|
765
|
+
pulumi.set(__self__, "replication_factor", replication_factor)
|
766
|
+
if replication_method is not None:
|
767
|
+
pulumi.set(__self__, "replication_method", replication_method)
|
768
|
+
if replication_unit is not None:
|
769
|
+
pulumi.set(__self__, "replication_unit", replication_unit)
|
770
|
+
if shard_details is not None:
|
771
|
+
pulumi.set(__self__, "shard_details", shard_details)
|
772
|
+
if sharded_database_id is not None:
|
773
|
+
pulumi.set(__self__, "sharded_database_id", sharded_database_id)
|
774
|
+
if sharding_method is not None:
|
775
|
+
pulumi.set(__self__, "sharding_method", sharding_method)
|
776
|
+
if start_database_trigger is not None:
|
777
|
+
pulumi.set(__self__, "start_database_trigger", start_database_trigger)
|
778
|
+
if state is not None:
|
779
|
+
pulumi.set(__self__, "state", state)
|
780
|
+
if stop_database_trigger is not None:
|
781
|
+
pulumi.set(__self__, "stop_database_trigger", stop_database_trigger)
|
782
|
+
if system_tags is not None:
|
783
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
784
|
+
if time_created is not None:
|
785
|
+
pulumi.set(__self__, "time_created", time_created)
|
786
|
+
if time_updated is not None:
|
787
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
788
|
+
if time_zone is not None:
|
789
|
+
pulumi.set(__self__, "time_zone", time_zone)
|
790
|
+
if upload_signed_certificate_and_generate_wallet_trigger is not None:
|
791
|
+
pulumi.set(__self__, "upload_signed_certificate_and_generate_wallet_trigger", upload_signed_certificate_and_generate_wallet_trigger)
|
792
|
+
if validate_network_trigger is not None:
|
793
|
+
pulumi.set(__self__, "validate_network_trigger", validate_network_trigger)
|
794
|
+
|
795
|
+
@property
|
796
|
+
@pulumi.getter(name="caSignedCertificate")
|
797
|
+
def ca_signed_certificate(self) -> Optional[pulumi.Input[str]]:
|
798
|
+
return pulumi.get(self, "ca_signed_certificate")
|
799
|
+
|
800
|
+
@ca_signed_certificate.setter
|
801
|
+
def ca_signed_certificate(self, value: Optional[pulumi.Input[str]]):
|
802
|
+
pulumi.set(self, "ca_signed_certificate", value)
|
803
|
+
|
804
|
+
@property
|
805
|
+
@pulumi.getter(name="catalogDetails")
|
806
|
+
def catalog_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseCatalogDetailArgs']]]]:
|
807
|
+
"""
|
808
|
+
Collection of ATP-Dedicated catalogs that needs to be created.
|
809
|
+
"""
|
810
|
+
return pulumi.get(self, "catalog_details")
|
811
|
+
|
812
|
+
@catalog_details.setter
|
813
|
+
def catalog_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseCatalogDetailArgs']]]]):
|
814
|
+
pulumi.set(self, "catalog_details", value)
|
815
|
+
|
816
|
+
@property
|
817
|
+
@pulumi.getter(name="characterSet")
|
818
|
+
def character_set(self) -> Optional[pulumi.Input[str]]:
|
819
|
+
"""
|
820
|
+
The character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
821
|
+
"""
|
822
|
+
return pulumi.get(self, "character_set")
|
823
|
+
|
824
|
+
@character_set.setter
|
825
|
+
def character_set(self, value: Optional[pulumi.Input[str]]):
|
826
|
+
pulumi.set(self, "character_set", value)
|
827
|
+
|
828
|
+
@property
|
829
|
+
@pulumi.getter
|
830
|
+
def chunks(self) -> Optional[pulumi.Input[int]]:
|
831
|
+
"""
|
832
|
+
The default number of unique chunks in a shardspace. The value of chunks must be greater than 2 times the size of the largest shardgroup in any shardspace.
|
833
|
+
"""
|
834
|
+
return pulumi.get(self, "chunks")
|
835
|
+
|
836
|
+
@chunks.setter
|
837
|
+
def chunks(self, value: Optional[pulumi.Input[int]]):
|
838
|
+
pulumi.set(self, "chunks", value)
|
839
|
+
|
840
|
+
@property
|
841
|
+
@pulumi.getter(name="clusterCertificateCommonName")
|
842
|
+
def cluster_certificate_common_name(self) -> Optional[pulumi.Input[str]]:
|
843
|
+
"""
|
844
|
+
The certificate common name used in all cloudAutonomousVmClusters for the sharded database topology. Eg. Production. All the clusters used in one sharded database topology shall have same CABundle setup. Valid characterset for clusterCertificateCommonName include uppercase or lowercase letters, numbers, hyphens, underscores, and period.
|
845
|
+
"""
|
846
|
+
return pulumi.get(self, "cluster_certificate_common_name")
|
847
|
+
|
848
|
+
@cluster_certificate_common_name.setter
|
849
|
+
def cluster_certificate_common_name(self, value: Optional[pulumi.Input[str]]):
|
850
|
+
pulumi.set(self, "cluster_certificate_common_name", value)
|
851
|
+
|
852
|
+
@property
|
853
|
+
@pulumi.getter(name="compartmentId")
|
854
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
855
|
+
"""
|
856
|
+
(Updatable) Identifier of the compartment where sharded database is to be created.
|
857
|
+
"""
|
858
|
+
return pulumi.get(self, "compartment_id")
|
859
|
+
|
860
|
+
@compartment_id.setter
|
861
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
862
|
+
pulumi.set(self, "compartment_id", value)
|
863
|
+
|
864
|
+
@property
|
865
|
+
@pulumi.getter(name="configureGsmsTrigger")
|
866
|
+
def configure_gsms_trigger(self) -> Optional[pulumi.Input[int]]:
|
867
|
+
"""
|
868
|
+
(Updatable) An optional property when incremented triggers Configure Gsms. Could be set to any integer value.
|
869
|
+
"""
|
870
|
+
return pulumi.get(self, "configure_gsms_trigger")
|
871
|
+
|
872
|
+
@configure_gsms_trigger.setter
|
873
|
+
def configure_gsms_trigger(self, value: Optional[pulumi.Input[int]]):
|
874
|
+
pulumi.set(self, "configure_gsms_trigger", value)
|
875
|
+
|
876
|
+
@property
|
877
|
+
@pulumi.getter(name="configureGsmsTriggerIsLatestGsmImage")
|
878
|
+
def configure_gsms_trigger_is_latest_gsm_image(self) -> Optional[pulumi.Input[bool]]:
|
879
|
+
return pulumi.get(self, "configure_gsms_trigger_is_latest_gsm_image")
|
880
|
+
|
881
|
+
@configure_gsms_trigger_is_latest_gsm_image.setter
|
882
|
+
def configure_gsms_trigger_is_latest_gsm_image(self, value: Optional[pulumi.Input[bool]]):
|
883
|
+
pulumi.set(self, "configure_gsms_trigger_is_latest_gsm_image", value)
|
884
|
+
|
885
|
+
@property
|
886
|
+
@pulumi.getter(name="configureGsmsTriggerOldGsmNames")
|
887
|
+
def configure_gsms_trigger_old_gsm_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
888
|
+
return pulumi.get(self, "configure_gsms_trigger_old_gsm_names")
|
889
|
+
|
890
|
+
@configure_gsms_trigger_old_gsm_names.setter
|
891
|
+
def configure_gsms_trigger_old_gsm_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
892
|
+
pulumi.set(self, "configure_gsms_trigger_old_gsm_names", value)
|
893
|
+
|
894
|
+
@property
|
895
|
+
@pulumi.getter(name="configureShardingTrigger")
|
896
|
+
def configure_sharding_trigger(self) -> Optional[pulumi.Input[int]]:
|
897
|
+
"""
|
898
|
+
(Updatable) An optional property when incremented triggers Configure Sharding. Could be set to any integer value.
|
899
|
+
"""
|
900
|
+
return pulumi.get(self, "configure_sharding_trigger")
|
901
|
+
|
902
|
+
@configure_sharding_trigger.setter
|
903
|
+
def configure_sharding_trigger(self, value: Optional[pulumi.Input[int]]):
|
904
|
+
pulumi.set(self, "configure_sharding_trigger", value)
|
905
|
+
|
906
|
+
@property
|
907
|
+
@pulumi.getter(name="connectionStrings")
|
908
|
+
def connection_strings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseConnectionStringArgs']]]]:
|
909
|
+
"""
|
910
|
+
Details of sharded database connection String.
|
911
|
+
"""
|
912
|
+
return pulumi.get(self, "connection_strings")
|
913
|
+
|
914
|
+
@connection_strings.setter
|
915
|
+
def connection_strings(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseConnectionStringArgs']]]]):
|
916
|
+
pulumi.set(self, "connection_strings", value)
|
917
|
+
|
918
|
+
@property
|
919
|
+
@pulumi.getter(name="dbDeploymentType")
|
920
|
+
def db_deployment_type(self) -> Optional[pulumi.Input[str]]:
|
921
|
+
"""
|
922
|
+
The database deployment type.
|
923
|
+
"""
|
924
|
+
return pulumi.get(self, "db_deployment_type")
|
925
|
+
|
926
|
+
@db_deployment_type.setter
|
927
|
+
def db_deployment_type(self, value: Optional[pulumi.Input[str]]):
|
928
|
+
pulumi.set(self, "db_deployment_type", value)
|
929
|
+
|
930
|
+
@property
|
931
|
+
@pulumi.getter(name="dbVersion")
|
932
|
+
def db_version(self) -> Optional[pulumi.Input[str]]:
|
933
|
+
"""
|
934
|
+
Oracle Database version of the Autonomous Container Database.
|
935
|
+
"""
|
936
|
+
return pulumi.get(self, "db_version")
|
937
|
+
|
938
|
+
@db_version.setter
|
939
|
+
def db_version(self, value: Optional[pulumi.Input[str]]):
|
940
|
+
pulumi.set(self, "db_version", value)
|
941
|
+
|
942
|
+
@property
|
943
|
+
@pulumi.getter(name="dbWorkload")
|
944
|
+
def db_workload(self) -> Optional[pulumi.Input[str]]:
|
945
|
+
"""
|
946
|
+
Possible workload types.
|
947
|
+
"""
|
948
|
+
return pulumi.get(self, "db_workload")
|
949
|
+
|
950
|
+
@db_workload.setter
|
951
|
+
def db_workload(self, value: Optional[pulumi.Input[str]]):
|
952
|
+
pulumi.set(self, "db_workload", value)
|
953
|
+
|
954
|
+
@property
|
955
|
+
@pulumi.getter(name="definedTags")
|
956
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
957
|
+
"""
|
958
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
959
|
+
"""
|
960
|
+
return pulumi.get(self, "defined_tags")
|
961
|
+
|
962
|
+
@defined_tags.setter
|
963
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
964
|
+
pulumi.set(self, "defined_tags", value)
|
965
|
+
|
966
|
+
@property
|
967
|
+
@pulumi.getter(name="displayName")
|
968
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
969
|
+
"""
|
970
|
+
(Updatable) Oracle sharded database display name.
|
971
|
+
"""
|
972
|
+
return pulumi.get(self, "display_name")
|
973
|
+
|
974
|
+
@display_name.setter
|
975
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
976
|
+
pulumi.set(self, "display_name", value)
|
977
|
+
|
978
|
+
@property
|
979
|
+
@pulumi.getter(name="downloadGsmCertificateSigningRequestTrigger")
|
980
|
+
def download_gsm_certificate_signing_request_trigger(self) -> Optional[pulumi.Input[int]]:
|
981
|
+
"""
|
982
|
+
(Updatable) An optional property when incremented triggers Download Gsm Certificate Signing Request. Could be set to any integer value.
|
983
|
+
"""
|
984
|
+
return pulumi.get(self, "download_gsm_certificate_signing_request_trigger")
|
985
|
+
|
986
|
+
@download_gsm_certificate_signing_request_trigger.setter
|
987
|
+
def download_gsm_certificate_signing_request_trigger(self, value: Optional[pulumi.Input[int]]):
|
988
|
+
pulumi.set(self, "download_gsm_certificate_signing_request_trigger", value)
|
989
|
+
|
990
|
+
@property
|
991
|
+
@pulumi.getter(name="freeformTags")
|
992
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
993
|
+
"""
|
994
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
995
|
+
"""
|
996
|
+
return pulumi.get(self, "freeform_tags")
|
997
|
+
|
998
|
+
@freeform_tags.setter
|
999
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1000
|
+
pulumi.set(self, "freeform_tags", value)
|
1001
|
+
|
1002
|
+
@property
|
1003
|
+
@pulumi.getter(name="generateGsmCertificateSigningRequestTrigger")
|
1004
|
+
def generate_gsm_certificate_signing_request_trigger(self) -> Optional[pulumi.Input[int]]:
|
1005
|
+
"""
|
1006
|
+
(Updatable) An optional property when incremented triggers Generate Gsm Certificate Signing Request. Could be set to any integer value.
|
1007
|
+
"""
|
1008
|
+
return pulumi.get(self, "generate_gsm_certificate_signing_request_trigger")
|
1009
|
+
|
1010
|
+
@generate_gsm_certificate_signing_request_trigger.setter
|
1011
|
+
def generate_gsm_certificate_signing_request_trigger(self, value: Optional[pulumi.Input[int]]):
|
1012
|
+
pulumi.set(self, "generate_gsm_certificate_signing_request_trigger", value)
|
1013
|
+
|
1014
|
+
@property
|
1015
|
+
@pulumi.getter(name="generateWalletPassword")
|
1016
|
+
def generate_wallet_password(self) -> Optional[pulumi.Input[str]]:
|
1017
|
+
return pulumi.get(self, "generate_wallet_password")
|
1018
|
+
|
1019
|
+
@generate_wallet_password.setter
|
1020
|
+
def generate_wallet_password(self, value: Optional[pulumi.Input[str]]):
|
1021
|
+
pulumi.set(self, "generate_wallet_password", value)
|
1022
|
+
|
1023
|
+
@property
|
1024
|
+
@pulumi.getter(name="generateWalletTrigger")
|
1025
|
+
def generate_wallet_trigger(self) -> Optional[pulumi.Input[int]]:
|
1026
|
+
"""
|
1027
|
+
(Updatable) An optional property when incremented triggers Generate Wallet. Could be set to any integer value.
|
1028
|
+
"""
|
1029
|
+
return pulumi.get(self, "generate_wallet_trigger")
|
1030
|
+
|
1031
|
+
@generate_wallet_trigger.setter
|
1032
|
+
def generate_wallet_trigger(self, value: Optional[pulumi.Input[int]]):
|
1033
|
+
pulumi.set(self, "generate_wallet_trigger", value)
|
1034
|
+
|
1035
|
+
@property
|
1036
|
+
@pulumi.getter(name="getConnectionStringTrigger")
|
1037
|
+
def get_connection_string_trigger(self) -> Optional[pulumi.Input[int]]:
|
1038
|
+
"""
|
1039
|
+
(Updatable) An optional property when incremented triggers Get Connection String. Could be set to any integer value.
|
1040
|
+
"""
|
1041
|
+
return pulumi.get(self, "get_connection_string_trigger")
|
1042
|
+
|
1043
|
+
@get_connection_string_trigger.setter
|
1044
|
+
def get_connection_string_trigger(self, value: Optional[pulumi.Input[int]]):
|
1045
|
+
pulumi.set(self, "get_connection_string_trigger", value)
|
1046
|
+
|
1047
|
+
@property
|
1048
|
+
@pulumi.getter
|
1049
|
+
def gsms(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseGsmArgs']]]]:
|
1050
|
+
"""
|
1051
|
+
Details of GSM instances for the sharded database.
|
1052
|
+
"""
|
1053
|
+
return pulumi.get(self, "gsms")
|
1054
|
+
|
1055
|
+
@gsms.setter
|
1056
|
+
def gsms(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseGsmArgs']]]]):
|
1057
|
+
pulumi.set(self, "gsms", value)
|
1058
|
+
|
1059
|
+
@property
|
1060
|
+
@pulumi.getter(name="lifecycleState")
|
1061
|
+
def lifecycle_state(self) -> Optional[pulumi.Input[str]]:
|
1062
|
+
return pulumi.get(self, "lifecycle_state")
|
1063
|
+
|
1064
|
+
@lifecycle_state.setter
|
1065
|
+
def lifecycle_state(self, value: Optional[pulumi.Input[str]]):
|
1066
|
+
pulumi.set(self, "lifecycle_state", value)
|
1067
|
+
|
1068
|
+
@property
|
1069
|
+
@pulumi.getter(name="lifecycleStateDetails")
|
1070
|
+
def lifecycle_state_details(self) -> Optional[pulumi.Input[str]]:
|
1071
|
+
"""
|
1072
|
+
Detailed message for the lifecycle state.
|
1073
|
+
"""
|
1074
|
+
return pulumi.get(self, "lifecycle_state_details")
|
1075
|
+
|
1076
|
+
@lifecycle_state_details.setter
|
1077
|
+
def lifecycle_state_details(self, value: Optional[pulumi.Input[str]]):
|
1078
|
+
pulumi.set(self, "lifecycle_state_details", value)
|
1079
|
+
|
1080
|
+
@property
|
1081
|
+
@pulumi.getter(name="listenerPort")
|
1082
|
+
def listener_port(self) -> Optional[pulumi.Input[int]]:
|
1083
|
+
"""
|
1084
|
+
The listener port number for sharded database.
|
1085
|
+
"""
|
1086
|
+
return pulumi.get(self, "listener_port")
|
1087
|
+
|
1088
|
+
@listener_port.setter
|
1089
|
+
def listener_port(self, value: Optional[pulumi.Input[int]]):
|
1090
|
+
pulumi.set(self, "listener_port", value)
|
1091
|
+
|
1092
|
+
@property
|
1093
|
+
@pulumi.getter(name="listenerPortTls")
|
1094
|
+
def listener_port_tls(self) -> Optional[pulumi.Input[int]]:
|
1095
|
+
"""
|
1096
|
+
The TLS listener port number for sharded database.
|
1097
|
+
"""
|
1098
|
+
return pulumi.get(self, "listener_port_tls")
|
1099
|
+
|
1100
|
+
@listener_port_tls.setter
|
1101
|
+
def listener_port_tls(self, value: Optional[pulumi.Input[int]]):
|
1102
|
+
pulumi.set(self, "listener_port_tls", value)
|
1103
|
+
|
1104
|
+
@property
|
1105
|
+
@pulumi.getter(name="ncharacterSet")
|
1106
|
+
def ncharacter_set(self) -> Optional[pulumi.Input[str]]:
|
1107
|
+
"""
|
1108
|
+
The national character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed national character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
1109
|
+
"""
|
1110
|
+
return pulumi.get(self, "ncharacter_set")
|
1111
|
+
|
1112
|
+
@ncharacter_set.setter
|
1113
|
+
def ncharacter_set(self, value: Optional[pulumi.Input[str]]):
|
1114
|
+
pulumi.set(self, "ncharacter_set", value)
|
1115
|
+
|
1116
|
+
@property
|
1117
|
+
@pulumi.getter(name="onsPortLocal")
|
1118
|
+
def ons_port_local(self) -> Optional[pulumi.Input[int]]:
|
1119
|
+
"""
|
1120
|
+
Ons port local for sharded database.
|
1121
|
+
"""
|
1122
|
+
return pulumi.get(self, "ons_port_local")
|
1123
|
+
|
1124
|
+
@ons_port_local.setter
|
1125
|
+
def ons_port_local(self, value: Optional[pulumi.Input[int]]):
|
1126
|
+
pulumi.set(self, "ons_port_local", value)
|
1127
|
+
|
1128
|
+
@property
|
1129
|
+
@pulumi.getter(name="onsPortRemote")
|
1130
|
+
def ons_port_remote(self) -> Optional[pulumi.Input[int]]:
|
1131
|
+
"""
|
1132
|
+
Ons remote port for sharded database.
|
1133
|
+
"""
|
1134
|
+
return pulumi.get(self, "ons_port_remote")
|
1135
|
+
|
1136
|
+
@ons_port_remote.setter
|
1137
|
+
def ons_port_remote(self, value: Optional[pulumi.Input[int]]):
|
1138
|
+
pulumi.set(self, "ons_port_remote", value)
|
1139
|
+
|
1140
|
+
@property
|
1141
|
+
@pulumi.getter(name="patchOperations")
|
1142
|
+
def patch_operations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabasePatchOperationArgs']]]]:
|
1143
|
+
"""
|
1144
|
+
(Updatable)
|
1145
|
+
"""
|
1146
|
+
return pulumi.get(self, "patch_operations")
|
1147
|
+
|
1148
|
+
@patch_operations.setter
|
1149
|
+
def patch_operations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabasePatchOperationArgs']]]]):
|
1150
|
+
pulumi.set(self, "patch_operations", value)
|
1151
|
+
|
1152
|
+
@property
|
1153
|
+
@pulumi.getter
|
1154
|
+
def prefix(self) -> Optional[pulumi.Input[str]]:
|
1155
|
+
"""
|
1156
|
+
Unique name prefix for the sharded databases. Only alpha-numeric values are allowed. First character has to be a letter followed by any combination of letter and number.
|
1157
|
+
"""
|
1158
|
+
return pulumi.get(self, "prefix")
|
1159
|
+
|
1160
|
+
@prefix.setter
|
1161
|
+
def prefix(self, value: Optional[pulumi.Input[str]]):
|
1162
|
+
pulumi.set(self, "prefix", value)
|
1163
|
+
|
1164
|
+
@property
|
1165
|
+
@pulumi.getter(name="privateEndpoint")
|
1166
|
+
def private_endpoint(self) -> Optional[pulumi.Input[str]]:
|
1167
|
+
"""
|
1168
|
+
The OCID of private endpoint being used by the sharded database.
|
1169
|
+
"""
|
1170
|
+
return pulumi.get(self, "private_endpoint")
|
1171
|
+
|
1172
|
+
@private_endpoint.setter
|
1173
|
+
def private_endpoint(self, value: Optional[pulumi.Input[str]]):
|
1174
|
+
pulumi.set(self, "private_endpoint", value)
|
1175
|
+
|
1176
|
+
@property
|
1177
|
+
@pulumi.getter(name="replicationFactor")
|
1178
|
+
def replication_factor(self) -> Optional[pulumi.Input[int]]:
|
1179
|
+
"""
|
1180
|
+
The Replication factor for RAFT replication based sharded database. Currently supported values are 3, 5 and 7.
|
1181
|
+
"""
|
1182
|
+
return pulumi.get(self, "replication_factor")
|
1183
|
+
|
1184
|
+
@replication_factor.setter
|
1185
|
+
def replication_factor(self, value: Optional[pulumi.Input[int]]):
|
1186
|
+
pulumi.set(self, "replication_factor", value)
|
1187
|
+
|
1188
|
+
@property
|
1189
|
+
@pulumi.getter(name="replicationMethod")
|
1190
|
+
def replication_method(self) -> Optional[pulumi.Input[str]]:
|
1191
|
+
"""
|
1192
|
+
The Replication method for sharded database.
|
1193
|
+
"""
|
1194
|
+
return pulumi.get(self, "replication_method")
|
1195
|
+
|
1196
|
+
@replication_method.setter
|
1197
|
+
def replication_method(self, value: Optional[pulumi.Input[str]]):
|
1198
|
+
pulumi.set(self, "replication_method", value)
|
1199
|
+
|
1200
|
+
@property
|
1201
|
+
@pulumi.getter(name="replicationUnit")
|
1202
|
+
def replication_unit(self) -> Optional[pulumi.Input[int]]:
|
1203
|
+
"""
|
1204
|
+
For RAFT replication based sharded database, the value should be atleast twice the number of shards.
|
1205
|
+
"""
|
1206
|
+
return pulumi.get(self, "replication_unit")
|
1207
|
+
|
1208
|
+
@replication_unit.setter
|
1209
|
+
def replication_unit(self, value: Optional[pulumi.Input[int]]):
|
1210
|
+
pulumi.set(self, "replication_unit", value)
|
1211
|
+
|
1212
|
+
@property
|
1213
|
+
@pulumi.getter(name="shardDetails")
|
1214
|
+
def shard_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseShardDetailArgs']]]]:
|
1215
|
+
"""
|
1216
|
+
Collection of ATP-Dedicated shards that needs to be created.
|
1217
|
+
"""
|
1218
|
+
return pulumi.get(self, "shard_details")
|
1219
|
+
|
1220
|
+
@shard_details.setter
|
1221
|
+
def shard_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ShardedDatabaseShardDetailArgs']]]]):
|
1222
|
+
pulumi.set(self, "shard_details", value)
|
1223
|
+
|
1224
|
+
@property
|
1225
|
+
@pulumi.getter(name="shardedDatabaseId")
|
1226
|
+
def sharded_database_id(self) -> Optional[pulumi.Input[str]]:
|
1227
|
+
return pulumi.get(self, "sharded_database_id")
|
1228
|
+
|
1229
|
+
@sharded_database_id.setter
|
1230
|
+
def sharded_database_id(self, value: Optional[pulumi.Input[str]]):
|
1231
|
+
pulumi.set(self, "sharded_database_id", value)
|
1232
|
+
|
1233
|
+
@property
|
1234
|
+
@pulumi.getter(name="shardingMethod")
|
1235
|
+
def sharding_method(self) -> Optional[pulumi.Input[str]]:
|
1236
|
+
"""
|
1237
|
+
Sharding Method.
|
1238
|
+
"""
|
1239
|
+
return pulumi.get(self, "sharding_method")
|
1240
|
+
|
1241
|
+
@sharding_method.setter
|
1242
|
+
def sharding_method(self, value: Optional[pulumi.Input[str]]):
|
1243
|
+
pulumi.set(self, "sharding_method", value)
|
1244
|
+
|
1245
|
+
@property
|
1246
|
+
@pulumi.getter(name="startDatabaseTrigger")
|
1247
|
+
def start_database_trigger(self) -> Optional[pulumi.Input[int]]:
|
1248
|
+
"""
|
1249
|
+
(Updatable) An optional property when incremented triggers Start Database. Could be set to any integer value.
|
1250
|
+
"""
|
1251
|
+
return pulumi.get(self, "start_database_trigger")
|
1252
|
+
|
1253
|
+
@start_database_trigger.setter
|
1254
|
+
def start_database_trigger(self, value: Optional[pulumi.Input[int]]):
|
1255
|
+
pulumi.set(self, "start_database_trigger", value)
|
1256
|
+
|
1257
|
+
@property
|
1258
|
+
@pulumi.getter
|
1259
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
1260
|
+
"""
|
1261
|
+
Lifecycle states for sharded databases.
|
1262
|
+
"""
|
1263
|
+
return pulumi.get(self, "state")
|
1264
|
+
|
1265
|
+
@state.setter
|
1266
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
1267
|
+
pulumi.set(self, "state", value)
|
1268
|
+
|
1269
|
+
@property
|
1270
|
+
@pulumi.getter(name="stopDatabaseTrigger")
|
1271
|
+
def stop_database_trigger(self) -> Optional[pulumi.Input[int]]:
|
1272
|
+
"""
|
1273
|
+
(Updatable) An optional property when incremented triggers Stop Database. Could be set to any integer value.
|
1274
|
+
"""
|
1275
|
+
return pulumi.get(self, "stop_database_trigger")
|
1276
|
+
|
1277
|
+
@stop_database_trigger.setter
|
1278
|
+
def stop_database_trigger(self, value: Optional[pulumi.Input[int]]):
|
1279
|
+
pulumi.set(self, "stop_database_trigger", value)
|
1280
|
+
|
1281
|
+
@property
|
1282
|
+
@pulumi.getter(name="systemTags")
|
1283
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1284
|
+
"""
|
1285
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1286
|
+
"""
|
1287
|
+
return pulumi.get(self, "system_tags")
|
1288
|
+
|
1289
|
+
@system_tags.setter
|
1290
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1291
|
+
pulumi.set(self, "system_tags", value)
|
1292
|
+
|
1293
|
+
@property
|
1294
|
+
@pulumi.getter(name="timeCreated")
|
1295
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
1296
|
+
"""
|
1297
|
+
The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
1298
|
+
"""
|
1299
|
+
return pulumi.get(self, "time_created")
|
1300
|
+
|
1301
|
+
@time_created.setter
|
1302
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
1303
|
+
pulumi.set(self, "time_created", value)
|
1304
|
+
|
1305
|
+
@property
|
1306
|
+
@pulumi.getter(name="timeUpdated")
|
1307
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
1308
|
+
"""
|
1309
|
+
The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
1310
|
+
"""
|
1311
|
+
return pulumi.get(self, "time_updated")
|
1312
|
+
|
1313
|
+
@time_updated.setter
|
1314
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
1315
|
+
pulumi.set(self, "time_updated", value)
|
1316
|
+
|
1317
|
+
@property
|
1318
|
+
@pulumi.getter(name="timeZone")
|
1319
|
+
def time_zone(self) -> Optional[pulumi.Input[str]]:
|
1320
|
+
"""
|
1321
|
+
Timezone associated with the sharded database.
|
1322
|
+
"""
|
1323
|
+
return pulumi.get(self, "time_zone")
|
1324
|
+
|
1325
|
+
@time_zone.setter
|
1326
|
+
def time_zone(self, value: Optional[pulumi.Input[str]]):
|
1327
|
+
pulumi.set(self, "time_zone", value)
|
1328
|
+
|
1329
|
+
@property
|
1330
|
+
@pulumi.getter(name="uploadSignedCertificateAndGenerateWalletTrigger")
|
1331
|
+
def upload_signed_certificate_and_generate_wallet_trigger(self) -> Optional[pulumi.Input[int]]:
|
1332
|
+
"""
|
1333
|
+
(Updatable) An optional property when incremented triggers Upload Signed Certificate And Generate Wallet. Could be set to any integer value.
|
1334
|
+
"""
|
1335
|
+
return pulumi.get(self, "upload_signed_certificate_and_generate_wallet_trigger")
|
1336
|
+
|
1337
|
+
@upload_signed_certificate_and_generate_wallet_trigger.setter
|
1338
|
+
def upload_signed_certificate_and_generate_wallet_trigger(self, value: Optional[pulumi.Input[int]]):
|
1339
|
+
pulumi.set(self, "upload_signed_certificate_and_generate_wallet_trigger", value)
|
1340
|
+
|
1341
|
+
@property
|
1342
|
+
@pulumi.getter(name="validateNetworkTrigger")
|
1343
|
+
def validate_network_trigger(self) -> Optional[pulumi.Input[int]]:
|
1344
|
+
"""
|
1345
|
+
(Updatable) An optional property when incremented triggers Validate Network. Could be set to any integer value.
|
1346
|
+
|
1347
|
+
|
1348
|
+
** IMPORTANT **
|
1349
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1350
|
+
"""
|
1351
|
+
return pulumi.get(self, "validate_network_trigger")
|
1352
|
+
|
1353
|
+
@validate_network_trigger.setter
|
1354
|
+
def validate_network_trigger(self, value: Optional[pulumi.Input[int]]):
|
1355
|
+
pulumi.set(self, "validate_network_trigger", value)
|
1356
|
+
|
1357
|
+
|
1358
|
+
class ShardedDatabase(pulumi.CustomResource):
|
1359
|
+
@overload
|
1360
|
+
def __init__(__self__,
|
1361
|
+
resource_name: str,
|
1362
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
1363
|
+
ca_signed_certificate: Optional[pulumi.Input[str]] = None,
|
1364
|
+
catalog_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseCatalogDetailArgs', 'ShardedDatabaseCatalogDetailArgsDict']]]]] = None,
|
1365
|
+
character_set: Optional[pulumi.Input[str]] = None,
|
1366
|
+
chunks: Optional[pulumi.Input[int]] = None,
|
1367
|
+
cluster_certificate_common_name: Optional[pulumi.Input[str]] = None,
|
1368
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
1369
|
+
configure_gsms_trigger: Optional[pulumi.Input[int]] = None,
|
1370
|
+
configure_gsms_trigger_is_latest_gsm_image: Optional[pulumi.Input[bool]] = None,
|
1371
|
+
configure_gsms_trigger_old_gsm_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1372
|
+
configure_sharding_trigger: Optional[pulumi.Input[int]] = None,
|
1373
|
+
db_deployment_type: Optional[pulumi.Input[str]] = None,
|
1374
|
+
db_version: Optional[pulumi.Input[str]] = None,
|
1375
|
+
db_workload: Optional[pulumi.Input[str]] = None,
|
1376
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1377
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
1378
|
+
download_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
1379
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1380
|
+
generate_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
1381
|
+
generate_wallet_password: Optional[pulumi.Input[str]] = None,
|
1382
|
+
generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
1383
|
+
get_connection_string_trigger: Optional[pulumi.Input[int]] = None,
|
1384
|
+
listener_port: Optional[pulumi.Input[int]] = None,
|
1385
|
+
listener_port_tls: Optional[pulumi.Input[int]] = None,
|
1386
|
+
ncharacter_set: Optional[pulumi.Input[str]] = None,
|
1387
|
+
ons_port_local: Optional[pulumi.Input[int]] = None,
|
1388
|
+
ons_port_remote: Optional[pulumi.Input[int]] = None,
|
1389
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabasePatchOperationArgs', 'ShardedDatabasePatchOperationArgsDict']]]]] = None,
|
1390
|
+
prefix: Optional[pulumi.Input[str]] = None,
|
1391
|
+
replication_factor: Optional[pulumi.Input[int]] = None,
|
1392
|
+
replication_method: Optional[pulumi.Input[str]] = None,
|
1393
|
+
replication_unit: Optional[pulumi.Input[int]] = None,
|
1394
|
+
shard_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseShardDetailArgs', 'ShardedDatabaseShardDetailArgsDict']]]]] = None,
|
1395
|
+
sharding_method: Optional[pulumi.Input[str]] = None,
|
1396
|
+
start_database_trigger: Optional[pulumi.Input[int]] = None,
|
1397
|
+
stop_database_trigger: Optional[pulumi.Input[int]] = None,
|
1398
|
+
upload_signed_certificate_and_generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
1399
|
+
validate_network_trigger: Optional[pulumi.Input[int]] = None,
|
1400
|
+
__props__=None):
|
1401
|
+
"""
|
1402
|
+
This resource provides the Sharded Database resource in Oracle Cloud Infrastructure Globally Distributed Database service.
|
1403
|
+
|
1404
|
+
Creates a Sharded Database.
|
1405
|
+
|
1406
|
+
Patch operation to add, remove or update shards to the sharded database topology. In single patch
|
1407
|
+
operation, multiple shards can be either added, or removed or updated. Combination of inserts, update
|
1408
|
+
and remove in single operation is not allowed.
|
1409
|
+
|
1410
|
+
## Import
|
1411
|
+
|
1412
|
+
ShardedDatabases can be imported using the `id`, e.g.
|
1413
|
+
|
1414
|
+
```sh
|
1415
|
+
$ pulumi import oci:GloballyDistributedDatabase/shardedDatabase:ShardedDatabase test_sharded_database "id"
|
1416
|
+
```
|
1417
|
+
|
1418
|
+
:param str resource_name: The name of the resource.
|
1419
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
1420
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseCatalogDetailArgs', 'ShardedDatabaseCatalogDetailArgsDict']]]] catalog_details: Collection of ATP-Dedicated catalogs that needs to be created.
|
1421
|
+
:param pulumi.Input[str] character_set: The character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
1422
|
+
:param pulumi.Input[int] chunks: The default number of unique chunks in a shardspace. The value of chunks must be greater than 2 times the size of the largest shardgroup in any shardspace.
|
1423
|
+
:param pulumi.Input[str] cluster_certificate_common_name: The certificate common name used in all cloudAutonomousVmClusters for the sharded database topology. Eg. Production. All the clusters used in one sharded database topology shall have same CABundle setup. Valid characterset for clusterCertificateCommonName include uppercase or lowercase letters, numbers, hyphens, underscores, and period.
|
1424
|
+
:param pulumi.Input[str] compartment_id: (Updatable) Identifier of the compartment where sharded database is to be created.
|
1425
|
+
:param pulumi.Input[int] configure_gsms_trigger: (Updatable) An optional property when incremented triggers Configure Gsms. Could be set to any integer value.
|
1426
|
+
:param pulumi.Input[int] configure_sharding_trigger: (Updatable) An optional property when incremented triggers Configure Sharding. Could be set to any integer value.
|
1427
|
+
:param pulumi.Input[str] db_deployment_type: The database deployment type.
|
1428
|
+
:param pulumi.Input[str] db_version: Oracle Database version of the Autonomous Container Database.
|
1429
|
+
:param pulumi.Input[str] db_workload: Possible workload types.
|
1430
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1431
|
+
:param pulumi.Input[str] display_name: (Updatable) Oracle sharded database display name.
|
1432
|
+
:param pulumi.Input[int] download_gsm_certificate_signing_request_trigger: (Updatable) An optional property when incremented triggers Download Gsm Certificate Signing Request. Could be set to any integer value.
|
1433
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1434
|
+
:param pulumi.Input[int] generate_gsm_certificate_signing_request_trigger: (Updatable) An optional property when incremented triggers Generate Gsm Certificate Signing Request. Could be set to any integer value.
|
1435
|
+
:param pulumi.Input[int] generate_wallet_trigger: (Updatable) An optional property when incremented triggers Generate Wallet. Could be set to any integer value.
|
1436
|
+
:param pulumi.Input[int] get_connection_string_trigger: (Updatable) An optional property when incremented triggers Get Connection String. Could be set to any integer value.
|
1437
|
+
:param pulumi.Input[int] listener_port: The listener port number for sharded database.
|
1438
|
+
:param pulumi.Input[int] listener_port_tls: The TLS listener port number for sharded database.
|
1439
|
+
:param pulumi.Input[str] ncharacter_set: The national character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed national character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
1440
|
+
:param pulumi.Input[int] ons_port_local: Ons port local for sharded database.
|
1441
|
+
:param pulumi.Input[int] ons_port_remote: Ons remote port for sharded database.
|
1442
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabasePatchOperationArgs', 'ShardedDatabasePatchOperationArgsDict']]]] patch_operations: (Updatable)
|
1443
|
+
:param pulumi.Input[str] prefix: Unique name prefix for the sharded databases. Only alpha-numeric values are allowed. First character has to be a letter followed by any combination of letter and number.
|
1444
|
+
:param pulumi.Input[int] replication_factor: The Replication factor for RAFT replication based sharded database. Currently supported values are 3, 5 and 7.
|
1445
|
+
:param pulumi.Input[str] replication_method: The Replication method for sharded database.
|
1446
|
+
:param pulumi.Input[int] replication_unit: For RAFT replication based sharded database, the value should be atleast twice the number of shards.
|
1447
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseShardDetailArgs', 'ShardedDatabaseShardDetailArgsDict']]]] shard_details: Collection of ATP-Dedicated shards that needs to be created.
|
1448
|
+
:param pulumi.Input[str] sharding_method: Sharding Method.
|
1449
|
+
:param pulumi.Input[int] start_database_trigger: (Updatable) An optional property when incremented triggers Start Database. Could be set to any integer value.
|
1450
|
+
:param pulumi.Input[int] stop_database_trigger: (Updatable) An optional property when incremented triggers Stop Database. Could be set to any integer value.
|
1451
|
+
:param pulumi.Input[int] upload_signed_certificate_and_generate_wallet_trigger: (Updatable) An optional property when incremented triggers Upload Signed Certificate And Generate Wallet. Could be set to any integer value.
|
1452
|
+
:param pulumi.Input[int] validate_network_trigger: (Updatable) An optional property when incremented triggers Validate Network. Could be set to any integer value.
|
1453
|
+
|
1454
|
+
|
1455
|
+
** IMPORTANT **
|
1456
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1457
|
+
"""
|
1458
|
+
...
|
1459
|
+
@overload
|
1460
|
+
def __init__(__self__,
|
1461
|
+
resource_name: str,
|
1462
|
+
args: ShardedDatabaseArgs,
|
1463
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
1464
|
+
"""
|
1465
|
+
This resource provides the Sharded Database resource in Oracle Cloud Infrastructure Globally Distributed Database service.
|
1466
|
+
|
1467
|
+
Creates a Sharded Database.
|
1468
|
+
|
1469
|
+
Patch operation to add, remove or update shards to the sharded database topology. In single patch
|
1470
|
+
operation, multiple shards can be either added, or removed or updated. Combination of inserts, update
|
1471
|
+
and remove in single operation is not allowed.
|
1472
|
+
|
1473
|
+
## Import
|
1474
|
+
|
1475
|
+
ShardedDatabases can be imported using the `id`, e.g.
|
1476
|
+
|
1477
|
+
```sh
|
1478
|
+
$ pulumi import oci:GloballyDistributedDatabase/shardedDatabase:ShardedDatabase test_sharded_database "id"
|
1479
|
+
```
|
1480
|
+
|
1481
|
+
:param str resource_name: The name of the resource.
|
1482
|
+
:param ShardedDatabaseArgs args: The arguments to use to populate this resource's properties.
|
1483
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
1484
|
+
"""
|
1485
|
+
...
|
1486
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
1487
|
+
resource_args, opts = _utilities.get_resource_args_opts(ShardedDatabaseArgs, pulumi.ResourceOptions, *args, **kwargs)
|
1488
|
+
if resource_args is not None:
|
1489
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
1490
|
+
else:
|
1491
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
1492
|
+
|
1493
|
+
def _internal_init(__self__,
|
1494
|
+
resource_name: str,
|
1495
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
1496
|
+
ca_signed_certificate: Optional[pulumi.Input[str]] = None,
|
1497
|
+
catalog_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseCatalogDetailArgs', 'ShardedDatabaseCatalogDetailArgsDict']]]]] = None,
|
1498
|
+
character_set: Optional[pulumi.Input[str]] = None,
|
1499
|
+
chunks: Optional[pulumi.Input[int]] = None,
|
1500
|
+
cluster_certificate_common_name: Optional[pulumi.Input[str]] = None,
|
1501
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
1502
|
+
configure_gsms_trigger: Optional[pulumi.Input[int]] = None,
|
1503
|
+
configure_gsms_trigger_is_latest_gsm_image: Optional[pulumi.Input[bool]] = None,
|
1504
|
+
configure_gsms_trigger_old_gsm_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1505
|
+
configure_sharding_trigger: Optional[pulumi.Input[int]] = None,
|
1506
|
+
db_deployment_type: Optional[pulumi.Input[str]] = None,
|
1507
|
+
db_version: Optional[pulumi.Input[str]] = None,
|
1508
|
+
db_workload: Optional[pulumi.Input[str]] = None,
|
1509
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1510
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
1511
|
+
download_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
1512
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1513
|
+
generate_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
1514
|
+
generate_wallet_password: Optional[pulumi.Input[str]] = None,
|
1515
|
+
generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
1516
|
+
get_connection_string_trigger: Optional[pulumi.Input[int]] = None,
|
1517
|
+
listener_port: Optional[pulumi.Input[int]] = None,
|
1518
|
+
listener_port_tls: Optional[pulumi.Input[int]] = None,
|
1519
|
+
ncharacter_set: Optional[pulumi.Input[str]] = None,
|
1520
|
+
ons_port_local: Optional[pulumi.Input[int]] = None,
|
1521
|
+
ons_port_remote: Optional[pulumi.Input[int]] = None,
|
1522
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabasePatchOperationArgs', 'ShardedDatabasePatchOperationArgsDict']]]]] = None,
|
1523
|
+
prefix: Optional[pulumi.Input[str]] = None,
|
1524
|
+
replication_factor: Optional[pulumi.Input[int]] = None,
|
1525
|
+
replication_method: Optional[pulumi.Input[str]] = None,
|
1526
|
+
replication_unit: Optional[pulumi.Input[int]] = None,
|
1527
|
+
shard_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseShardDetailArgs', 'ShardedDatabaseShardDetailArgsDict']]]]] = None,
|
1528
|
+
sharding_method: Optional[pulumi.Input[str]] = None,
|
1529
|
+
start_database_trigger: Optional[pulumi.Input[int]] = None,
|
1530
|
+
stop_database_trigger: Optional[pulumi.Input[int]] = None,
|
1531
|
+
upload_signed_certificate_and_generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
1532
|
+
validate_network_trigger: Optional[pulumi.Input[int]] = None,
|
1533
|
+
__props__=None):
|
1534
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
1535
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
1536
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
1537
|
+
if opts.id is None:
|
1538
|
+
if __props__ is not None:
|
1539
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
1540
|
+
__props__ = ShardedDatabaseArgs.__new__(ShardedDatabaseArgs)
|
1541
|
+
|
1542
|
+
__props__.__dict__["ca_signed_certificate"] = ca_signed_certificate
|
1543
|
+
if catalog_details is None and not opts.urn:
|
1544
|
+
raise TypeError("Missing required property 'catalog_details'")
|
1545
|
+
__props__.__dict__["catalog_details"] = catalog_details
|
1546
|
+
if character_set is None and not opts.urn:
|
1547
|
+
raise TypeError("Missing required property 'character_set'")
|
1548
|
+
__props__.__dict__["character_set"] = character_set
|
1549
|
+
__props__.__dict__["chunks"] = chunks
|
1550
|
+
__props__.__dict__["cluster_certificate_common_name"] = cluster_certificate_common_name
|
1551
|
+
if compartment_id is None and not opts.urn:
|
1552
|
+
raise TypeError("Missing required property 'compartment_id'")
|
1553
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
1554
|
+
__props__.__dict__["configure_gsms_trigger"] = configure_gsms_trigger
|
1555
|
+
__props__.__dict__["configure_gsms_trigger_is_latest_gsm_image"] = configure_gsms_trigger_is_latest_gsm_image
|
1556
|
+
__props__.__dict__["configure_gsms_trigger_old_gsm_names"] = configure_gsms_trigger_old_gsm_names
|
1557
|
+
__props__.__dict__["configure_sharding_trigger"] = configure_sharding_trigger
|
1558
|
+
if db_deployment_type is None and not opts.urn:
|
1559
|
+
raise TypeError("Missing required property 'db_deployment_type'")
|
1560
|
+
__props__.__dict__["db_deployment_type"] = db_deployment_type
|
1561
|
+
if db_version is None and not opts.urn:
|
1562
|
+
raise TypeError("Missing required property 'db_version'")
|
1563
|
+
__props__.__dict__["db_version"] = db_version
|
1564
|
+
if db_workload is None and not opts.urn:
|
1565
|
+
raise TypeError("Missing required property 'db_workload'")
|
1566
|
+
__props__.__dict__["db_workload"] = db_workload
|
1567
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
1568
|
+
if display_name is None and not opts.urn:
|
1569
|
+
raise TypeError("Missing required property 'display_name'")
|
1570
|
+
__props__.__dict__["display_name"] = display_name
|
1571
|
+
__props__.__dict__["download_gsm_certificate_signing_request_trigger"] = download_gsm_certificate_signing_request_trigger
|
1572
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
1573
|
+
__props__.__dict__["generate_gsm_certificate_signing_request_trigger"] = generate_gsm_certificate_signing_request_trigger
|
1574
|
+
__props__.__dict__["generate_wallet_password"] = None if generate_wallet_password is None else pulumi.Output.secret(generate_wallet_password)
|
1575
|
+
__props__.__dict__["generate_wallet_trigger"] = generate_wallet_trigger
|
1576
|
+
__props__.__dict__["get_connection_string_trigger"] = get_connection_string_trigger
|
1577
|
+
if listener_port is None and not opts.urn:
|
1578
|
+
raise TypeError("Missing required property 'listener_port'")
|
1579
|
+
__props__.__dict__["listener_port"] = listener_port
|
1580
|
+
if listener_port_tls is None and not opts.urn:
|
1581
|
+
raise TypeError("Missing required property 'listener_port_tls'")
|
1582
|
+
__props__.__dict__["listener_port_tls"] = listener_port_tls
|
1583
|
+
if ncharacter_set is None and not opts.urn:
|
1584
|
+
raise TypeError("Missing required property 'ncharacter_set'")
|
1585
|
+
__props__.__dict__["ncharacter_set"] = ncharacter_set
|
1586
|
+
if ons_port_local is None and not opts.urn:
|
1587
|
+
raise TypeError("Missing required property 'ons_port_local'")
|
1588
|
+
__props__.__dict__["ons_port_local"] = ons_port_local
|
1589
|
+
if ons_port_remote is None and not opts.urn:
|
1590
|
+
raise TypeError("Missing required property 'ons_port_remote'")
|
1591
|
+
__props__.__dict__["ons_port_remote"] = ons_port_remote
|
1592
|
+
__props__.__dict__["patch_operations"] = patch_operations
|
1593
|
+
if prefix is None and not opts.urn:
|
1594
|
+
raise TypeError("Missing required property 'prefix'")
|
1595
|
+
__props__.__dict__["prefix"] = prefix
|
1596
|
+
__props__.__dict__["replication_factor"] = replication_factor
|
1597
|
+
__props__.__dict__["replication_method"] = replication_method
|
1598
|
+
__props__.__dict__["replication_unit"] = replication_unit
|
1599
|
+
if shard_details is None and not opts.urn:
|
1600
|
+
raise TypeError("Missing required property 'shard_details'")
|
1601
|
+
__props__.__dict__["shard_details"] = shard_details
|
1602
|
+
if sharding_method is None and not opts.urn:
|
1603
|
+
raise TypeError("Missing required property 'sharding_method'")
|
1604
|
+
__props__.__dict__["sharding_method"] = sharding_method
|
1605
|
+
__props__.__dict__["start_database_trigger"] = start_database_trigger
|
1606
|
+
__props__.__dict__["stop_database_trigger"] = stop_database_trigger
|
1607
|
+
__props__.__dict__["upload_signed_certificate_and_generate_wallet_trigger"] = upload_signed_certificate_and_generate_wallet_trigger
|
1608
|
+
__props__.__dict__["validate_network_trigger"] = validate_network_trigger
|
1609
|
+
__props__.__dict__["connection_strings"] = None
|
1610
|
+
__props__.__dict__["gsms"] = None
|
1611
|
+
__props__.__dict__["lifecycle_state"] = None
|
1612
|
+
__props__.__dict__["lifecycle_state_details"] = None
|
1613
|
+
__props__.__dict__["private_endpoint"] = None
|
1614
|
+
__props__.__dict__["sharded_database_id"] = None
|
1615
|
+
__props__.__dict__["state"] = None
|
1616
|
+
__props__.__dict__["system_tags"] = None
|
1617
|
+
__props__.__dict__["time_created"] = None
|
1618
|
+
__props__.__dict__["time_updated"] = None
|
1619
|
+
__props__.__dict__["time_zone"] = None
|
1620
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["generateWalletPassword"])
|
1621
|
+
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
1622
|
+
super(ShardedDatabase, __self__).__init__(
|
1623
|
+
'oci:GloballyDistributedDatabase/shardedDatabase:ShardedDatabase',
|
1624
|
+
resource_name,
|
1625
|
+
__props__,
|
1626
|
+
opts)
|
1627
|
+
|
1628
|
+
@staticmethod
|
1629
|
+
def get(resource_name: str,
|
1630
|
+
id: pulumi.Input[str],
|
1631
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
1632
|
+
ca_signed_certificate: Optional[pulumi.Input[str]] = None,
|
1633
|
+
catalog_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseCatalogDetailArgs', 'ShardedDatabaseCatalogDetailArgsDict']]]]] = None,
|
1634
|
+
character_set: Optional[pulumi.Input[str]] = None,
|
1635
|
+
chunks: Optional[pulumi.Input[int]] = None,
|
1636
|
+
cluster_certificate_common_name: Optional[pulumi.Input[str]] = None,
|
1637
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
1638
|
+
configure_gsms_trigger: Optional[pulumi.Input[int]] = None,
|
1639
|
+
configure_gsms_trigger_is_latest_gsm_image: Optional[pulumi.Input[bool]] = None,
|
1640
|
+
configure_gsms_trigger_old_gsm_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1641
|
+
configure_sharding_trigger: Optional[pulumi.Input[int]] = None,
|
1642
|
+
connection_strings: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseConnectionStringArgs', 'ShardedDatabaseConnectionStringArgsDict']]]]] = None,
|
1643
|
+
db_deployment_type: Optional[pulumi.Input[str]] = None,
|
1644
|
+
db_version: Optional[pulumi.Input[str]] = None,
|
1645
|
+
db_workload: Optional[pulumi.Input[str]] = None,
|
1646
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1647
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
1648
|
+
download_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
1649
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1650
|
+
generate_gsm_certificate_signing_request_trigger: Optional[pulumi.Input[int]] = None,
|
1651
|
+
generate_wallet_password: Optional[pulumi.Input[str]] = None,
|
1652
|
+
generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
1653
|
+
get_connection_string_trigger: Optional[pulumi.Input[int]] = None,
|
1654
|
+
gsms: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseGsmArgs', 'ShardedDatabaseGsmArgsDict']]]]] = None,
|
1655
|
+
lifecycle_state: Optional[pulumi.Input[str]] = None,
|
1656
|
+
lifecycle_state_details: Optional[pulumi.Input[str]] = None,
|
1657
|
+
listener_port: Optional[pulumi.Input[int]] = None,
|
1658
|
+
listener_port_tls: Optional[pulumi.Input[int]] = None,
|
1659
|
+
ncharacter_set: Optional[pulumi.Input[str]] = None,
|
1660
|
+
ons_port_local: Optional[pulumi.Input[int]] = None,
|
1661
|
+
ons_port_remote: Optional[pulumi.Input[int]] = None,
|
1662
|
+
patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabasePatchOperationArgs', 'ShardedDatabasePatchOperationArgsDict']]]]] = None,
|
1663
|
+
prefix: Optional[pulumi.Input[str]] = None,
|
1664
|
+
private_endpoint: Optional[pulumi.Input[str]] = None,
|
1665
|
+
replication_factor: Optional[pulumi.Input[int]] = None,
|
1666
|
+
replication_method: Optional[pulumi.Input[str]] = None,
|
1667
|
+
replication_unit: Optional[pulumi.Input[int]] = None,
|
1668
|
+
shard_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseShardDetailArgs', 'ShardedDatabaseShardDetailArgsDict']]]]] = None,
|
1669
|
+
sharded_database_id: Optional[pulumi.Input[str]] = None,
|
1670
|
+
sharding_method: Optional[pulumi.Input[str]] = None,
|
1671
|
+
start_database_trigger: Optional[pulumi.Input[int]] = None,
|
1672
|
+
state: Optional[pulumi.Input[str]] = None,
|
1673
|
+
stop_database_trigger: Optional[pulumi.Input[int]] = None,
|
1674
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1675
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
1676
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
1677
|
+
time_zone: Optional[pulumi.Input[str]] = None,
|
1678
|
+
upload_signed_certificate_and_generate_wallet_trigger: Optional[pulumi.Input[int]] = None,
|
1679
|
+
validate_network_trigger: Optional[pulumi.Input[int]] = None) -> 'ShardedDatabase':
|
1680
|
+
"""
|
1681
|
+
Get an existing ShardedDatabase resource's state with the given name, id, and optional extra
|
1682
|
+
properties used to qualify the lookup.
|
1683
|
+
|
1684
|
+
:param str resource_name: The unique name of the resulting resource.
|
1685
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1686
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
1687
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseCatalogDetailArgs', 'ShardedDatabaseCatalogDetailArgsDict']]]] catalog_details: Collection of ATP-Dedicated catalogs that needs to be created.
|
1688
|
+
:param pulumi.Input[str] character_set: The character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
1689
|
+
:param pulumi.Input[int] chunks: The default number of unique chunks in a shardspace. The value of chunks must be greater than 2 times the size of the largest shardgroup in any shardspace.
|
1690
|
+
:param pulumi.Input[str] cluster_certificate_common_name: The certificate common name used in all cloudAutonomousVmClusters for the sharded database topology. Eg. Production. All the clusters used in one sharded database topology shall have same CABundle setup. Valid characterset for clusterCertificateCommonName include uppercase or lowercase letters, numbers, hyphens, underscores, and period.
|
1691
|
+
:param pulumi.Input[str] compartment_id: (Updatable) Identifier of the compartment where sharded database is to be created.
|
1692
|
+
:param pulumi.Input[int] configure_gsms_trigger: (Updatable) An optional property when incremented triggers Configure Gsms. Could be set to any integer value.
|
1693
|
+
:param pulumi.Input[int] configure_sharding_trigger: (Updatable) An optional property when incremented triggers Configure Sharding. Could be set to any integer value.
|
1694
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseConnectionStringArgs', 'ShardedDatabaseConnectionStringArgsDict']]]] connection_strings: Details of sharded database connection String.
|
1695
|
+
:param pulumi.Input[str] db_deployment_type: The database deployment type.
|
1696
|
+
:param pulumi.Input[str] db_version: Oracle Database version of the Autonomous Container Database.
|
1697
|
+
:param pulumi.Input[str] db_workload: Possible workload types.
|
1698
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1699
|
+
:param pulumi.Input[str] display_name: (Updatable) Oracle sharded database display name.
|
1700
|
+
:param pulumi.Input[int] download_gsm_certificate_signing_request_trigger: (Updatable) An optional property when incremented triggers Download Gsm Certificate Signing Request. Could be set to any integer value.
|
1701
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1702
|
+
:param pulumi.Input[int] generate_gsm_certificate_signing_request_trigger: (Updatable) An optional property when incremented triggers Generate Gsm Certificate Signing Request. Could be set to any integer value.
|
1703
|
+
:param pulumi.Input[int] generate_wallet_trigger: (Updatable) An optional property when incremented triggers Generate Wallet. Could be set to any integer value.
|
1704
|
+
:param pulumi.Input[int] get_connection_string_trigger: (Updatable) An optional property when incremented triggers Get Connection String. Could be set to any integer value.
|
1705
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseGsmArgs', 'ShardedDatabaseGsmArgsDict']]]] gsms: Details of GSM instances for the sharded database.
|
1706
|
+
:param pulumi.Input[str] lifecycle_state_details: Detailed message for the lifecycle state.
|
1707
|
+
:param pulumi.Input[int] listener_port: The listener port number for sharded database.
|
1708
|
+
:param pulumi.Input[int] listener_port_tls: The TLS listener port number for sharded database.
|
1709
|
+
:param pulumi.Input[str] ncharacter_set: The national character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed national character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
1710
|
+
:param pulumi.Input[int] ons_port_local: Ons port local for sharded database.
|
1711
|
+
:param pulumi.Input[int] ons_port_remote: Ons remote port for sharded database.
|
1712
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabasePatchOperationArgs', 'ShardedDatabasePatchOperationArgsDict']]]] patch_operations: (Updatable)
|
1713
|
+
:param pulumi.Input[str] prefix: Unique name prefix for the sharded databases. Only alpha-numeric values are allowed. First character has to be a letter followed by any combination of letter and number.
|
1714
|
+
:param pulumi.Input[str] private_endpoint: The OCID of private endpoint being used by the sharded database.
|
1715
|
+
:param pulumi.Input[int] replication_factor: The Replication factor for RAFT replication based sharded database. Currently supported values are 3, 5 and 7.
|
1716
|
+
:param pulumi.Input[str] replication_method: The Replication method for sharded database.
|
1717
|
+
:param pulumi.Input[int] replication_unit: For RAFT replication based sharded database, the value should be atleast twice the number of shards.
|
1718
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ShardedDatabaseShardDetailArgs', 'ShardedDatabaseShardDetailArgsDict']]]] shard_details: Collection of ATP-Dedicated shards that needs to be created.
|
1719
|
+
:param pulumi.Input[str] sharding_method: Sharding Method.
|
1720
|
+
:param pulumi.Input[int] start_database_trigger: (Updatable) An optional property when incremented triggers Start Database. Could be set to any integer value.
|
1721
|
+
:param pulumi.Input[str] state: Lifecycle states for sharded databases.
|
1722
|
+
:param pulumi.Input[int] stop_database_trigger: (Updatable) An optional property when incremented triggers Stop Database. Could be set to any integer value.
|
1723
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1724
|
+
:param pulumi.Input[str] time_created: The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
1725
|
+
:param pulumi.Input[str] time_updated: The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
1726
|
+
:param pulumi.Input[str] time_zone: Timezone associated with the sharded database.
|
1727
|
+
:param pulumi.Input[int] upload_signed_certificate_and_generate_wallet_trigger: (Updatable) An optional property when incremented triggers Upload Signed Certificate And Generate Wallet. Could be set to any integer value.
|
1728
|
+
:param pulumi.Input[int] validate_network_trigger: (Updatable) An optional property when incremented triggers Validate Network. Could be set to any integer value.
|
1729
|
+
|
1730
|
+
|
1731
|
+
** IMPORTANT **
|
1732
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1733
|
+
"""
|
1734
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1735
|
+
|
1736
|
+
__props__ = _ShardedDatabaseState.__new__(_ShardedDatabaseState)
|
1737
|
+
|
1738
|
+
__props__.__dict__["ca_signed_certificate"] = ca_signed_certificate
|
1739
|
+
__props__.__dict__["catalog_details"] = catalog_details
|
1740
|
+
__props__.__dict__["character_set"] = character_set
|
1741
|
+
__props__.__dict__["chunks"] = chunks
|
1742
|
+
__props__.__dict__["cluster_certificate_common_name"] = cluster_certificate_common_name
|
1743
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
1744
|
+
__props__.__dict__["configure_gsms_trigger"] = configure_gsms_trigger
|
1745
|
+
__props__.__dict__["configure_gsms_trigger_is_latest_gsm_image"] = configure_gsms_trigger_is_latest_gsm_image
|
1746
|
+
__props__.__dict__["configure_gsms_trigger_old_gsm_names"] = configure_gsms_trigger_old_gsm_names
|
1747
|
+
__props__.__dict__["configure_sharding_trigger"] = configure_sharding_trigger
|
1748
|
+
__props__.__dict__["connection_strings"] = connection_strings
|
1749
|
+
__props__.__dict__["db_deployment_type"] = db_deployment_type
|
1750
|
+
__props__.__dict__["db_version"] = db_version
|
1751
|
+
__props__.__dict__["db_workload"] = db_workload
|
1752
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
1753
|
+
__props__.__dict__["display_name"] = display_name
|
1754
|
+
__props__.__dict__["download_gsm_certificate_signing_request_trigger"] = download_gsm_certificate_signing_request_trigger
|
1755
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
1756
|
+
__props__.__dict__["generate_gsm_certificate_signing_request_trigger"] = generate_gsm_certificate_signing_request_trigger
|
1757
|
+
__props__.__dict__["generate_wallet_password"] = generate_wallet_password
|
1758
|
+
__props__.__dict__["generate_wallet_trigger"] = generate_wallet_trigger
|
1759
|
+
__props__.__dict__["get_connection_string_trigger"] = get_connection_string_trigger
|
1760
|
+
__props__.__dict__["gsms"] = gsms
|
1761
|
+
__props__.__dict__["lifecycle_state"] = lifecycle_state
|
1762
|
+
__props__.__dict__["lifecycle_state_details"] = lifecycle_state_details
|
1763
|
+
__props__.__dict__["listener_port"] = listener_port
|
1764
|
+
__props__.__dict__["listener_port_tls"] = listener_port_tls
|
1765
|
+
__props__.__dict__["ncharacter_set"] = ncharacter_set
|
1766
|
+
__props__.__dict__["ons_port_local"] = ons_port_local
|
1767
|
+
__props__.__dict__["ons_port_remote"] = ons_port_remote
|
1768
|
+
__props__.__dict__["patch_operations"] = patch_operations
|
1769
|
+
__props__.__dict__["prefix"] = prefix
|
1770
|
+
__props__.__dict__["private_endpoint"] = private_endpoint
|
1771
|
+
__props__.__dict__["replication_factor"] = replication_factor
|
1772
|
+
__props__.__dict__["replication_method"] = replication_method
|
1773
|
+
__props__.__dict__["replication_unit"] = replication_unit
|
1774
|
+
__props__.__dict__["shard_details"] = shard_details
|
1775
|
+
__props__.__dict__["sharded_database_id"] = sharded_database_id
|
1776
|
+
__props__.__dict__["sharding_method"] = sharding_method
|
1777
|
+
__props__.__dict__["start_database_trigger"] = start_database_trigger
|
1778
|
+
__props__.__dict__["state"] = state
|
1779
|
+
__props__.__dict__["stop_database_trigger"] = stop_database_trigger
|
1780
|
+
__props__.__dict__["system_tags"] = system_tags
|
1781
|
+
__props__.__dict__["time_created"] = time_created
|
1782
|
+
__props__.__dict__["time_updated"] = time_updated
|
1783
|
+
__props__.__dict__["time_zone"] = time_zone
|
1784
|
+
__props__.__dict__["upload_signed_certificate_and_generate_wallet_trigger"] = upload_signed_certificate_and_generate_wallet_trigger
|
1785
|
+
__props__.__dict__["validate_network_trigger"] = validate_network_trigger
|
1786
|
+
return ShardedDatabase(resource_name, opts=opts, __props__=__props__)
|
1787
|
+
|
1788
|
+
@property
|
1789
|
+
@pulumi.getter(name="caSignedCertificate")
|
1790
|
+
def ca_signed_certificate(self) -> pulumi.Output[Optional[str]]:
|
1791
|
+
return pulumi.get(self, "ca_signed_certificate")
|
1792
|
+
|
1793
|
+
@property
|
1794
|
+
@pulumi.getter(name="catalogDetails")
|
1795
|
+
def catalog_details(self) -> pulumi.Output[Sequence['outputs.ShardedDatabaseCatalogDetail']]:
|
1796
|
+
"""
|
1797
|
+
Collection of ATP-Dedicated catalogs that needs to be created.
|
1798
|
+
"""
|
1799
|
+
return pulumi.get(self, "catalog_details")
|
1800
|
+
|
1801
|
+
@property
|
1802
|
+
@pulumi.getter(name="characterSet")
|
1803
|
+
def character_set(self) -> pulumi.Output[str]:
|
1804
|
+
"""
|
1805
|
+
The character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
1806
|
+
"""
|
1807
|
+
return pulumi.get(self, "character_set")
|
1808
|
+
|
1809
|
+
@property
|
1810
|
+
@pulumi.getter
|
1811
|
+
def chunks(self) -> pulumi.Output[int]:
|
1812
|
+
"""
|
1813
|
+
The default number of unique chunks in a shardspace. The value of chunks must be greater than 2 times the size of the largest shardgroup in any shardspace.
|
1814
|
+
"""
|
1815
|
+
return pulumi.get(self, "chunks")
|
1816
|
+
|
1817
|
+
@property
|
1818
|
+
@pulumi.getter(name="clusterCertificateCommonName")
|
1819
|
+
def cluster_certificate_common_name(self) -> pulumi.Output[str]:
|
1820
|
+
"""
|
1821
|
+
The certificate common name used in all cloudAutonomousVmClusters for the sharded database topology. Eg. Production. All the clusters used in one sharded database topology shall have same CABundle setup. Valid characterset for clusterCertificateCommonName include uppercase or lowercase letters, numbers, hyphens, underscores, and period.
|
1822
|
+
"""
|
1823
|
+
return pulumi.get(self, "cluster_certificate_common_name")
|
1824
|
+
|
1825
|
+
@property
|
1826
|
+
@pulumi.getter(name="compartmentId")
|
1827
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
1828
|
+
"""
|
1829
|
+
(Updatable) Identifier of the compartment where sharded database is to be created.
|
1830
|
+
"""
|
1831
|
+
return pulumi.get(self, "compartment_id")
|
1832
|
+
|
1833
|
+
@property
|
1834
|
+
@pulumi.getter(name="configureGsmsTrigger")
|
1835
|
+
def configure_gsms_trigger(self) -> pulumi.Output[Optional[int]]:
|
1836
|
+
"""
|
1837
|
+
(Updatable) An optional property when incremented triggers Configure Gsms. Could be set to any integer value.
|
1838
|
+
"""
|
1839
|
+
return pulumi.get(self, "configure_gsms_trigger")
|
1840
|
+
|
1841
|
+
@property
|
1842
|
+
@pulumi.getter(name="configureGsmsTriggerIsLatestGsmImage")
|
1843
|
+
def configure_gsms_trigger_is_latest_gsm_image(self) -> pulumi.Output[Optional[bool]]:
|
1844
|
+
return pulumi.get(self, "configure_gsms_trigger_is_latest_gsm_image")
|
1845
|
+
|
1846
|
+
@property
|
1847
|
+
@pulumi.getter(name="configureGsmsTriggerOldGsmNames")
|
1848
|
+
def configure_gsms_trigger_old_gsm_names(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1849
|
+
return pulumi.get(self, "configure_gsms_trigger_old_gsm_names")
|
1850
|
+
|
1851
|
+
@property
|
1852
|
+
@pulumi.getter(name="configureShardingTrigger")
|
1853
|
+
def configure_sharding_trigger(self) -> pulumi.Output[Optional[int]]:
|
1854
|
+
"""
|
1855
|
+
(Updatable) An optional property when incremented triggers Configure Sharding. Could be set to any integer value.
|
1856
|
+
"""
|
1857
|
+
return pulumi.get(self, "configure_sharding_trigger")
|
1858
|
+
|
1859
|
+
@property
|
1860
|
+
@pulumi.getter(name="connectionStrings")
|
1861
|
+
def connection_strings(self) -> pulumi.Output[Sequence['outputs.ShardedDatabaseConnectionString']]:
|
1862
|
+
"""
|
1863
|
+
Details of sharded database connection String.
|
1864
|
+
"""
|
1865
|
+
return pulumi.get(self, "connection_strings")
|
1866
|
+
|
1867
|
+
@property
|
1868
|
+
@pulumi.getter(name="dbDeploymentType")
|
1869
|
+
def db_deployment_type(self) -> pulumi.Output[str]:
|
1870
|
+
"""
|
1871
|
+
The database deployment type.
|
1872
|
+
"""
|
1873
|
+
return pulumi.get(self, "db_deployment_type")
|
1874
|
+
|
1875
|
+
@property
|
1876
|
+
@pulumi.getter(name="dbVersion")
|
1877
|
+
def db_version(self) -> pulumi.Output[str]:
|
1878
|
+
"""
|
1879
|
+
Oracle Database version of the Autonomous Container Database.
|
1880
|
+
"""
|
1881
|
+
return pulumi.get(self, "db_version")
|
1882
|
+
|
1883
|
+
@property
|
1884
|
+
@pulumi.getter(name="dbWorkload")
|
1885
|
+
def db_workload(self) -> pulumi.Output[str]:
|
1886
|
+
"""
|
1887
|
+
Possible workload types.
|
1888
|
+
"""
|
1889
|
+
return pulumi.get(self, "db_workload")
|
1890
|
+
|
1891
|
+
@property
|
1892
|
+
@pulumi.getter(name="definedTags")
|
1893
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1894
|
+
"""
|
1895
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1896
|
+
"""
|
1897
|
+
return pulumi.get(self, "defined_tags")
|
1898
|
+
|
1899
|
+
@property
|
1900
|
+
@pulumi.getter(name="displayName")
|
1901
|
+
def display_name(self) -> pulumi.Output[str]:
|
1902
|
+
"""
|
1903
|
+
(Updatable) Oracle sharded database display name.
|
1904
|
+
"""
|
1905
|
+
return pulumi.get(self, "display_name")
|
1906
|
+
|
1907
|
+
@property
|
1908
|
+
@pulumi.getter(name="downloadGsmCertificateSigningRequestTrigger")
|
1909
|
+
def download_gsm_certificate_signing_request_trigger(self) -> pulumi.Output[Optional[int]]:
|
1910
|
+
"""
|
1911
|
+
(Updatable) An optional property when incremented triggers Download Gsm Certificate Signing Request. Could be set to any integer value.
|
1912
|
+
"""
|
1913
|
+
return pulumi.get(self, "download_gsm_certificate_signing_request_trigger")
|
1914
|
+
|
1915
|
+
@property
|
1916
|
+
@pulumi.getter(name="freeformTags")
|
1917
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1918
|
+
"""
|
1919
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1920
|
+
"""
|
1921
|
+
return pulumi.get(self, "freeform_tags")
|
1922
|
+
|
1923
|
+
@property
|
1924
|
+
@pulumi.getter(name="generateGsmCertificateSigningRequestTrigger")
|
1925
|
+
def generate_gsm_certificate_signing_request_trigger(self) -> pulumi.Output[Optional[int]]:
|
1926
|
+
"""
|
1927
|
+
(Updatable) An optional property when incremented triggers Generate Gsm Certificate Signing Request. Could be set to any integer value.
|
1928
|
+
"""
|
1929
|
+
return pulumi.get(self, "generate_gsm_certificate_signing_request_trigger")
|
1930
|
+
|
1931
|
+
@property
|
1932
|
+
@pulumi.getter(name="generateWalletPassword")
|
1933
|
+
def generate_wallet_password(self) -> pulumi.Output[Optional[str]]:
|
1934
|
+
return pulumi.get(self, "generate_wallet_password")
|
1935
|
+
|
1936
|
+
@property
|
1937
|
+
@pulumi.getter(name="generateWalletTrigger")
|
1938
|
+
def generate_wallet_trigger(self) -> pulumi.Output[Optional[int]]:
|
1939
|
+
"""
|
1940
|
+
(Updatable) An optional property when incremented triggers Generate Wallet. Could be set to any integer value.
|
1941
|
+
"""
|
1942
|
+
return pulumi.get(self, "generate_wallet_trigger")
|
1943
|
+
|
1944
|
+
@property
|
1945
|
+
@pulumi.getter(name="getConnectionStringTrigger")
|
1946
|
+
def get_connection_string_trigger(self) -> pulumi.Output[Optional[int]]:
|
1947
|
+
"""
|
1948
|
+
(Updatable) An optional property when incremented triggers Get Connection String. Could be set to any integer value.
|
1949
|
+
"""
|
1950
|
+
return pulumi.get(self, "get_connection_string_trigger")
|
1951
|
+
|
1952
|
+
@property
|
1953
|
+
@pulumi.getter
|
1954
|
+
def gsms(self) -> pulumi.Output[Sequence['outputs.ShardedDatabaseGsm']]:
|
1955
|
+
"""
|
1956
|
+
Details of GSM instances for the sharded database.
|
1957
|
+
"""
|
1958
|
+
return pulumi.get(self, "gsms")
|
1959
|
+
|
1960
|
+
@property
|
1961
|
+
@pulumi.getter(name="lifecycleState")
|
1962
|
+
def lifecycle_state(self) -> pulumi.Output[str]:
|
1963
|
+
return pulumi.get(self, "lifecycle_state")
|
1964
|
+
|
1965
|
+
@property
|
1966
|
+
@pulumi.getter(name="lifecycleStateDetails")
|
1967
|
+
def lifecycle_state_details(self) -> pulumi.Output[str]:
|
1968
|
+
"""
|
1969
|
+
Detailed message for the lifecycle state.
|
1970
|
+
"""
|
1971
|
+
return pulumi.get(self, "lifecycle_state_details")
|
1972
|
+
|
1973
|
+
@property
|
1974
|
+
@pulumi.getter(name="listenerPort")
|
1975
|
+
def listener_port(self) -> pulumi.Output[int]:
|
1976
|
+
"""
|
1977
|
+
The listener port number for sharded database.
|
1978
|
+
"""
|
1979
|
+
return pulumi.get(self, "listener_port")
|
1980
|
+
|
1981
|
+
@property
|
1982
|
+
@pulumi.getter(name="listenerPortTls")
|
1983
|
+
def listener_port_tls(self) -> pulumi.Output[int]:
|
1984
|
+
"""
|
1985
|
+
The TLS listener port number for sharded database.
|
1986
|
+
"""
|
1987
|
+
return pulumi.get(self, "listener_port_tls")
|
1988
|
+
|
1989
|
+
@property
|
1990
|
+
@pulumi.getter(name="ncharacterSet")
|
1991
|
+
def ncharacter_set(self) -> pulumi.Output[str]:
|
1992
|
+
"""
|
1993
|
+
The national character set for the new shard database being created. Use database api ListAutonomousDatabaseCharacterSets to get the list of allowed national character set for autonomous dedicated database. See documentation: https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/ListAutonomousDatabaseCharacterSets
|
1994
|
+
"""
|
1995
|
+
return pulumi.get(self, "ncharacter_set")
|
1996
|
+
|
1997
|
+
@property
|
1998
|
+
@pulumi.getter(name="onsPortLocal")
|
1999
|
+
def ons_port_local(self) -> pulumi.Output[int]:
|
2000
|
+
"""
|
2001
|
+
Ons port local for sharded database.
|
2002
|
+
"""
|
2003
|
+
return pulumi.get(self, "ons_port_local")
|
2004
|
+
|
2005
|
+
@property
|
2006
|
+
@pulumi.getter(name="onsPortRemote")
|
2007
|
+
def ons_port_remote(self) -> pulumi.Output[int]:
|
2008
|
+
"""
|
2009
|
+
Ons remote port for sharded database.
|
2010
|
+
"""
|
2011
|
+
return pulumi.get(self, "ons_port_remote")
|
2012
|
+
|
2013
|
+
@property
|
2014
|
+
@pulumi.getter(name="patchOperations")
|
2015
|
+
def patch_operations(self) -> pulumi.Output[Optional[Sequence['outputs.ShardedDatabasePatchOperation']]]:
|
2016
|
+
"""
|
2017
|
+
(Updatable)
|
2018
|
+
"""
|
2019
|
+
return pulumi.get(self, "patch_operations")
|
2020
|
+
|
2021
|
+
@property
|
2022
|
+
@pulumi.getter
|
2023
|
+
def prefix(self) -> pulumi.Output[str]:
|
2024
|
+
"""
|
2025
|
+
Unique name prefix for the sharded databases. Only alpha-numeric values are allowed. First character has to be a letter followed by any combination of letter and number.
|
2026
|
+
"""
|
2027
|
+
return pulumi.get(self, "prefix")
|
2028
|
+
|
2029
|
+
@property
|
2030
|
+
@pulumi.getter(name="privateEndpoint")
|
2031
|
+
def private_endpoint(self) -> pulumi.Output[str]:
|
2032
|
+
"""
|
2033
|
+
The OCID of private endpoint being used by the sharded database.
|
2034
|
+
"""
|
2035
|
+
return pulumi.get(self, "private_endpoint")
|
2036
|
+
|
2037
|
+
@property
|
2038
|
+
@pulumi.getter(name="replicationFactor")
|
2039
|
+
def replication_factor(self) -> pulumi.Output[int]:
|
2040
|
+
"""
|
2041
|
+
The Replication factor for RAFT replication based sharded database. Currently supported values are 3, 5 and 7.
|
2042
|
+
"""
|
2043
|
+
return pulumi.get(self, "replication_factor")
|
2044
|
+
|
2045
|
+
@property
|
2046
|
+
@pulumi.getter(name="replicationMethod")
|
2047
|
+
def replication_method(self) -> pulumi.Output[str]:
|
2048
|
+
"""
|
2049
|
+
The Replication method for sharded database.
|
2050
|
+
"""
|
2051
|
+
return pulumi.get(self, "replication_method")
|
2052
|
+
|
2053
|
+
@property
|
2054
|
+
@pulumi.getter(name="replicationUnit")
|
2055
|
+
def replication_unit(self) -> pulumi.Output[int]:
|
2056
|
+
"""
|
2057
|
+
For RAFT replication based sharded database, the value should be atleast twice the number of shards.
|
2058
|
+
"""
|
2059
|
+
return pulumi.get(self, "replication_unit")
|
2060
|
+
|
2061
|
+
@property
|
2062
|
+
@pulumi.getter(name="shardDetails")
|
2063
|
+
def shard_details(self) -> pulumi.Output[Sequence['outputs.ShardedDatabaseShardDetail']]:
|
2064
|
+
"""
|
2065
|
+
Collection of ATP-Dedicated shards that needs to be created.
|
2066
|
+
"""
|
2067
|
+
return pulumi.get(self, "shard_details")
|
2068
|
+
|
2069
|
+
@property
|
2070
|
+
@pulumi.getter(name="shardedDatabaseId")
|
2071
|
+
def sharded_database_id(self) -> pulumi.Output[str]:
|
2072
|
+
return pulumi.get(self, "sharded_database_id")
|
2073
|
+
|
2074
|
+
@property
|
2075
|
+
@pulumi.getter(name="shardingMethod")
|
2076
|
+
def sharding_method(self) -> pulumi.Output[str]:
|
2077
|
+
"""
|
2078
|
+
Sharding Method.
|
2079
|
+
"""
|
2080
|
+
return pulumi.get(self, "sharding_method")
|
2081
|
+
|
2082
|
+
@property
|
2083
|
+
@pulumi.getter(name="startDatabaseTrigger")
|
2084
|
+
def start_database_trigger(self) -> pulumi.Output[Optional[int]]:
|
2085
|
+
"""
|
2086
|
+
(Updatable) An optional property when incremented triggers Start Database. Could be set to any integer value.
|
2087
|
+
"""
|
2088
|
+
return pulumi.get(self, "start_database_trigger")
|
2089
|
+
|
2090
|
+
@property
|
2091
|
+
@pulumi.getter
|
2092
|
+
def state(self) -> pulumi.Output[str]:
|
2093
|
+
"""
|
2094
|
+
Lifecycle states for sharded databases.
|
2095
|
+
"""
|
2096
|
+
return pulumi.get(self, "state")
|
2097
|
+
|
2098
|
+
@property
|
2099
|
+
@pulumi.getter(name="stopDatabaseTrigger")
|
2100
|
+
def stop_database_trigger(self) -> pulumi.Output[Optional[int]]:
|
2101
|
+
"""
|
2102
|
+
(Updatable) An optional property when incremented triggers Stop Database. Could be set to any integer value.
|
2103
|
+
"""
|
2104
|
+
return pulumi.get(self, "stop_database_trigger")
|
2105
|
+
|
2106
|
+
@property
|
2107
|
+
@pulumi.getter(name="systemTags")
|
2108
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
2109
|
+
"""
|
2110
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
2111
|
+
"""
|
2112
|
+
return pulumi.get(self, "system_tags")
|
2113
|
+
|
2114
|
+
@property
|
2115
|
+
@pulumi.getter(name="timeCreated")
|
2116
|
+
def time_created(self) -> pulumi.Output[str]:
|
2117
|
+
"""
|
2118
|
+
The time the the Sharded Database was created. An RFC3339 formatted datetime string
|
2119
|
+
"""
|
2120
|
+
return pulumi.get(self, "time_created")
|
2121
|
+
|
2122
|
+
@property
|
2123
|
+
@pulumi.getter(name="timeUpdated")
|
2124
|
+
def time_updated(self) -> pulumi.Output[str]:
|
2125
|
+
"""
|
2126
|
+
The time the Sharded Database was last updated. An RFC3339 formatted datetime string
|
2127
|
+
"""
|
2128
|
+
return pulumi.get(self, "time_updated")
|
2129
|
+
|
2130
|
+
@property
|
2131
|
+
@pulumi.getter(name="timeZone")
|
2132
|
+
def time_zone(self) -> pulumi.Output[str]:
|
2133
|
+
"""
|
2134
|
+
Timezone associated with the sharded database.
|
2135
|
+
"""
|
2136
|
+
return pulumi.get(self, "time_zone")
|
2137
|
+
|
2138
|
+
@property
|
2139
|
+
@pulumi.getter(name="uploadSignedCertificateAndGenerateWalletTrigger")
|
2140
|
+
def upload_signed_certificate_and_generate_wallet_trigger(self) -> pulumi.Output[Optional[int]]:
|
2141
|
+
"""
|
2142
|
+
(Updatable) An optional property when incremented triggers Upload Signed Certificate And Generate Wallet. Could be set to any integer value.
|
2143
|
+
"""
|
2144
|
+
return pulumi.get(self, "upload_signed_certificate_and_generate_wallet_trigger")
|
2145
|
+
|
2146
|
+
@property
|
2147
|
+
@pulumi.getter(name="validateNetworkTrigger")
|
2148
|
+
def validate_network_trigger(self) -> pulumi.Output[Optional[int]]:
|
2149
|
+
"""
|
2150
|
+
(Updatable) An optional property when incremented triggers Validate Network. Could be set to any integer value.
|
2151
|
+
|
2152
|
+
|
2153
|
+
** IMPORTANT **
|
2154
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2155
|
+
"""
|
2156
|
+
return pulumi.get(self, "validate_network_trigger")
|
2157
|
+
|