pulumi-oci 2.8.0a1724316519__py3-none-any.whl → 2.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +86 -38
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/outputs.py +163 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +23 -0
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_db_system.py +53 -0
- pulumi_oci/mysql/outputs.py +74 -6
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +104 -86
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -10,6 +10,11 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
10
|
from .. import _utilities
|
11
11
|
|
12
12
|
__all__ = [
|
13
|
+
'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs',
|
14
|
+
'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs',
|
15
|
+
'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs',
|
16
|
+
'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs',
|
17
|
+
'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs',
|
13
18
|
'DatabaseDbmFeaturesManagementFeatureDetailsArgs',
|
14
19
|
'DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs',
|
15
20
|
'DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs',
|
@@ -69,6 +74,11 @@ __all__ = [
|
|
69
74
|
'ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs',
|
70
75
|
'ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs',
|
71
76
|
'ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs',
|
77
|
+
'ManagedDatabaseDbmgmtFeatureConfigArgs',
|
78
|
+
'ManagedDatabaseDbmgmtFeatureConfigConnectorDetailArgs',
|
79
|
+
'ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailArgs',
|
80
|
+
'ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredentialArgs',
|
81
|
+
'ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionStringArgs',
|
72
82
|
'ManagedDatabaseGroupManagedDatabaseArgs',
|
73
83
|
'ManagedDatabaseManagedDatabaseGroupArgs',
|
74
84
|
'ManagedDatabasesChangeDatabaseParameterCredentialsArgs',
|
@@ -134,6 +144,358 @@ __all__ = [
|
|
134
144
|
'GetNamedCredentialsFilterArgs',
|
135
145
|
]
|
136
146
|
|
147
|
+
@pulumi.input_type
|
148
|
+
class AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs:
|
149
|
+
def __init__(__self__, *,
|
150
|
+
feature: pulumi.Input[str],
|
151
|
+
connector_details: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs']] = None,
|
152
|
+
database_connection_details: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs']] = None):
|
153
|
+
"""
|
154
|
+
:param pulumi.Input[str] feature: The name of the Database Management feature.
|
155
|
+
:param pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs'] connector_details: The connector details required to connect to an Oracle cloud database.
|
156
|
+
:param pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs'] database_connection_details: The connection details required to connect to the database.
|
157
|
+
"""
|
158
|
+
pulumi.set(__self__, "feature", feature)
|
159
|
+
if connector_details is not None:
|
160
|
+
pulumi.set(__self__, "connector_details", connector_details)
|
161
|
+
if database_connection_details is not None:
|
162
|
+
pulumi.set(__self__, "database_connection_details", database_connection_details)
|
163
|
+
|
164
|
+
@property
|
165
|
+
@pulumi.getter
|
166
|
+
def feature(self) -> pulumi.Input[str]:
|
167
|
+
"""
|
168
|
+
The name of the Database Management feature.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "feature")
|
171
|
+
|
172
|
+
@feature.setter
|
173
|
+
def feature(self, value: pulumi.Input[str]):
|
174
|
+
pulumi.set(self, "feature", value)
|
175
|
+
|
176
|
+
@property
|
177
|
+
@pulumi.getter(name="connectorDetails")
|
178
|
+
def connector_details(self) -> Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs']]:
|
179
|
+
"""
|
180
|
+
The connector details required to connect to an Oracle cloud database.
|
181
|
+
"""
|
182
|
+
return pulumi.get(self, "connector_details")
|
183
|
+
|
184
|
+
@connector_details.setter
|
185
|
+
def connector_details(self, value: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs']]):
|
186
|
+
pulumi.set(self, "connector_details", value)
|
187
|
+
|
188
|
+
@property
|
189
|
+
@pulumi.getter(name="databaseConnectionDetails")
|
190
|
+
def database_connection_details(self) -> Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs']]:
|
191
|
+
"""
|
192
|
+
The connection details required to connect to the database.
|
193
|
+
"""
|
194
|
+
return pulumi.get(self, "database_connection_details")
|
195
|
+
|
196
|
+
@database_connection_details.setter
|
197
|
+
def database_connection_details(self, value: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs']]):
|
198
|
+
pulumi.set(self, "database_connection_details", value)
|
199
|
+
|
200
|
+
|
201
|
+
@pulumi.input_type
|
202
|
+
class AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs:
|
203
|
+
def __init__(__self__, *,
|
204
|
+
connector_type: Optional[pulumi.Input[str]] = None,
|
205
|
+
database_connector_id: Optional[pulumi.Input[str]] = None,
|
206
|
+
management_agent_id: Optional[pulumi.Input[str]] = None,
|
207
|
+
private_end_point_id: Optional[pulumi.Input[str]] = None):
|
208
|
+
"""
|
209
|
+
:param pulumi.Input[str] connector_type: The list of supported connection types:
|
210
|
+
* PE: Private endpoint
|
211
|
+
* MACS: Management agent
|
212
|
+
* EXTERNAL: External database connector
|
213
|
+
* DIRECT: Direct connection
|
214
|
+
:param pulumi.Input[str] database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
|
215
|
+
:param pulumi.Input[str] management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
|
216
|
+
:param pulumi.Input[str] private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
|
217
|
+
"""
|
218
|
+
if connector_type is not None:
|
219
|
+
pulumi.set(__self__, "connector_type", connector_type)
|
220
|
+
if database_connector_id is not None:
|
221
|
+
pulumi.set(__self__, "database_connector_id", database_connector_id)
|
222
|
+
if management_agent_id is not None:
|
223
|
+
pulumi.set(__self__, "management_agent_id", management_agent_id)
|
224
|
+
if private_end_point_id is not None:
|
225
|
+
pulumi.set(__self__, "private_end_point_id", private_end_point_id)
|
226
|
+
|
227
|
+
@property
|
228
|
+
@pulumi.getter(name="connectorType")
|
229
|
+
def connector_type(self) -> Optional[pulumi.Input[str]]:
|
230
|
+
"""
|
231
|
+
The list of supported connection types:
|
232
|
+
* PE: Private endpoint
|
233
|
+
* MACS: Management agent
|
234
|
+
* EXTERNAL: External database connector
|
235
|
+
* DIRECT: Direct connection
|
236
|
+
"""
|
237
|
+
return pulumi.get(self, "connector_type")
|
238
|
+
|
239
|
+
@connector_type.setter
|
240
|
+
def connector_type(self, value: Optional[pulumi.Input[str]]):
|
241
|
+
pulumi.set(self, "connector_type", value)
|
242
|
+
|
243
|
+
@property
|
244
|
+
@pulumi.getter(name="databaseConnectorId")
|
245
|
+
def database_connector_id(self) -> Optional[pulumi.Input[str]]:
|
246
|
+
"""
|
247
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
|
248
|
+
"""
|
249
|
+
return pulumi.get(self, "database_connector_id")
|
250
|
+
|
251
|
+
@database_connector_id.setter
|
252
|
+
def database_connector_id(self, value: Optional[pulumi.Input[str]]):
|
253
|
+
pulumi.set(self, "database_connector_id", value)
|
254
|
+
|
255
|
+
@property
|
256
|
+
@pulumi.getter(name="managementAgentId")
|
257
|
+
def management_agent_id(self) -> Optional[pulumi.Input[str]]:
|
258
|
+
"""
|
259
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
|
260
|
+
"""
|
261
|
+
return pulumi.get(self, "management_agent_id")
|
262
|
+
|
263
|
+
@management_agent_id.setter
|
264
|
+
def management_agent_id(self, value: Optional[pulumi.Input[str]]):
|
265
|
+
pulumi.set(self, "management_agent_id", value)
|
266
|
+
|
267
|
+
@property
|
268
|
+
@pulumi.getter(name="privateEndPointId")
|
269
|
+
def private_end_point_id(self) -> Optional[pulumi.Input[str]]:
|
270
|
+
"""
|
271
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
|
272
|
+
"""
|
273
|
+
return pulumi.get(self, "private_end_point_id")
|
274
|
+
|
275
|
+
@private_end_point_id.setter
|
276
|
+
def private_end_point_id(self, value: Optional[pulumi.Input[str]]):
|
277
|
+
pulumi.set(self, "private_end_point_id", value)
|
278
|
+
|
279
|
+
|
280
|
+
@pulumi.input_type
|
281
|
+
class AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs:
|
282
|
+
def __init__(__self__, *,
|
283
|
+
connection_credentials: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs']] = None,
|
284
|
+
connection_string: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs']] = None):
|
285
|
+
"""
|
286
|
+
:param pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs'] connection_credentials: The credentials used to connect to the database. Currently only the `DETAILS` type is supported for creating MACS connector credentials.
|
287
|
+
:param pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs'] connection_string: The details of the Oracle Database connection string.
|
288
|
+
"""
|
289
|
+
if connection_credentials is not None:
|
290
|
+
pulumi.set(__self__, "connection_credentials", connection_credentials)
|
291
|
+
if connection_string is not None:
|
292
|
+
pulumi.set(__self__, "connection_string", connection_string)
|
293
|
+
|
294
|
+
@property
|
295
|
+
@pulumi.getter(name="connectionCredentials")
|
296
|
+
def connection_credentials(self) -> Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs']]:
|
297
|
+
"""
|
298
|
+
The credentials used to connect to the database. Currently only the `DETAILS` type is supported for creating MACS connector credentials.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "connection_credentials")
|
301
|
+
|
302
|
+
@connection_credentials.setter
|
303
|
+
def connection_credentials(self, value: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs']]):
|
304
|
+
pulumi.set(self, "connection_credentials", value)
|
305
|
+
|
306
|
+
@property
|
307
|
+
@pulumi.getter(name="connectionString")
|
308
|
+
def connection_string(self) -> Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs']]:
|
309
|
+
"""
|
310
|
+
The details of the Oracle Database connection string.
|
311
|
+
"""
|
312
|
+
return pulumi.get(self, "connection_string")
|
313
|
+
|
314
|
+
@connection_string.setter
|
315
|
+
def connection_string(self, value: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs']]):
|
316
|
+
pulumi.set(self, "connection_string", value)
|
317
|
+
|
318
|
+
|
319
|
+
@pulumi.input_type
|
320
|
+
class AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs:
|
321
|
+
def __init__(__self__, *,
|
322
|
+
credential_name: Optional[pulumi.Input[str]] = None,
|
323
|
+
credential_type: Optional[pulumi.Input[str]] = None,
|
324
|
+
password_secret_id: Optional[pulumi.Input[str]] = None,
|
325
|
+
role: Optional[pulumi.Input[str]] = None,
|
326
|
+
ssl_secret_id: Optional[pulumi.Input[str]] = None,
|
327
|
+
user_name: Optional[pulumi.Input[str]] = None):
|
328
|
+
"""
|
329
|
+
:param pulumi.Input[str] credential_name: The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
|
330
|
+
|
331
|
+
For example: inventorydb.abc112233445566778899
|
332
|
+
:param pulumi.Input[str] credential_type: The type of credential used to connect to the database.
|
333
|
+
:param pulumi.Input[str] password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
|
334
|
+
:param pulumi.Input[str] role: The role of the user connecting to the database.
|
335
|
+
:param pulumi.Input[str] ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
336
|
+
:param pulumi.Input[str] user_name: The user name used to connect to the database.
|
337
|
+
"""
|
338
|
+
if credential_name is not None:
|
339
|
+
pulumi.set(__self__, "credential_name", credential_name)
|
340
|
+
if credential_type is not None:
|
341
|
+
pulumi.set(__self__, "credential_type", credential_type)
|
342
|
+
if password_secret_id is not None:
|
343
|
+
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
344
|
+
if role is not None:
|
345
|
+
pulumi.set(__self__, "role", role)
|
346
|
+
if ssl_secret_id is not None:
|
347
|
+
pulumi.set(__self__, "ssl_secret_id", ssl_secret_id)
|
348
|
+
if user_name is not None:
|
349
|
+
pulumi.set(__self__, "user_name", user_name)
|
350
|
+
|
351
|
+
@property
|
352
|
+
@pulumi.getter(name="credentialName")
|
353
|
+
def credential_name(self) -> Optional[pulumi.Input[str]]:
|
354
|
+
"""
|
355
|
+
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
|
356
|
+
|
357
|
+
For example: inventorydb.abc112233445566778899
|
358
|
+
"""
|
359
|
+
return pulumi.get(self, "credential_name")
|
360
|
+
|
361
|
+
@credential_name.setter
|
362
|
+
def credential_name(self, value: Optional[pulumi.Input[str]]):
|
363
|
+
pulumi.set(self, "credential_name", value)
|
364
|
+
|
365
|
+
@property
|
366
|
+
@pulumi.getter(name="credentialType")
|
367
|
+
def credential_type(self) -> Optional[pulumi.Input[str]]:
|
368
|
+
"""
|
369
|
+
The type of credential used to connect to the database.
|
370
|
+
"""
|
371
|
+
return pulumi.get(self, "credential_type")
|
372
|
+
|
373
|
+
@credential_type.setter
|
374
|
+
def credential_type(self, value: Optional[pulumi.Input[str]]):
|
375
|
+
pulumi.set(self, "credential_type", value)
|
376
|
+
|
377
|
+
@property
|
378
|
+
@pulumi.getter(name="passwordSecretId")
|
379
|
+
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
380
|
+
"""
|
381
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
|
382
|
+
"""
|
383
|
+
return pulumi.get(self, "password_secret_id")
|
384
|
+
|
385
|
+
@password_secret_id.setter
|
386
|
+
def password_secret_id(self, value: Optional[pulumi.Input[str]]):
|
387
|
+
pulumi.set(self, "password_secret_id", value)
|
388
|
+
|
389
|
+
@property
|
390
|
+
@pulumi.getter
|
391
|
+
def role(self) -> Optional[pulumi.Input[str]]:
|
392
|
+
"""
|
393
|
+
The role of the user connecting to the database.
|
394
|
+
"""
|
395
|
+
return pulumi.get(self, "role")
|
396
|
+
|
397
|
+
@role.setter
|
398
|
+
def role(self, value: Optional[pulumi.Input[str]]):
|
399
|
+
pulumi.set(self, "role", value)
|
400
|
+
|
401
|
+
@property
|
402
|
+
@pulumi.getter(name="sslSecretId")
|
403
|
+
def ssl_secret_id(self) -> Optional[pulumi.Input[str]]:
|
404
|
+
"""
|
405
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
406
|
+
"""
|
407
|
+
return pulumi.get(self, "ssl_secret_id")
|
408
|
+
|
409
|
+
@ssl_secret_id.setter
|
410
|
+
def ssl_secret_id(self, value: Optional[pulumi.Input[str]]):
|
411
|
+
pulumi.set(self, "ssl_secret_id", value)
|
412
|
+
|
413
|
+
@property
|
414
|
+
@pulumi.getter(name="userName")
|
415
|
+
def user_name(self) -> Optional[pulumi.Input[str]]:
|
416
|
+
"""
|
417
|
+
The user name used to connect to the database.
|
418
|
+
"""
|
419
|
+
return pulumi.get(self, "user_name")
|
420
|
+
|
421
|
+
@user_name.setter
|
422
|
+
def user_name(self, value: Optional[pulumi.Input[str]]):
|
423
|
+
pulumi.set(self, "user_name", value)
|
424
|
+
|
425
|
+
|
426
|
+
@pulumi.input_type
|
427
|
+
class AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs:
|
428
|
+
def __init__(__self__, *,
|
429
|
+
connection_type: Optional[pulumi.Input[str]] = None,
|
430
|
+
port: Optional[pulumi.Input[int]] = None,
|
431
|
+
protocol: Optional[pulumi.Input[str]] = None,
|
432
|
+
service: Optional[pulumi.Input[str]] = None):
|
433
|
+
"""
|
434
|
+
:param pulumi.Input[str] connection_type: The list of supported connection types:
|
435
|
+
* BASIC: Basic connection details
|
436
|
+
:param pulumi.Input[int] port: The port number used to connect to the database.
|
437
|
+
:param pulumi.Input[str] protocol: The protocol used to connect to the database.
|
438
|
+
:param pulumi.Input[str] service: The service name of the database.
|
439
|
+
"""
|
440
|
+
if connection_type is not None:
|
441
|
+
pulumi.set(__self__, "connection_type", connection_type)
|
442
|
+
if port is not None:
|
443
|
+
pulumi.set(__self__, "port", port)
|
444
|
+
if protocol is not None:
|
445
|
+
pulumi.set(__self__, "protocol", protocol)
|
446
|
+
if service is not None:
|
447
|
+
pulumi.set(__self__, "service", service)
|
448
|
+
|
449
|
+
@property
|
450
|
+
@pulumi.getter(name="connectionType")
|
451
|
+
def connection_type(self) -> Optional[pulumi.Input[str]]:
|
452
|
+
"""
|
453
|
+
The list of supported connection types:
|
454
|
+
* BASIC: Basic connection details
|
455
|
+
"""
|
456
|
+
return pulumi.get(self, "connection_type")
|
457
|
+
|
458
|
+
@connection_type.setter
|
459
|
+
def connection_type(self, value: Optional[pulumi.Input[str]]):
|
460
|
+
pulumi.set(self, "connection_type", value)
|
461
|
+
|
462
|
+
@property
|
463
|
+
@pulumi.getter
|
464
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
465
|
+
"""
|
466
|
+
The port number used to connect to the database.
|
467
|
+
"""
|
468
|
+
return pulumi.get(self, "port")
|
469
|
+
|
470
|
+
@port.setter
|
471
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
472
|
+
pulumi.set(self, "port", value)
|
473
|
+
|
474
|
+
@property
|
475
|
+
@pulumi.getter
|
476
|
+
def protocol(self) -> Optional[pulumi.Input[str]]:
|
477
|
+
"""
|
478
|
+
The protocol used to connect to the database.
|
479
|
+
"""
|
480
|
+
return pulumi.get(self, "protocol")
|
481
|
+
|
482
|
+
@protocol.setter
|
483
|
+
def protocol(self, value: Optional[pulumi.Input[str]]):
|
484
|
+
pulumi.set(self, "protocol", value)
|
485
|
+
|
486
|
+
@property
|
487
|
+
@pulumi.getter
|
488
|
+
def service(self) -> Optional[pulumi.Input[str]]:
|
489
|
+
"""
|
490
|
+
The service name of the database.
|
491
|
+
"""
|
492
|
+
return pulumi.get(self, "service")
|
493
|
+
|
494
|
+
@service.setter
|
495
|
+
def service(self, value: Optional[pulumi.Input[str]]):
|
496
|
+
pulumi.set(self, "service", value)
|
497
|
+
|
498
|
+
|
137
499
|
@pulumi.input_type
|
138
500
|
class DatabaseDbmFeaturesManagementFeatureDetailsArgs:
|
139
501
|
def __init__(__self__, *,
|
@@ -232,6 +594,7 @@ class DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs:
|
|
232
594
|
* PE: Private endpoint
|
233
595
|
* MACS: Management agent
|
234
596
|
* EXTERNAL: External database connector
|
597
|
+
* DIRECT: Direct connection
|
235
598
|
:param pulumi.Input[str] database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
|
236
599
|
:param pulumi.Input[str] management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
|
237
600
|
:param pulumi.Input[str] private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
|
@@ -253,6 +616,7 @@ class DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs:
|
|
253
616
|
* PE: Private endpoint
|
254
617
|
* MACS: Management agent
|
255
618
|
* EXTERNAL: External database connector
|
619
|
+
* DIRECT: Direct connection
|
256
620
|
"""
|
257
621
|
return pulumi.get(self, "connector_type")
|
258
622
|
|
@@ -341,6 +705,7 @@ class DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnec
|
|
341
705
|
def __init__(__self__, *,
|
342
706
|
credential_name: Optional[pulumi.Input[str]] = None,
|
343
707
|
credential_type: Optional[pulumi.Input[str]] = None,
|
708
|
+
named_credential_id: Optional[pulumi.Input[str]] = None,
|
344
709
|
password_secret_id: Optional[pulumi.Input[str]] = None,
|
345
710
|
role: Optional[pulumi.Input[str]] = None,
|
346
711
|
ssl_secret_id: Optional[pulumi.Input[str]] = None,
|
@@ -350,6 +715,7 @@ class DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnec
|
|
350
715
|
|
351
716
|
For example: inventorydb.abc112233445566778899
|
352
717
|
:param pulumi.Input[str] credential_type: The type of credential used to connect to the database.
|
718
|
+
:param pulumi.Input[str] named_credential_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Named Credential where the database password metadata is stored.
|
353
719
|
:param pulumi.Input[str] password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
|
354
720
|
:param pulumi.Input[str] role: The role of the user connecting to the database.
|
355
721
|
:param pulumi.Input[str] ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
@@ -359,6 +725,8 @@ class DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnec
|
|
359
725
|
pulumi.set(__self__, "credential_name", credential_name)
|
360
726
|
if credential_type is not None:
|
361
727
|
pulumi.set(__self__, "credential_type", credential_type)
|
728
|
+
if named_credential_id is not None:
|
729
|
+
pulumi.set(__self__, "named_credential_id", named_credential_id)
|
362
730
|
if password_secret_id is not None:
|
363
731
|
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
364
732
|
if role is not None:
|
@@ -394,6 +762,18 @@ class DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnec
|
|
394
762
|
def credential_type(self, value: Optional[pulumi.Input[str]]):
|
395
763
|
pulumi.set(self, "credential_type", value)
|
396
764
|
|
765
|
+
@property
|
766
|
+
@pulumi.getter(name="namedCredentialId")
|
767
|
+
def named_credential_id(self) -> Optional[pulumi.Input[str]]:
|
768
|
+
"""
|
769
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Named Credential where the database password metadata is stored.
|
770
|
+
"""
|
771
|
+
return pulumi.get(self, "named_credential_id")
|
772
|
+
|
773
|
+
@named_credential_id.setter
|
774
|
+
def named_credential_id(self, value: Optional[pulumi.Input[str]]):
|
775
|
+
pulumi.set(self, "named_credential_id", value)
|
776
|
+
|
397
777
|
@property
|
398
778
|
@pulumi.getter(name="passwordSecretId")
|
399
779
|
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -907,6 +1287,7 @@ class ExternalDbSystemConnectorConnectionInfoConnectionCredentialArgs:
|
|
907
1287
|
def __init__(__self__, *,
|
908
1288
|
credential_name: Optional[pulumi.Input[str]] = None,
|
909
1289
|
credential_type: Optional[pulumi.Input[str]] = None,
|
1290
|
+
named_credential_id: Optional[pulumi.Input[str]] = None,
|
910
1291
|
password_secret_id: Optional[pulumi.Input[str]] = None,
|
911
1292
|
role: Optional[pulumi.Input[str]] = None,
|
912
1293
|
ssl_secret_id: Optional[pulumi.Input[str]] = None,
|
@@ -914,6 +1295,7 @@ class ExternalDbSystemConnectorConnectionInfoConnectionCredentialArgs:
|
|
914
1295
|
"""
|
915
1296
|
:param pulumi.Input[str] credential_name: The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
|
916
1297
|
:param pulumi.Input[str] credential_type: The type of the credential for tablespace administration tasks.
|
1298
|
+
:param pulumi.Input[str] named_credential_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
|
917
1299
|
:param pulumi.Input[str] password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database password is stored.
|
918
1300
|
:param pulumi.Input[str] role: The role of the database user.
|
919
1301
|
:param pulumi.Input[str] ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
@@ -923,6 +1305,8 @@ class ExternalDbSystemConnectorConnectionInfoConnectionCredentialArgs:
|
|
923
1305
|
pulumi.set(__self__, "credential_name", credential_name)
|
924
1306
|
if credential_type is not None:
|
925
1307
|
pulumi.set(__self__, "credential_type", credential_type)
|
1308
|
+
if named_credential_id is not None:
|
1309
|
+
pulumi.set(__self__, "named_credential_id", named_credential_id)
|
926
1310
|
if password_secret_id is not None:
|
927
1311
|
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
928
1312
|
if role is not None:
|
@@ -956,6 +1340,18 @@ class ExternalDbSystemConnectorConnectionInfoConnectionCredentialArgs:
|
|
956
1340
|
def credential_type(self, value: Optional[pulumi.Input[str]]):
|
957
1341
|
pulumi.set(self, "credential_type", value)
|
958
1342
|
|
1343
|
+
@property
|
1344
|
+
@pulumi.getter(name="namedCredentialId")
|
1345
|
+
def named_credential_id(self) -> Optional[pulumi.Input[str]]:
|
1346
|
+
"""
|
1347
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
|
1348
|
+
"""
|
1349
|
+
return pulumi.get(self, "named_credential_id")
|
1350
|
+
|
1351
|
+
@named_credential_id.setter
|
1352
|
+
def named_credential_id(self, value: Optional[pulumi.Input[str]]):
|
1353
|
+
pulumi.set(self, "named_credential_id", value)
|
1354
|
+
|
959
1355
|
@property
|
960
1356
|
@pulumi.getter(name="passwordSecretId")
|
961
1357
|
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -2376,6 +2772,7 @@ class ExternalDbSystemDiscoveryDiscoveredComponentClusterInstanceConnectorConnec
|
|
2376
2772
|
def __init__(__self__, *,
|
2377
2773
|
credential_name: Optional[pulumi.Input[str]] = None,
|
2378
2774
|
credential_type: Optional[pulumi.Input[str]] = None,
|
2775
|
+
named_credential_id: Optional[pulumi.Input[str]] = None,
|
2379
2776
|
password_secret_id: Optional[pulumi.Input[str]] = None,
|
2380
2777
|
role: Optional[pulumi.Input[str]] = None,
|
2381
2778
|
ssl_secret_id: Optional[pulumi.Input[str]] = None,
|
@@ -2383,6 +2780,7 @@ class ExternalDbSystemDiscoveryDiscoveredComponentClusterInstanceConnectorConnec
|
|
2383
2780
|
"""
|
2384
2781
|
:param pulumi.Input[str] credential_name: The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
|
2385
2782
|
:param pulumi.Input[str] credential_type: The type of the credential for tablespace administration tasks.
|
2783
|
+
:param pulumi.Input[str] named_credential_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
|
2386
2784
|
:param pulumi.Input[str] password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database password is stored.
|
2387
2785
|
:param pulumi.Input[str] role: The role of the database user.
|
2388
2786
|
:param pulumi.Input[str] ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
@@ -2392,6 +2790,8 @@ class ExternalDbSystemDiscoveryDiscoveredComponentClusterInstanceConnectorConnec
|
|
2392
2790
|
pulumi.set(__self__, "credential_name", credential_name)
|
2393
2791
|
if credential_type is not None:
|
2394
2792
|
pulumi.set(__self__, "credential_type", credential_type)
|
2793
|
+
if named_credential_id is not None:
|
2794
|
+
pulumi.set(__self__, "named_credential_id", named_credential_id)
|
2395
2795
|
if password_secret_id is not None:
|
2396
2796
|
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
2397
2797
|
if role is not None:
|
@@ -2425,6 +2825,18 @@ class ExternalDbSystemDiscoveryDiscoveredComponentClusterInstanceConnectorConnec
|
|
2425
2825
|
def credential_type(self, value: Optional[pulumi.Input[str]]):
|
2426
2826
|
pulumi.set(self, "credential_type", value)
|
2427
2827
|
|
2828
|
+
@property
|
2829
|
+
@pulumi.getter(name="namedCredentialId")
|
2830
|
+
def named_credential_id(self) -> Optional[pulumi.Input[str]]:
|
2831
|
+
"""
|
2832
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
|
2833
|
+
"""
|
2834
|
+
return pulumi.get(self, "named_credential_id")
|
2835
|
+
|
2836
|
+
@named_credential_id.setter
|
2837
|
+
def named_credential_id(self, value: Optional[pulumi.Input[str]]):
|
2838
|
+
pulumi.set(self, "named_credential_id", value)
|
2839
|
+
|
2428
2840
|
@property
|
2429
2841
|
@pulumi.getter(name="passwordSecretId")
|
2430
2842
|
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -2859,6 +3271,7 @@ class ExternalDbSystemDiscoveryDiscoveredComponentConnectorConnectionInfoConnect
|
|
2859
3271
|
def __init__(__self__, *,
|
2860
3272
|
credential_name: Optional[pulumi.Input[str]] = None,
|
2861
3273
|
credential_type: Optional[pulumi.Input[str]] = None,
|
3274
|
+
named_credential_id: Optional[pulumi.Input[str]] = None,
|
2862
3275
|
password_secret_id: Optional[pulumi.Input[str]] = None,
|
2863
3276
|
role: Optional[pulumi.Input[str]] = None,
|
2864
3277
|
ssl_secret_id: Optional[pulumi.Input[str]] = None,
|
@@ -2866,6 +3279,7 @@ class ExternalDbSystemDiscoveryDiscoveredComponentConnectorConnectionInfoConnect
|
|
2866
3279
|
"""
|
2867
3280
|
:param pulumi.Input[str] credential_name: The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
|
2868
3281
|
:param pulumi.Input[str] credential_type: The type of the credential for tablespace administration tasks.
|
3282
|
+
:param pulumi.Input[str] named_credential_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
|
2869
3283
|
:param pulumi.Input[str] password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database password is stored.
|
2870
3284
|
:param pulumi.Input[str] role: The role of the database user.
|
2871
3285
|
:param pulumi.Input[str] ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
@@ -2875,6 +3289,8 @@ class ExternalDbSystemDiscoveryDiscoveredComponentConnectorConnectionInfoConnect
|
|
2875
3289
|
pulumi.set(__self__, "credential_name", credential_name)
|
2876
3290
|
if credential_type is not None:
|
2877
3291
|
pulumi.set(__self__, "credential_type", credential_type)
|
3292
|
+
if named_credential_id is not None:
|
3293
|
+
pulumi.set(__self__, "named_credential_id", named_credential_id)
|
2878
3294
|
if password_secret_id is not None:
|
2879
3295
|
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
2880
3296
|
if role is not None:
|
@@ -2908,6 +3324,18 @@ class ExternalDbSystemDiscoveryDiscoveredComponentConnectorConnectionInfoConnect
|
|
2908
3324
|
def credential_type(self, value: Optional[pulumi.Input[str]]):
|
2909
3325
|
pulumi.set(self, "credential_type", value)
|
2910
3326
|
|
3327
|
+
@property
|
3328
|
+
@pulumi.getter(name="namedCredentialId")
|
3329
|
+
def named_credential_id(self) -> Optional[pulumi.Input[str]]:
|
3330
|
+
"""
|
3331
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
|
3332
|
+
"""
|
3333
|
+
return pulumi.get(self, "named_credential_id")
|
3334
|
+
|
3335
|
+
@named_credential_id.setter
|
3336
|
+
def named_credential_id(self, value: Optional[pulumi.Input[str]]):
|
3337
|
+
pulumi.set(self, "named_credential_id", value)
|
3338
|
+
|
2911
3339
|
@property
|
2912
3340
|
@pulumi.getter(name="passwordSecretId")
|
2913
3341
|
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -3555,6 +3983,7 @@ class ExternalDbSystemDiscoveryDiscoveredComponentPluggableDatabaseConnectorConn
|
|
3555
3983
|
def __init__(__self__, *,
|
3556
3984
|
credential_name: Optional[pulumi.Input[str]] = None,
|
3557
3985
|
credential_type: Optional[pulumi.Input[str]] = None,
|
3986
|
+
named_credential_id: Optional[pulumi.Input[str]] = None,
|
3558
3987
|
password_secret_id: Optional[pulumi.Input[str]] = None,
|
3559
3988
|
role: Optional[pulumi.Input[str]] = None,
|
3560
3989
|
ssl_secret_id: Optional[pulumi.Input[str]] = None,
|
@@ -3562,6 +3991,7 @@ class ExternalDbSystemDiscoveryDiscoveredComponentPluggableDatabaseConnectorConn
|
|
3562
3991
|
"""
|
3563
3992
|
:param pulumi.Input[str] credential_name: The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
|
3564
3993
|
:param pulumi.Input[str] credential_type: The type of the credential for tablespace administration tasks.
|
3994
|
+
:param pulumi.Input[str] named_credential_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
|
3565
3995
|
:param pulumi.Input[str] password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database password is stored.
|
3566
3996
|
:param pulumi.Input[str] role: The role of the database user.
|
3567
3997
|
:param pulumi.Input[str] ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
@@ -3571,6 +4001,8 @@ class ExternalDbSystemDiscoveryDiscoveredComponentPluggableDatabaseConnectorConn
|
|
3571
4001
|
pulumi.set(__self__, "credential_name", credential_name)
|
3572
4002
|
if credential_type is not None:
|
3573
4003
|
pulumi.set(__self__, "credential_type", credential_type)
|
4004
|
+
if named_credential_id is not None:
|
4005
|
+
pulumi.set(__self__, "named_credential_id", named_credential_id)
|
3574
4006
|
if password_secret_id is not None:
|
3575
4007
|
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
3576
4008
|
if role is not None:
|
@@ -3604,6 +4036,18 @@ class ExternalDbSystemDiscoveryDiscoveredComponentPluggableDatabaseConnectorConn
|
|
3604
4036
|
def credential_type(self, value: Optional[pulumi.Input[str]]):
|
3605
4037
|
pulumi.set(self, "credential_type", value)
|
3606
4038
|
|
4039
|
+
@property
|
4040
|
+
@pulumi.getter(name="namedCredentialId")
|
4041
|
+
def named_credential_id(self) -> Optional[pulumi.Input[str]]:
|
4042
|
+
"""
|
4043
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
|
4044
|
+
"""
|
4045
|
+
return pulumi.get(self, "named_credential_id")
|
4046
|
+
|
4047
|
+
@named_credential_id.setter
|
4048
|
+
def named_credential_id(self, value: Optional[pulumi.Input[str]]):
|
4049
|
+
pulumi.set(self, "named_credential_id", value)
|
4050
|
+
|
3607
4051
|
@property
|
3608
4052
|
@pulumi.getter(name="passwordSecretId")
|
3609
4053
|
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -5923,6 +6367,7 @@ class ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDeta
|
|
5923
6367
|
* PE: Private endpoint
|
5924
6368
|
* MACS: Management agent
|
5925
6369
|
* EXTERNAL: External database connector
|
6370
|
+
* DIRECT: Direct connection
|
5926
6371
|
:param pulumi.Input[str] database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
|
5927
6372
|
:param pulumi.Input[str] management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
|
5928
6373
|
:param pulumi.Input[str] private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
|
@@ -5944,6 +6389,7 @@ class ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDeta
|
|
5944
6389
|
* PE: Private endpoint
|
5945
6390
|
* MACS: Management agent
|
5946
6391
|
* EXTERNAL: External database connector
|
6392
|
+
* DIRECT: Direct connection
|
5947
6393
|
"""
|
5948
6394
|
return pulumi.get(self, "connector_type")
|
5949
6395
|
|
@@ -6054,6 +6500,7 @@ class ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatu
|
|
6054
6500
|
* PE: Private endpoint
|
6055
6501
|
* MACS: Management agent
|
6056
6502
|
* EXTERNAL: External database connector
|
6503
|
+
* DIRECT: Direct connection
|
6057
6504
|
:param pulumi.Input[str] database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
|
6058
6505
|
:param pulumi.Input[str] management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
|
6059
6506
|
:param pulumi.Input[str] private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
|
@@ -6075,6 +6522,7 @@ class ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatu
|
|
6075
6522
|
* PE: Private endpoint
|
6076
6523
|
* MACS: Management agent
|
6077
6524
|
* EXTERNAL: External database connector
|
6525
|
+
* DIRECT: Direct connection
|
6078
6526
|
"""
|
6079
6527
|
return pulumi.get(self, "connector_type")
|
6080
6528
|
|
@@ -6134,31 +6582,197 @@ class ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDeta
|
|
6134
6582
|
|
6135
6583
|
@property
|
6136
6584
|
@pulumi.getter
|
6137
|
-
def feature(self) -> pulumi.Input[str]:
|
6585
|
+
def feature(self) -> pulumi.Input[str]:
|
6586
|
+
"""
|
6587
|
+
The name of the Database Management feature.
|
6588
|
+
"""
|
6589
|
+
return pulumi.get(self, "feature")
|
6590
|
+
|
6591
|
+
@feature.setter
|
6592
|
+
def feature(self, value: pulumi.Input[str]):
|
6593
|
+
pulumi.set(self, "feature", value)
|
6594
|
+
|
6595
|
+
@property
|
6596
|
+
@pulumi.getter(name="connectorDetails")
|
6597
|
+
def connector_details(self) -> Optional[pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs']]:
|
6598
|
+
"""
|
6599
|
+
The connector details required to connect to an Oracle cloud database.
|
6600
|
+
"""
|
6601
|
+
return pulumi.get(self, "connector_details")
|
6602
|
+
|
6603
|
+
@connector_details.setter
|
6604
|
+
def connector_details(self, value: Optional[pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs']]):
|
6605
|
+
pulumi.set(self, "connector_details", value)
|
6606
|
+
|
6607
|
+
|
6608
|
+
@pulumi.input_type
|
6609
|
+
class ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs:
|
6610
|
+
def __init__(__self__, *,
|
6611
|
+
connector_type: Optional[pulumi.Input[str]] = None,
|
6612
|
+
database_connector_id: Optional[pulumi.Input[str]] = None,
|
6613
|
+
management_agent_id: Optional[pulumi.Input[str]] = None,
|
6614
|
+
private_end_point_id: Optional[pulumi.Input[str]] = None):
|
6615
|
+
"""
|
6616
|
+
:param pulumi.Input[str] connector_type: The list of supported connection types:
|
6617
|
+
* PE: Private endpoint
|
6618
|
+
* MACS: Management agent
|
6619
|
+
* EXTERNAL: External database connector
|
6620
|
+
* DIRECT: Direct connection
|
6621
|
+
:param pulumi.Input[str] database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
|
6622
|
+
:param pulumi.Input[str] management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
|
6623
|
+
:param pulumi.Input[str] private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
|
6624
|
+
"""
|
6625
|
+
if connector_type is not None:
|
6626
|
+
pulumi.set(__self__, "connector_type", connector_type)
|
6627
|
+
if database_connector_id is not None:
|
6628
|
+
pulumi.set(__self__, "database_connector_id", database_connector_id)
|
6629
|
+
if management_agent_id is not None:
|
6630
|
+
pulumi.set(__self__, "management_agent_id", management_agent_id)
|
6631
|
+
if private_end_point_id is not None:
|
6632
|
+
pulumi.set(__self__, "private_end_point_id", private_end_point_id)
|
6633
|
+
|
6634
|
+
@property
|
6635
|
+
@pulumi.getter(name="connectorType")
|
6636
|
+
def connector_type(self) -> Optional[pulumi.Input[str]]:
|
6637
|
+
"""
|
6638
|
+
The list of supported connection types:
|
6639
|
+
* PE: Private endpoint
|
6640
|
+
* MACS: Management agent
|
6641
|
+
* EXTERNAL: External database connector
|
6642
|
+
* DIRECT: Direct connection
|
6643
|
+
"""
|
6644
|
+
return pulumi.get(self, "connector_type")
|
6645
|
+
|
6646
|
+
@connector_type.setter
|
6647
|
+
def connector_type(self, value: Optional[pulumi.Input[str]]):
|
6648
|
+
pulumi.set(self, "connector_type", value)
|
6649
|
+
|
6650
|
+
@property
|
6651
|
+
@pulumi.getter(name="databaseConnectorId")
|
6652
|
+
def database_connector_id(self) -> Optional[pulumi.Input[str]]:
|
6653
|
+
"""
|
6654
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
|
6655
|
+
"""
|
6656
|
+
return pulumi.get(self, "database_connector_id")
|
6657
|
+
|
6658
|
+
@database_connector_id.setter
|
6659
|
+
def database_connector_id(self, value: Optional[pulumi.Input[str]]):
|
6660
|
+
pulumi.set(self, "database_connector_id", value)
|
6661
|
+
|
6662
|
+
@property
|
6663
|
+
@pulumi.getter(name="managementAgentId")
|
6664
|
+
def management_agent_id(self) -> Optional[pulumi.Input[str]]:
|
6665
|
+
"""
|
6666
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
|
6667
|
+
"""
|
6668
|
+
return pulumi.get(self, "management_agent_id")
|
6669
|
+
|
6670
|
+
@management_agent_id.setter
|
6671
|
+
def management_agent_id(self, value: Optional[pulumi.Input[str]]):
|
6672
|
+
pulumi.set(self, "management_agent_id", value)
|
6673
|
+
|
6674
|
+
@property
|
6675
|
+
@pulumi.getter(name="privateEndPointId")
|
6676
|
+
def private_end_point_id(self) -> Optional[pulumi.Input[str]]:
|
6677
|
+
"""
|
6678
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
|
6679
|
+
"""
|
6680
|
+
return pulumi.get(self, "private_end_point_id")
|
6681
|
+
|
6682
|
+
@private_end_point_id.setter
|
6683
|
+
def private_end_point_id(self, value: Optional[pulumi.Input[str]]):
|
6684
|
+
pulumi.set(self, "private_end_point_id", value)
|
6685
|
+
|
6686
|
+
|
6687
|
+
@pulumi.input_type
|
6688
|
+
class ManagedDatabaseDbmgmtFeatureConfigArgs:
|
6689
|
+
def __init__(__self__, *,
|
6690
|
+
connector_details: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigConnectorDetailArgs']]]] = None,
|
6691
|
+
database_connection_details: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailArgs']]]] = None,
|
6692
|
+
feature: Optional[pulumi.Input[str]] = None,
|
6693
|
+
feature_status: Optional[pulumi.Input[str]] = None,
|
6694
|
+
license_model: Optional[pulumi.Input[str]] = None):
|
6695
|
+
"""
|
6696
|
+
:param pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigConnectorDetailArgs']]] connector_details: The connector details required to connect to an Oracle cloud database.
|
6697
|
+
:param pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailArgs']]] database_connection_details: The connection details required to connect to the database.
|
6698
|
+
:param pulumi.Input[str] feature: The name of the Database Management feature.
|
6699
|
+
:param pulumi.Input[str] feature_status: The list of statuses for Database Management features.
|
6700
|
+
:param pulumi.Input[str] license_model: The Oracle license model that applies to the external database.
|
6701
|
+
"""
|
6702
|
+
if connector_details is not None:
|
6703
|
+
pulumi.set(__self__, "connector_details", connector_details)
|
6704
|
+
if database_connection_details is not None:
|
6705
|
+
pulumi.set(__self__, "database_connection_details", database_connection_details)
|
6706
|
+
if feature is not None:
|
6707
|
+
pulumi.set(__self__, "feature", feature)
|
6708
|
+
if feature_status is not None:
|
6709
|
+
pulumi.set(__self__, "feature_status", feature_status)
|
6710
|
+
if license_model is not None:
|
6711
|
+
pulumi.set(__self__, "license_model", license_model)
|
6712
|
+
|
6713
|
+
@property
|
6714
|
+
@pulumi.getter(name="connectorDetails")
|
6715
|
+
def connector_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigConnectorDetailArgs']]]]:
|
6716
|
+
"""
|
6717
|
+
The connector details required to connect to an Oracle cloud database.
|
6718
|
+
"""
|
6719
|
+
return pulumi.get(self, "connector_details")
|
6720
|
+
|
6721
|
+
@connector_details.setter
|
6722
|
+
def connector_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigConnectorDetailArgs']]]]):
|
6723
|
+
pulumi.set(self, "connector_details", value)
|
6724
|
+
|
6725
|
+
@property
|
6726
|
+
@pulumi.getter(name="databaseConnectionDetails")
|
6727
|
+
def database_connection_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailArgs']]]]:
|
6728
|
+
"""
|
6729
|
+
The connection details required to connect to the database.
|
6730
|
+
"""
|
6731
|
+
return pulumi.get(self, "database_connection_details")
|
6732
|
+
|
6733
|
+
@database_connection_details.setter
|
6734
|
+
def database_connection_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailArgs']]]]):
|
6735
|
+
pulumi.set(self, "database_connection_details", value)
|
6736
|
+
|
6737
|
+
@property
|
6738
|
+
@pulumi.getter
|
6739
|
+
def feature(self) -> Optional[pulumi.Input[str]]:
|
6138
6740
|
"""
|
6139
6741
|
The name of the Database Management feature.
|
6140
6742
|
"""
|
6141
6743
|
return pulumi.get(self, "feature")
|
6142
6744
|
|
6143
6745
|
@feature.setter
|
6144
|
-
def feature(self, value: pulumi.Input[str]):
|
6746
|
+
def feature(self, value: Optional[pulumi.Input[str]]):
|
6145
6747
|
pulumi.set(self, "feature", value)
|
6146
6748
|
|
6147
6749
|
@property
|
6148
|
-
@pulumi.getter(name="
|
6149
|
-
def
|
6750
|
+
@pulumi.getter(name="featureStatus")
|
6751
|
+
def feature_status(self) -> Optional[pulumi.Input[str]]:
|
6150
6752
|
"""
|
6151
|
-
The
|
6753
|
+
The list of statuses for Database Management features.
|
6152
6754
|
"""
|
6153
|
-
return pulumi.get(self, "
|
6755
|
+
return pulumi.get(self, "feature_status")
|
6154
6756
|
|
6155
|
-
@
|
6156
|
-
def
|
6157
|
-
pulumi.set(self, "
|
6757
|
+
@feature_status.setter
|
6758
|
+
def feature_status(self, value: Optional[pulumi.Input[str]]):
|
6759
|
+
pulumi.set(self, "feature_status", value)
|
6760
|
+
|
6761
|
+
@property
|
6762
|
+
@pulumi.getter(name="licenseModel")
|
6763
|
+
def license_model(self) -> Optional[pulumi.Input[str]]:
|
6764
|
+
"""
|
6765
|
+
The Oracle license model that applies to the external database.
|
6766
|
+
"""
|
6767
|
+
return pulumi.get(self, "license_model")
|
6768
|
+
|
6769
|
+
@license_model.setter
|
6770
|
+
def license_model(self, value: Optional[pulumi.Input[str]]):
|
6771
|
+
pulumi.set(self, "license_model", value)
|
6158
6772
|
|
6159
6773
|
|
6160
6774
|
@pulumi.input_type
|
6161
|
-
class
|
6775
|
+
class ManagedDatabaseDbmgmtFeatureConfigConnectorDetailArgs:
|
6162
6776
|
def __init__(__self__, *,
|
6163
6777
|
connector_type: Optional[pulumi.Input[str]] = None,
|
6164
6778
|
database_connector_id: Optional[pulumi.Input[str]] = None,
|
@@ -6234,6 +6848,237 @@ class ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDeta
|
|
6234
6848
|
pulumi.set(self, "private_end_point_id", value)
|
6235
6849
|
|
6236
6850
|
|
6851
|
+
@pulumi.input_type
|
6852
|
+
class ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailArgs:
|
6853
|
+
def __init__(__self__, *,
|
6854
|
+
connection_credentials: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredentialArgs']]]] = None,
|
6855
|
+
connection_strings: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionStringArgs']]]] = None):
|
6856
|
+
"""
|
6857
|
+
:param pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredentialArgs']]] connection_credentials: The credentials used to connect to the database. Currently only the `DETAILS` type is supported for creating MACS connector credentials.
|
6858
|
+
:param pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionStringArgs']]] connection_strings: The details of the Oracle Database connection string.
|
6859
|
+
"""
|
6860
|
+
if connection_credentials is not None:
|
6861
|
+
pulumi.set(__self__, "connection_credentials", connection_credentials)
|
6862
|
+
if connection_strings is not None:
|
6863
|
+
pulumi.set(__self__, "connection_strings", connection_strings)
|
6864
|
+
|
6865
|
+
@property
|
6866
|
+
@pulumi.getter(name="connectionCredentials")
|
6867
|
+
def connection_credentials(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredentialArgs']]]]:
|
6868
|
+
"""
|
6869
|
+
The credentials used to connect to the database. Currently only the `DETAILS` type is supported for creating MACS connector credentials.
|
6870
|
+
"""
|
6871
|
+
return pulumi.get(self, "connection_credentials")
|
6872
|
+
|
6873
|
+
@connection_credentials.setter
|
6874
|
+
def connection_credentials(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredentialArgs']]]]):
|
6875
|
+
pulumi.set(self, "connection_credentials", value)
|
6876
|
+
|
6877
|
+
@property
|
6878
|
+
@pulumi.getter(name="connectionStrings")
|
6879
|
+
def connection_strings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionStringArgs']]]]:
|
6880
|
+
"""
|
6881
|
+
The details of the Oracle Database connection string.
|
6882
|
+
"""
|
6883
|
+
return pulumi.get(self, "connection_strings")
|
6884
|
+
|
6885
|
+
@connection_strings.setter
|
6886
|
+
def connection_strings(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionStringArgs']]]]):
|
6887
|
+
pulumi.set(self, "connection_strings", value)
|
6888
|
+
|
6889
|
+
|
6890
|
+
@pulumi.input_type
|
6891
|
+
class ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredentialArgs:
|
6892
|
+
def __init__(__self__, *,
|
6893
|
+
credential_name: Optional[pulumi.Input[str]] = None,
|
6894
|
+
credential_type: Optional[pulumi.Input[str]] = None,
|
6895
|
+
named_credential_id: Optional[pulumi.Input[str]] = None,
|
6896
|
+
password_secret_id: Optional[pulumi.Input[str]] = None,
|
6897
|
+
role: Optional[pulumi.Input[str]] = None,
|
6898
|
+
ssl_secret_id: Optional[pulumi.Input[str]] = None,
|
6899
|
+
user_name: Optional[pulumi.Input[str]] = None):
|
6900
|
+
"""
|
6901
|
+
:param pulumi.Input[str] credential_name: The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
|
6902
|
+
:param pulumi.Input[str] credential_type: The type of credential used to connect to the database.
|
6903
|
+
:param pulumi.Input[str] named_credential_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Named Credential where the database password metadata is stored.
|
6904
|
+
:param pulumi.Input[str] password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
|
6905
|
+
:param pulumi.Input[str] role: The role of the user connecting to the database.
|
6906
|
+
:param pulumi.Input[str] ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
6907
|
+
:param pulumi.Input[str] user_name: The user name used to connect to the database.
|
6908
|
+
"""
|
6909
|
+
if credential_name is not None:
|
6910
|
+
pulumi.set(__self__, "credential_name", credential_name)
|
6911
|
+
if credential_type is not None:
|
6912
|
+
pulumi.set(__self__, "credential_type", credential_type)
|
6913
|
+
if named_credential_id is not None:
|
6914
|
+
pulumi.set(__self__, "named_credential_id", named_credential_id)
|
6915
|
+
if password_secret_id is not None:
|
6916
|
+
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
6917
|
+
if role is not None:
|
6918
|
+
pulumi.set(__self__, "role", role)
|
6919
|
+
if ssl_secret_id is not None:
|
6920
|
+
pulumi.set(__self__, "ssl_secret_id", ssl_secret_id)
|
6921
|
+
if user_name is not None:
|
6922
|
+
pulumi.set(__self__, "user_name", user_name)
|
6923
|
+
|
6924
|
+
@property
|
6925
|
+
@pulumi.getter(name="credentialName")
|
6926
|
+
def credential_name(self) -> Optional[pulumi.Input[str]]:
|
6927
|
+
"""
|
6928
|
+
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
|
6929
|
+
"""
|
6930
|
+
return pulumi.get(self, "credential_name")
|
6931
|
+
|
6932
|
+
@credential_name.setter
|
6933
|
+
def credential_name(self, value: Optional[pulumi.Input[str]]):
|
6934
|
+
pulumi.set(self, "credential_name", value)
|
6935
|
+
|
6936
|
+
@property
|
6937
|
+
@pulumi.getter(name="credentialType")
|
6938
|
+
def credential_type(self) -> Optional[pulumi.Input[str]]:
|
6939
|
+
"""
|
6940
|
+
The type of credential used to connect to the database.
|
6941
|
+
"""
|
6942
|
+
return pulumi.get(self, "credential_type")
|
6943
|
+
|
6944
|
+
@credential_type.setter
|
6945
|
+
def credential_type(self, value: Optional[pulumi.Input[str]]):
|
6946
|
+
pulumi.set(self, "credential_type", value)
|
6947
|
+
|
6948
|
+
@property
|
6949
|
+
@pulumi.getter(name="namedCredentialId")
|
6950
|
+
def named_credential_id(self) -> Optional[pulumi.Input[str]]:
|
6951
|
+
"""
|
6952
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Named Credential where the database password metadata is stored.
|
6953
|
+
"""
|
6954
|
+
return pulumi.get(self, "named_credential_id")
|
6955
|
+
|
6956
|
+
@named_credential_id.setter
|
6957
|
+
def named_credential_id(self, value: Optional[pulumi.Input[str]]):
|
6958
|
+
pulumi.set(self, "named_credential_id", value)
|
6959
|
+
|
6960
|
+
@property
|
6961
|
+
@pulumi.getter(name="passwordSecretId")
|
6962
|
+
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
6963
|
+
"""
|
6964
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
|
6965
|
+
"""
|
6966
|
+
return pulumi.get(self, "password_secret_id")
|
6967
|
+
|
6968
|
+
@password_secret_id.setter
|
6969
|
+
def password_secret_id(self, value: Optional[pulumi.Input[str]]):
|
6970
|
+
pulumi.set(self, "password_secret_id", value)
|
6971
|
+
|
6972
|
+
@property
|
6973
|
+
@pulumi.getter
|
6974
|
+
def role(self) -> Optional[pulumi.Input[str]]:
|
6975
|
+
"""
|
6976
|
+
The role of the user connecting to the database.
|
6977
|
+
"""
|
6978
|
+
return pulumi.get(self, "role")
|
6979
|
+
|
6980
|
+
@role.setter
|
6981
|
+
def role(self, value: Optional[pulumi.Input[str]]):
|
6982
|
+
pulumi.set(self, "role", value)
|
6983
|
+
|
6984
|
+
@property
|
6985
|
+
@pulumi.getter(name="sslSecretId")
|
6986
|
+
def ssl_secret_id(self) -> Optional[pulumi.Input[str]]:
|
6987
|
+
"""
|
6988
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
6989
|
+
"""
|
6990
|
+
return pulumi.get(self, "ssl_secret_id")
|
6991
|
+
|
6992
|
+
@ssl_secret_id.setter
|
6993
|
+
def ssl_secret_id(self, value: Optional[pulumi.Input[str]]):
|
6994
|
+
pulumi.set(self, "ssl_secret_id", value)
|
6995
|
+
|
6996
|
+
@property
|
6997
|
+
@pulumi.getter(name="userName")
|
6998
|
+
def user_name(self) -> Optional[pulumi.Input[str]]:
|
6999
|
+
"""
|
7000
|
+
The user name used to connect to the database.
|
7001
|
+
"""
|
7002
|
+
return pulumi.get(self, "user_name")
|
7003
|
+
|
7004
|
+
@user_name.setter
|
7005
|
+
def user_name(self, value: Optional[pulumi.Input[str]]):
|
7006
|
+
pulumi.set(self, "user_name", value)
|
7007
|
+
|
7008
|
+
|
7009
|
+
@pulumi.input_type
|
7010
|
+
class ManagedDatabaseDbmgmtFeatureConfigDatabaseConnectionDetailConnectionStringArgs:
|
7011
|
+
def __init__(__self__, *,
|
7012
|
+
connection_type: Optional[pulumi.Input[str]] = None,
|
7013
|
+
port: Optional[pulumi.Input[int]] = None,
|
7014
|
+
protocol: Optional[pulumi.Input[str]] = None,
|
7015
|
+
service: Optional[pulumi.Input[str]] = None):
|
7016
|
+
"""
|
7017
|
+
:param pulumi.Input[str] connection_type: The list of supported connection types:
|
7018
|
+
* BASIC: Basic connection details
|
7019
|
+
:param pulumi.Input[int] port: The port number used to connect to the database.
|
7020
|
+
:param pulumi.Input[str] protocol: The protocol used to connect to the database.
|
7021
|
+
:param pulumi.Input[str] service: The service name of the database.
|
7022
|
+
"""
|
7023
|
+
if connection_type is not None:
|
7024
|
+
pulumi.set(__self__, "connection_type", connection_type)
|
7025
|
+
if port is not None:
|
7026
|
+
pulumi.set(__self__, "port", port)
|
7027
|
+
if protocol is not None:
|
7028
|
+
pulumi.set(__self__, "protocol", protocol)
|
7029
|
+
if service is not None:
|
7030
|
+
pulumi.set(__self__, "service", service)
|
7031
|
+
|
7032
|
+
@property
|
7033
|
+
@pulumi.getter(name="connectionType")
|
7034
|
+
def connection_type(self) -> Optional[pulumi.Input[str]]:
|
7035
|
+
"""
|
7036
|
+
The list of supported connection types:
|
7037
|
+
* BASIC: Basic connection details
|
7038
|
+
"""
|
7039
|
+
return pulumi.get(self, "connection_type")
|
7040
|
+
|
7041
|
+
@connection_type.setter
|
7042
|
+
def connection_type(self, value: Optional[pulumi.Input[str]]):
|
7043
|
+
pulumi.set(self, "connection_type", value)
|
7044
|
+
|
7045
|
+
@property
|
7046
|
+
@pulumi.getter
|
7047
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
7048
|
+
"""
|
7049
|
+
The port number used to connect to the database.
|
7050
|
+
"""
|
7051
|
+
return pulumi.get(self, "port")
|
7052
|
+
|
7053
|
+
@port.setter
|
7054
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
7055
|
+
pulumi.set(self, "port", value)
|
7056
|
+
|
7057
|
+
@property
|
7058
|
+
@pulumi.getter
|
7059
|
+
def protocol(self) -> Optional[pulumi.Input[str]]:
|
7060
|
+
"""
|
7061
|
+
The protocol used to connect to the database.
|
7062
|
+
"""
|
7063
|
+
return pulumi.get(self, "protocol")
|
7064
|
+
|
7065
|
+
@protocol.setter
|
7066
|
+
def protocol(self, value: Optional[pulumi.Input[str]]):
|
7067
|
+
pulumi.set(self, "protocol", value)
|
7068
|
+
|
7069
|
+
@property
|
7070
|
+
@pulumi.getter
|
7071
|
+
def service(self) -> Optional[pulumi.Input[str]]:
|
7072
|
+
"""
|
7073
|
+
The service name of the database.
|
7074
|
+
"""
|
7075
|
+
return pulumi.get(self, "service")
|
7076
|
+
|
7077
|
+
@service.setter
|
7078
|
+
def service(self, value: Optional[pulumi.Input[str]]):
|
7079
|
+
pulumi.set(self, "service", value)
|
7080
|
+
|
7081
|
+
|
6237
7082
|
@pulumi.input_type
|
6238
7083
|
class ManagedDatabaseGroupManagedDatabaseArgs:
|
6239
7084
|
def __init__(__self__, *,
|
@@ -7059,6 +7904,7 @@ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConne
|
|
7059
7904
|
* PE: Private endpoint
|
7060
7905
|
* MACS: Management agent
|
7061
7906
|
* EXTERNAL: External database connector
|
7907
|
+
* DIRECT: Direct connection
|
7062
7908
|
:param pulumi.Input[str] database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
|
7063
7909
|
:param pulumi.Input[str] management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
|
7064
7910
|
:param pulumi.Input[str] private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
|
@@ -7080,6 +7926,7 @@ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConne
|
|
7080
7926
|
* PE: Private endpoint
|
7081
7927
|
* MACS: Management agent
|
7082
7928
|
* EXTERNAL: External database connector
|
7929
|
+
* DIRECT: Direct connection
|
7083
7930
|
"""
|
7084
7931
|
return pulumi.get(self, "connector_type")
|
7085
7932
|
|
@@ -7168,6 +8015,7 @@ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatab
|
|
7168
8015
|
def __init__(__self__, *,
|
7169
8016
|
credential_name: Optional[pulumi.Input[str]] = None,
|
7170
8017
|
credential_type: Optional[pulumi.Input[str]] = None,
|
8018
|
+
named_credential_id: Optional[pulumi.Input[str]] = None,
|
7171
8019
|
password_secret_id: Optional[pulumi.Input[str]] = None,
|
7172
8020
|
role: Optional[pulumi.Input[str]] = None,
|
7173
8021
|
ssl_secret_id: Optional[pulumi.Input[str]] = None,
|
@@ -7177,6 +8025,7 @@ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatab
|
|
7177
8025
|
|
7178
8026
|
For example: inventorydb.abc112233445566778899
|
7179
8027
|
:param pulumi.Input[str] credential_type: The type of credential used to connect to the database.
|
8028
|
+
:param pulumi.Input[str] named_credential_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Named Credential where the database password metadata is stored.
|
7180
8029
|
:param pulumi.Input[str] password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
|
7181
8030
|
:param pulumi.Input[str] role: The role of the user connecting to the database.
|
7182
8031
|
:param pulumi.Input[str] ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
|
@@ -7186,6 +8035,8 @@ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatab
|
|
7186
8035
|
pulumi.set(__self__, "credential_name", credential_name)
|
7187
8036
|
if credential_type is not None:
|
7188
8037
|
pulumi.set(__self__, "credential_type", credential_type)
|
8038
|
+
if named_credential_id is not None:
|
8039
|
+
pulumi.set(__self__, "named_credential_id", named_credential_id)
|
7189
8040
|
if password_secret_id is not None:
|
7190
8041
|
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
7191
8042
|
if role is not None:
|
@@ -7221,6 +8072,18 @@ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatab
|
|
7221
8072
|
def credential_type(self, value: Optional[pulumi.Input[str]]):
|
7222
8073
|
pulumi.set(self, "credential_type", value)
|
7223
8074
|
|
8075
|
+
@property
|
8076
|
+
@pulumi.getter(name="namedCredentialId")
|
8077
|
+
def named_credential_id(self) -> Optional[pulumi.Input[str]]:
|
8078
|
+
"""
|
8079
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Named Credential where the database password metadata is stored.
|
8080
|
+
"""
|
8081
|
+
return pulumi.get(self, "named_credential_id")
|
8082
|
+
|
8083
|
+
@named_credential_id.setter
|
8084
|
+
def named_credential_id(self, value: Optional[pulumi.Input[str]]):
|
8085
|
+
pulumi.set(self, "named_credential_id", value)
|
8086
|
+
|
7224
8087
|
@property
|
7225
8088
|
@pulumi.getter(name="passwordSecretId")
|
7226
8089
|
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|