pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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 +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
pulumi_oci/opsi/_inputs.py
CHANGED
@@ -27,6 +27,8 @@ __all__ = [
|
|
27
27
|
'ExadataInsightMemberVmClusterDetailArgsDict',
|
28
28
|
'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs',
|
29
29
|
'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgsDict',
|
30
|
+
'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgs',
|
31
|
+
'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgsDict',
|
30
32
|
'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgs',
|
31
33
|
'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgsDict',
|
32
34
|
'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHostArgs',
|
@@ -73,13 +75,13 @@ MYPY = False
|
|
73
75
|
|
74
76
|
if not MYPY:
|
75
77
|
class DatabaseInsightConnectionCredentialDetailsArgsDict(TypedDict):
|
76
|
-
|
78
|
+
credential_type: pulumi.Input[str]
|
77
79
|
"""
|
78
|
-
Credential
|
80
|
+
Credential type.
|
79
81
|
"""
|
80
|
-
|
82
|
+
credential_source_name: NotRequired[pulumi.Input[str]]
|
81
83
|
"""
|
82
|
-
Credential
|
84
|
+
Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
|
83
85
|
"""
|
84
86
|
password_secret_id: NotRequired[pulumi.Input[str]]
|
85
87
|
"""
|
@@ -93,42 +95,45 @@ if not MYPY:
|
|
93
95
|
"""
|
94
96
|
database user name.
|
95
97
|
"""
|
96
|
-
wallet_secret_id: NotRequired[pulumi.Input[str]]
|
97
|
-
"""
|
98
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
|
99
|
-
"""
|
100
98
|
elif False:
|
101
99
|
DatabaseInsightConnectionCredentialDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
102
100
|
|
103
101
|
@pulumi.input_type
|
104
102
|
class DatabaseInsightConnectionCredentialDetailsArgs:
|
105
103
|
def __init__(__self__, *,
|
104
|
+
credential_type: pulumi.Input[str],
|
106
105
|
credential_source_name: Optional[pulumi.Input[str]] = None,
|
107
|
-
credential_type: Optional[pulumi.Input[str]] = None,
|
108
106
|
password_secret_id: Optional[pulumi.Input[str]] = None,
|
109
107
|
role: Optional[pulumi.Input[str]] = None,
|
110
|
-
user_name: Optional[pulumi.Input[str]] = None
|
111
|
-
wallet_secret_id: Optional[pulumi.Input[str]] = None):
|
108
|
+
user_name: Optional[pulumi.Input[str]] = None):
|
112
109
|
"""
|
113
|
-
:param pulumi.Input[str] credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
|
114
110
|
:param pulumi.Input[str] credential_type: Credential type.
|
111
|
+
:param pulumi.Input[str] credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
|
115
112
|
:param pulumi.Input[str] password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
|
116
113
|
:param pulumi.Input[str] role: database user role.
|
117
114
|
:param pulumi.Input[str] user_name: database user name.
|
118
|
-
:param pulumi.Input[str] wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
|
119
115
|
"""
|
116
|
+
pulumi.set(__self__, "credential_type", credential_type)
|
120
117
|
if credential_source_name is not None:
|
121
118
|
pulumi.set(__self__, "credential_source_name", credential_source_name)
|
122
|
-
if credential_type is not None:
|
123
|
-
pulumi.set(__self__, "credential_type", credential_type)
|
124
119
|
if password_secret_id is not None:
|
125
120
|
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
126
121
|
if role is not None:
|
127
122
|
pulumi.set(__self__, "role", role)
|
128
123
|
if user_name is not None:
|
129
124
|
pulumi.set(__self__, "user_name", user_name)
|
130
|
-
|
131
|
-
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter(name="credentialType")
|
128
|
+
def credential_type(self) -> pulumi.Input[str]:
|
129
|
+
"""
|
130
|
+
Credential type.
|
131
|
+
"""
|
132
|
+
return pulumi.get(self, "credential_type")
|
133
|
+
|
134
|
+
@credential_type.setter
|
135
|
+
def credential_type(self, value: pulumi.Input[str]):
|
136
|
+
pulumi.set(self, "credential_type", value)
|
132
137
|
|
133
138
|
@property
|
134
139
|
@pulumi.getter(name="credentialSourceName")
|
@@ -142,18 +147,6 @@ class DatabaseInsightConnectionCredentialDetailsArgs:
|
|
142
147
|
def credential_source_name(self, value: Optional[pulumi.Input[str]]):
|
143
148
|
pulumi.set(self, "credential_source_name", value)
|
144
149
|
|
145
|
-
@property
|
146
|
-
@pulumi.getter(name="credentialType")
|
147
|
-
def credential_type(self) -> Optional[pulumi.Input[str]]:
|
148
|
-
"""
|
149
|
-
Credential type.
|
150
|
-
"""
|
151
|
-
return pulumi.get(self, "credential_type")
|
152
|
-
|
153
|
-
@credential_type.setter
|
154
|
-
def credential_type(self, value: Optional[pulumi.Input[str]]):
|
155
|
-
pulumi.set(self, "credential_type", value)
|
156
|
-
|
157
150
|
@property
|
158
151
|
@pulumi.getter(name="passwordSecretId")
|
159
152
|
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -190,18 +183,6 @@ class DatabaseInsightConnectionCredentialDetailsArgs:
|
|
190
183
|
def user_name(self, value: Optional[pulumi.Input[str]]):
|
191
184
|
pulumi.set(self, "user_name", value)
|
192
185
|
|
193
|
-
@property
|
194
|
-
@pulumi.getter(name="walletSecretId")
|
195
|
-
def wallet_secret_id(self) -> Optional[pulumi.Input[str]]:
|
196
|
-
"""
|
197
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
|
198
|
-
"""
|
199
|
-
return pulumi.get(self, "wallet_secret_id")
|
200
|
-
|
201
|
-
@wallet_secret_id.setter
|
202
|
-
def wallet_secret_id(self, value: Optional[pulumi.Input[str]]):
|
203
|
-
pulumi.set(self, "wallet_secret_id", value)
|
204
|
-
|
205
186
|
|
206
187
|
if not MYPY:
|
207
188
|
class DatabaseInsightConnectionDetailsArgsDict(TypedDict):
|
@@ -516,6 +497,10 @@ if not MYPY:
|
|
516
497
|
"""
|
517
498
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OPSI private endpoint
|
518
499
|
"""
|
500
|
+
vm_cluster_type: NotRequired[pulumi.Input[str]]
|
501
|
+
"""
|
502
|
+
Exadata VMCluster type
|
503
|
+
"""
|
519
504
|
vmcluster_id: NotRequired[pulumi.Input[str]]
|
520
505
|
"""
|
521
506
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster.
|
@@ -530,12 +515,14 @@ class ExadataInsightMemberVmClusterDetailArgs:
|
|
530
515
|
dbm_private_endpoint_id: Optional[pulumi.Input[str]] = None,
|
531
516
|
member_database_details: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs']]]] = None,
|
532
517
|
opsi_private_endpoint_id: Optional[pulumi.Input[str]] = None,
|
518
|
+
vm_cluster_type: Optional[pulumi.Input[str]] = None,
|
533
519
|
vmcluster_id: Optional[pulumi.Input[str]] = None):
|
534
520
|
"""
|
535
521
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
536
522
|
:param pulumi.Input[str] dbm_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint
|
537
523
|
:param pulumi.Input[Sequence[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs']]] member_database_details: The databases that belong to the VM Cluster
|
538
524
|
:param pulumi.Input[str] opsi_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OPSI private endpoint
|
525
|
+
:param pulumi.Input[str] vm_cluster_type: Exadata VMCluster type
|
539
526
|
:param pulumi.Input[str] vmcluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster.
|
540
527
|
"""
|
541
528
|
if compartment_id is not None:
|
@@ -546,6 +533,8 @@ class ExadataInsightMemberVmClusterDetailArgs:
|
|
546
533
|
pulumi.set(__self__, "member_database_details", member_database_details)
|
547
534
|
if opsi_private_endpoint_id is not None:
|
548
535
|
pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
|
536
|
+
if vm_cluster_type is not None:
|
537
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
549
538
|
if vmcluster_id is not None:
|
550
539
|
pulumi.set(__self__, "vmcluster_id", vmcluster_id)
|
551
540
|
|
@@ -597,6 +586,18 @@ class ExadataInsightMemberVmClusterDetailArgs:
|
|
597
586
|
def opsi_private_endpoint_id(self, value: Optional[pulumi.Input[str]]):
|
598
587
|
pulumi.set(self, "opsi_private_endpoint_id", value)
|
599
588
|
|
589
|
+
@property
|
590
|
+
@pulumi.getter(name="vmClusterType")
|
591
|
+
def vm_cluster_type(self) -> Optional[pulumi.Input[str]]:
|
592
|
+
"""
|
593
|
+
Exadata VMCluster type
|
594
|
+
"""
|
595
|
+
return pulumi.get(self, "vm_cluster_type")
|
596
|
+
|
597
|
+
@vm_cluster_type.setter
|
598
|
+
def vm_cluster_type(self, value: Optional[pulumi.Input[str]]):
|
599
|
+
pulumi.set(self, "vm_cluster_type", value)
|
600
|
+
|
600
601
|
@property
|
601
602
|
@pulumi.getter(name="vmclusterId")
|
602
603
|
def vmcluster_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -616,9 +617,13 @@ if not MYPY:
|
|
616
617
|
"""
|
617
618
|
(Updatable) Compartment Identifier of database
|
618
619
|
"""
|
620
|
+
connection_credential_details: NotRequired[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgsDict']]
|
621
|
+
"""
|
622
|
+
User credential details to connect to the database.
|
623
|
+
"""
|
619
624
|
connection_details: NotRequired[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgsDict']]
|
620
625
|
"""
|
621
|
-
Connection details
|
626
|
+
Connection details to connect to the database. HostName, protocol, and port should be specified.
|
622
627
|
"""
|
623
628
|
credential_details: NotRequired[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgsDict']]
|
624
629
|
"""
|
@@ -633,33 +638,31 @@ if not MYPY:
|
|
633
638
|
Oracle Cloud Infrastructure database resource type
|
634
639
|
"""
|
635
640
|
dbm_private_endpoint_id: NotRequired[pulumi.Input[str]]
|
636
|
-
"""
|
637
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint
|
638
|
-
"""
|
639
641
|
defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
640
642
|
"""
|
641
|
-
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
643
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
642
644
|
"""
|
643
645
|
deployment_type: NotRequired[pulumi.Input[str]]
|
644
646
|
"""
|
645
|
-
Database Deployment Type
|
647
|
+
Database Deployment Type (EXACS will be supported in the future)
|
646
648
|
"""
|
647
649
|
entity_source: NotRequired[pulumi.Input[str]]
|
648
650
|
"""
|
649
|
-
Source of the
|
651
|
+
(Updatable) Source of the Exadata system.
|
650
652
|
"""
|
651
653
|
freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
652
654
|
"""
|
653
|
-
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
655
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
656
|
+
"""
|
657
|
+
management_agent_id: NotRequired[pulumi.Input[str]]
|
658
|
+
"""
|
659
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent
|
654
660
|
"""
|
655
661
|
opsi_private_endpoint_id: NotRequired[pulumi.Input[str]]
|
656
662
|
"""
|
657
663
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OPSI private endpoint
|
658
664
|
"""
|
659
665
|
service_name: NotRequired[pulumi.Input[str]]
|
660
|
-
"""
|
661
|
-
Database service name used for connection requests.
|
662
|
-
"""
|
663
666
|
system_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
664
667
|
"""
|
665
668
|
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
@@ -671,6 +674,7 @@ elif False:
|
|
671
674
|
class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
672
675
|
def __init__(__self__, *,
|
673
676
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
677
|
+
connection_credential_details: Optional[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgs']] = None,
|
674
678
|
connection_details: Optional[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgs']] = None,
|
675
679
|
credential_details: Optional[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgs']] = None,
|
676
680
|
database_id: Optional[pulumi.Input[str]] = None,
|
@@ -680,26 +684,29 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
680
684
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
681
685
|
entity_source: Optional[pulumi.Input[str]] = None,
|
682
686
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
687
|
+
management_agent_id: Optional[pulumi.Input[str]] = None,
|
683
688
|
opsi_private_endpoint_id: Optional[pulumi.Input[str]] = None,
|
684
689
|
service_name: Optional[pulumi.Input[str]] = None,
|
685
690
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
686
691
|
"""
|
687
692
|
:param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier of database
|
688
|
-
:param pulumi.Input['
|
693
|
+
:param pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgs'] connection_credential_details: User credential details to connect to the database.
|
694
|
+
:param pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgs'] connection_details: Connection details to connect to the database. HostName, protocol, and port should be specified.
|
689
695
|
:param pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgs'] credential_details: User credential details to connect to the database.
|
690
696
|
:param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
691
697
|
:param pulumi.Input[str] database_resource_type: Oracle Cloud Infrastructure database resource type
|
692
|
-
:param pulumi.Input[str]
|
693
|
-
:param pulumi.Input[
|
694
|
-
:param pulumi.Input[str]
|
695
|
-
:param pulumi.Input[str]
|
696
|
-
:param pulumi.Input[
|
698
|
+
: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"}`
|
699
|
+
:param pulumi.Input[str] deployment_type: Database Deployment Type (EXACS will be supported in the future)
|
700
|
+
:param pulumi.Input[str] entity_source: (Updatable) Source of the Exadata system.
|
701
|
+
: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"}`
|
702
|
+
:param pulumi.Input[str] management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent
|
697
703
|
:param pulumi.Input[str] opsi_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OPSI private endpoint
|
698
|
-
:param pulumi.Input[str] service_name: Database service name used for connection requests.
|
699
704
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
700
705
|
"""
|
701
706
|
if compartment_id is not None:
|
702
707
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
708
|
+
if connection_credential_details is not None:
|
709
|
+
pulumi.set(__self__, "connection_credential_details", connection_credential_details)
|
703
710
|
if connection_details is not None:
|
704
711
|
pulumi.set(__self__, "connection_details", connection_details)
|
705
712
|
if credential_details is not None:
|
@@ -718,6 +725,8 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
718
725
|
pulumi.set(__self__, "entity_source", entity_source)
|
719
726
|
if freeform_tags is not None:
|
720
727
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
728
|
+
if management_agent_id is not None:
|
729
|
+
pulumi.set(__self__, "management_agent_id", management_agent_id)
|
721
730
|
if opsi_private_endpoint_id is not None:
|
722
731
|
pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
|
723
732
|
if service_name is not None:
|
@@ -737,11 +746,23 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
737
746
|
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
738
747
|
pulumi.set(self, "compartment_id", value)
|
739
748
|
|
749
|
+
@property
|
750
|
+
@pulumi.getter(name="connectionCredentialDetails")
|
751
|
+
def connection_credential_details(self) -> Optional[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgs']]:
|
752
|
+
"""
|
753
|
+
User credential details to connect to the database.
|
754
|
+
"""
|
755
|
+
return pulumi.get(self, "connection_credential_details")
|
756
|
+
|
757
|
+
@connection_credential_details.setter
|
758
|
+
def connection_credential_details(self, value: Optional[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgs']]):
|
759
|
+
pulumi.set(self, "connection_credential_details", value)
|
760
|
+
|
740
761
|
@property
|
741
762
|
@pulumi.getter(name="connectionDetails")
|
742
763
|
def connection_details(self) -> Optional[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgs']]:
|
743
764
|
"""
|
744
|
-
Connection details
|
765
|
+
Connection details to connect to the database. HostName, protocol, and port should be specified.
|
745
766
|
"""
|
746
767
|
return pulumi.get(self, "connection_details")
|
747
768
|
|
@@ -788,9 +809,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
788
809
|
@property
|
789
810
|
@pulumi.getter(name="dbmPrivateEndpointId")
|
790
811
|
def dbm_private_endpoint_id(self) -> Optional[pulumi.Input[str]]:
|
791
|
-
"""
|
792
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint
|
793
|
-
"""
|
794
812
|
return pulumi.get(self, "dbm_private_endpoint_id")
|
795
813
|
|
796
814
|
@dbm_private_endpoint_id.setter
|
@@ -801,7 +819,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
801
819
|
@pulumi.getter(name="definedTags")
|
802
820
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
803
821
|
"""
|
804
|
-
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
822
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
805
823
|
"""
|
806
824
|
return pulumi.get(self, "defined_tags")
|
807
825
|
|
@@ -813,7 +831,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
813
831
|
@pulumi.getter(name="deploymentType")
|
814
832
|
def deployment_type(self) -> Optional[pulumi.Input[str]]:
|
815
833
|
"""
|
816
|
-
Database Deployment Type
|
834
|
+
Database Deployment Type (EXACS will be supported in the future)
|
817
835
|
"""
|
818
836
|
return pulumi.get(self, "deployment_type")
|
819
837
|
|
@@ -825,7 +843,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
825
843
|
@pulumi.getter(name="entitySource")
|
826
844
|
def entity_source(self) -> Optional[pulumi.Input[str]]:
|
827
845
|
"""
|
828
|
-
Source of the
|
846
|
+
(Updatable) Source of the Exadata system.
|
829
847
|
"""
|
830
848
|
return pulumi.get(self, "entity_source")
|
831
849
|
|
@@ -837,7 +855,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
837
855
|
@pulumi.getter(name="freeformTags")
|
838
856
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
839
857
|
"""
|
840
|
-
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
858
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
841
859
|
"""
|
842
860
|
return pulumi.get(self, "freeform_tags")
|
843
861
|
|
@@ -845,6 +863,18 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
845
863
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
846
864
|
pulumi.set(self, "freeform_tags", value)
|
847
865
|
|
866
|
+
@property
|
867
|
+
@pulumi.getter(name="managementAgentId")
|
868
|
+
def management_agent_id(self) -> Optional[pulumi.Input[str]]:
|
869
|
+
"""
|
870
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent
|
871
|
+
"""
|
872
|
+
return pulumi.get(self, "management_agent_id")
|
873
|
+
|
874
|
+
@management_agent_id.setter
|
875
|
+
def management_agent_id(self, value: Optional[pulumi.Input[str]]):
|
876
|
+
pulumi.set(self, "management_agent_id", value)
|
877
|
+
|
848
878
|
@property
|
849
879
|
@pulumi.getter(name="opsiPrivateEndpointId")
|
850
880
|
def opsi_private_endpoint_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -860,9 +890,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
860
890
|
@property
|
861
891
|
@pulumi.getter(name="serviceName")
|
862
892
|
def service_name(self) -> Optional[pulumi.Input[str]]:
|
863
|
-
"""
|
864
|
-
Database service name used for connection requests.
|
865
|
-
"""
|
866
893
|
return pulumi.get(self, "service_name")
|
867
894
|
|
868
895
|
@service_name.setter
|
@@ -882,12 +909,151 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
|
|
882
909
|
pulumi.set(self, "system_tags", value)
|
883
910
|
|
884
911
|
|
912
|
+
if not MYPY:
|
913
|
+
class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgsDict(TypedDict):
|
914
|
+
credential_type: pulumi.Input[str]
|
915
|
+
"""
|
916
|
+
Credential type.
|
917
|
+
"""
|
918
|
+
credential_source_name: NotRequired[pulumi.Input[str]]
|
919
|
+
"""
|
920
|
+
Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
|
921
|
+
"""
|
922
|
+
password_secret_id: NotRequired[pulumi.Input[str]]
|
923
|
+
"""
|
924
|
+
The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
|
925
|
+
"""
|
926
|
+
role: NotRequired[pulumi.Input[str]]
|
927
|
+
"""
|
928
|
+
database user role.
|
929
|
+
"""
|
930
|
+
user_name: NotRequired[pulumi.Input[str]]
|
931
|
+
"""
|
932
|
+
database user name.
|
933
|
+
"""
|
934
|
+
wallet_secret_id: NotRequired[pulumi.Input[str]]
|
935
|
+
"""
|
936
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
|
937
|
+
"""
|
938
|
+
elif False:
|
939
|
+
ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
940
|
+
|
941
|
+
@pulumi.input_type
|
942
|
+
class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgs:
|
943
|
+
def __init__(__self__, *,
|
944
|
+
credential_type: pulumi.Input[str],
|
945
|
+
credential_source_name: Optional[pulumi.Input[str]] = None,
|
946
|
+
password_secret_id: Optional[pulumi.Input[str]] = None,
|
947
|
+
role: Optional[pulumi.Input[str]] = None,
|
948
|
+
user_name: Optional[pulumi.Input[str]] = None,
|
949
|
+
wallet_secret_id: Optional[pulumi.Input[str]] = None):
|
950
|
+
"""
|
951
|
+
:param pulumi.Input[str] credential_type: Credential type.
|
952
|
+
:param pulumi.Input[str] credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
|
953
|
+
:param pulumi.Input[str] password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
|
954
|
+
:param pulumi.Input[str] role: database user role.
|
955
|
+
:param pulumi.Input[str] user_name: database user name.
|
956
|
+
:param pulumi.Input[str] wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
|
957
|
+
"""
|
958
|
+
pulumi.set(__self__, "credential_type", credential_type)
|
959
|
+
if credential_source_name is not None:
|
960
|
+
pulumi.set(__self__, "credential_source_name", credential_source_name)
|
961
|
+
if password_secret_id is not None:
|
962
|
+
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
963
|
+
if role is not None:
|
964
|
+
pulumi.set(__self__, "role", role)
|
965
|
+
if user_name is not None:
|
966
|
+
pulumi.set(__self__, "user_name", user_name)
|
967
|
+
if wallet_secret_id is not None:
|
968
|
+
pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
|
969
|
+
|
970
|
+
@property
|
971
|
+
@pulumi.getter(name="credentialType")
|
972
|
+
def credential_type(self) -> pulumi.Input[str]:
|
973
|
+
"""
|
974
|
+
Credential type.
|
975
|
+
"""
|
976
|
+
return pulumi.get(self, "credential_type")
|
977
|
+
|
978
|
+
@credential_type.setter
|
979
|
+
def credential_type(self, value: pulumi.Input[str]):
|
980
|
+
pulumi.set(self, "credential_type", value)
|
981
|
+
|
982
|
+
@property
|
983
|
+
@pulumi.getter(name="credentialSourceName")
|
984
|
+
def credential_source_name(self) -> Optional[pulumi.Input[str]]:
|
985
|
+
"""
|
986
|
+
Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
|
987
|
+
"""
|
988
|
+
return pulumi.get(self, "credential_source_name")
|
989
|
+
|
990
|
+
@credential_source_name.setter
|
991
|
+
def credential_source_name(self, value: Optional[pulumi.Input[str]]):
|
992
|
+
pulumi.set(self, "credential_source_name", value)
|
993
|
+
|
994
|
+
@property
|
995
|
+
@pulumi.getter(name="passwordSecretId")
|
996
|
+
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
997
|
+
"""
|
998
|
+
The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
|
999
|
+
"""
|
1000
|
+
return pulumi.get(self, "password_secret_id")
|
1001
|
+
|
1002
|
+
@password_secret_id.setter
|
1003
|
+
def password_secret_id(self, value: Optional[pulumi.Input[str]]):
|
1004
|
+
pulumi.set(self, "password_secret_id", value)
|
1005
|
+
|
1006
|
+
@property
|
1007
|
+
@pulumi.getter
|
1008
|
+
def role(self) -> Optional[pulumi.Input[str]]:
|
1009
|
+
"""
|
1010
|
+
database user role.
|
1011
|
+
"""
|
1012
|
+
return pulumi.get(self, "role")
|
1013
|
+
|
1014
|
+
@role.setter
|
1015
|
+
def role(self, value: Optional[pulumi.Input[str]]):
|
1016
|
+
pulumi.set(self, "role", value)
|
1017
|
+
|
1018
|
+
@property
|
1019
|
+
@pulumi.getter(name="userName")
|
1020
|
+
def user_name(self) -> Optional[pulumi.Input[str]]:
|
1021
|
+
"""
|
1022
|
+
database user name.
|
1023
|
+
"""
|
1024
|
+
return pulumi.get(self, "user_name")
|
1025
|
+
|
1026
|
+
@user_name.setter
|
1027
|
+
def user_name(self, value: Optional[pulumi.Input[str]]):
|
1028
|
+
pulumi.set(self, "user_name", value)
|
1029
|
+
|
1030
|
+
@property
|
1031
|
+
@pulumi.getter(name="walletSecretId")
|
1032
|
+
def wallet_secret_id(self) -> Optional[pulumi.Input[str]]:
|
1033
|
+
"""
|
1034
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
|
1035
|
+
"""
|
1036
|
+
return pulumi.get(self, "wallet_secret_id")
|
1037
|
+
|
1038
|
+
@wallet_secret_id.setter
|
1039
|
+
def wallet_secret_id(self, value: Optional[pulumi.Input[str]]):
|
1040
|
+
pulumi.set(self, "wallet_secret_id", value)
|
1041
|
+
|
1042
|
+
|
885
1043
|
if not MYPY:
|
886
1044
|
class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgsDict(TypedDict):
|
1045
|
+
host_name: NotRequired[pulumi.Input[str]]
|
1046
|
+
"""
|
1047
|
+
Name of the listener host that will be used to create the connect string to the database.
|
1048
|
+
"""
|
887
1049
|
hosts: NotRequired[pulumi.Input[Sequence[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHostArgsDict']]]]
|
888
1050
|
"""
|
889
1051
|
List of hosts and port for private endpoint accessed database resource.
|
890
1052
|
"""
|
1053
|
+
port: NotRequired[pulumi.Input[int]]
|
1054
|
+
"""
|
1055
|
+
Listener port number used for connection requests.
|
1056
|
+
"""
|
891
1057
|
protocol: NotRequired[pulumi.Input[str]]
|
892
1058
|
"""
|
893
1059
|
Protocol used for connection requests for private endpoint accssed database resource.
|
@@ -902,21 +1068,41 @@ elif False:
|
|
902
1068
|
@pulumi.input_type
|
903
1069
|
class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgs:
|
904
1070
|
def __init__(__self__, *,
|
1071
|
+
host_name: Optional[pulumi.Input[str]] = None,
|
905
1072
|
hosts: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHostArgs']]]] = None,
|
1073
|
+
port: Optional[pulumi.Input[int]] = None,
|
906
1074
|
protocol: Optional[pulumi.Input[str]] = None,
|
907
1075
|
service_name: Optional[pulumi.Input[str]] = None):
|
908
1076
|
"""
|
1077
|
+
:param pulumi.Input[str] host_name: Name of the listener host that will be used to create the connect string to the database.
|
909
1078
|
:param pulumi.Input[Sequence[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHostArgs']]] hosts: List of hosts and port for private endpoint accessed database resource.
|
1079
|
+
:param pulumi.Input[int] port: Listener port number used for connection requests.
|
910
1080
|
:param pulumi.Input[str] protocol: Protocol used for connection requests for private endpoint accssed database resource.
|
911
1081
|
:param pulumi.Input[str] service_name: Database service name used for connection requests.
|
912
1082
|
"""
|
1083
|
+
if host_name is not None:
|
1084
|
+
pulumi.set(__self__, "host_name", host_name)
|
913
1085
|
if hosts is not None:
|
914
1086
|
pulumi.set(__self__, "hosts", hosts)
|
1087
|
+
if port is not None:
|
1088
|
+
pulumi.set(__self__, "port", port)
|
915
1089
|
if protocol is not None:
|
916
1090
|
pulumi.set(__self__, "protocol", protocol)
|
917
1091
|
if service_name is not None:
|
918
1092
|
pulumi.set(__self__, "service_name", service_name)
|
919
1093
|
|
1094
|
+
@property
|
1095
|
+
@pulumi.getter(name="hostName")
|
1096
|
+
def host_name(self) -> Optional[pulumi.Input[str]]:
|
1097
|
+
"""
|
1098
|
+
Name of the listener host that will be used to create the connect string to the database.
|
1099
|
+
"""
|
1100
|
+
return pulumi.get(self, "host_name")
|
1101
|
+
|
1102
|
+
@host_name.setter
|
1103
|
+
def host_name(self, value: Optional[pulumi.Input[str]]):
|
1104
|
+
pulumi.set(self, "host_name", value)
|
1105
|
+
|
920
1106
|
@property
|
921
1107
|
@pulumi.getter
|
922
1108
|
def hosts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHostArgs']]]]:
|
@@ -929,6 +1115,18 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsAr
|
|
929
1115
|
def hosts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHostArgs']]]]):
|
930
1116
|
pulumi.set(self, "hosts", value)
|
931
1117
|
|
1118
|
+
@property
|
1119
|
+
@pulumi.getter
|
1120
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
1121
|
+
"""
|
1122
|
+
Listener port number used for connection requests.
|
1123
|
+
"""
|
1124
|
+
return pulumi.get(self, "port")
|
1125
|
+
|
1126
|
+
@port.setter
|
1127
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
1128
|
+
pulumi.set(self, "port", value)
|
1129
|
+
|
932
1130
|
@property
|
933
1131
|
@pulumi.getter
|
934
1132
|
def protocol(self) -> Optional[pulumi.Input[str]]:
|
@@ -1009,29 +1207,11 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHo
|
|
1009
1207
|
if not MYPY:
|
1010
1208
|
class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgsDict(TypedDict):
|
1011
1209
|
credential_type: pulumi.Input[str]
|
1012
|
-
"""
|
1013
|
-
Credential type.
|
1014
|
-
"""
|
1015
1210
|
credential_source_name: NotRequired[pulumi.Input[str]]
|
1016
|
-
"""
|
1017
|
-
Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
|
1018
|
-
"""
|
1019
1211
|
password_secret_id: NotRequired[pulumi.Input[str]]
|
1020
|
-
"""
|
1021
|
-
The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
|
1022
|
-
"""
|
1023
1212
|
role: NotRequired[pulumi.Input[str]]
|
1024
|
-
"""
|
1025
|
-
database user role.
|
1026
|
-
"""
|
1027
1213
|
user_name: NotRequired[pulumi.Input[str]]
|
1028
|
-
"""
|
1029
|
-
database user name.
|
1030
|
-
"""
|
1031
1214
|
wallet_secret_id: NotRequired[pulumi.Input[str]]
|
1032
|
-
"""
|
1033
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
|
1034
|
-
"""
|
1035
1215
|
elif False:
|
1036
1216
|
ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
1037
1217
|
|
@@ -1044,14 +1224,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsAr
|
|
1044
1224
|
role: Optional[pulumi.Input[str]] = None,
|
1045
1225
|
user_name: Optional[pulumi.Input[str]] = None,
|
1046
1226
|
wallet_secret_id: Optional[pulumi.Input[str]] = None):
|
1047
|
-
"""
|
1048
|
-
:param pulumi.Input[str] credential_type: Credential type.
|
1049
|
-
:param pulumi.Input[str] credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
|
1050
|
-
:param pulumi.Input[str] password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
|
1051
|
-
:param pulumi.Input[str] role: database user role.
|
1052
|
-
:param pulumi.Input[str] user_name: database user name.
|
1053
|
-
:param pulumi.Input[str] wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
|
1054
|
-
"""
|
1055
1227
|
pulumi.set(__self__, "credential_type", credential_type)
|
1056
1228
|
if credential_source_name is not None:
|
1057
1229
|
pulumi.set(__self__, "credential_source_name", credential_source_name)
|
@@ -1067,9 +1239,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsAr
|
|
1067
1239
|
@property
|
1068
1240
|
@pulumi.getter(name="credentialType")
|
1069
1241
|
def credential_type(self) -> pulumi.Input[str]:
|
1070
|
-
"""
|
1071
|
-
Credential type.
|
1072
|
-
"""
|
1073
1242
|
return pulumi.get(self, "credential_type")
|
1074
1243
|
|
1075
1244
|
@credential_type.setter
|
@@ -1079,9 +1248,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsAr
|
|
1079
1248
|
@property
|
1080
1249
|
@pulumi.getter(name="credentialSourceName")
|
1081
1250
|
def credential_source_name(self) -> Optional[pulumi.Input[str]]:
|
1082
|
-
"""
|
1083
|
-
Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
|
1084
|
-
"""
|
1085
1251
|
return pulumi.get(self, "credential_source_name")
|
1086
1252
|
|
1087
1253
|
@credential_source_name.setter
|
@@ -1091,9 +1257,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsAr
|
|
1091
1257
|
@property
|
1092
1258
|
@pulumi.getter(name="passwordSecretId")
|
1093
1259
|
def password_secret_id(self) -> Optional[pulumi.Input[str]]:
|
1094
|
-
"""
|
1095
|
-
The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
|
1096
|
-
"""
|
1097
1260
|
return pulumi.get(self, "password_secret_id")
|
1098
1261
|
|
1099
1262
|
@password_secret_id.setter
|
@@ -1103,9 +1266,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsAr
|
|
1103
1266
|
@property
|
1104
1267
|
@pulumi.getter
|
1105
1268
|
def role(self) -> Optional[pulumi.Input[str]]:
|
1106
|
-
"""
|
1107
|
-
database user role.
|
1108
|
-
"""
|
1109
1269
|
return pulumi.get(self, "role")
|
1110
1270
|
|
1111
1271
|
@role.setter
|
@@ -1115,9 +1275,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsAr
|
|
1115
1275
|
@property
|
1116
1276
|
@pulumi.getter(name="userName")
|
1117
1277
|
def user_name(self) -> Optional[pulumi.Input[str]]:
|
1118
|
-
"""
|
1119
|
-
database user name.
|
1120
|
-
"""
|
1121
1278
|
return pulumi.get(self, "user_name")
|
1122
1279
|
|
1123
1280
|
@user_name.setter
|
@@ -1127,9 +1284,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsAr
|
|
1127
1284
|
@property
|
1128
1285
|
@pulumi.getter(name="walletSecretId")
|
1129
1286
|
def wallet_secret_id(self) -> Optional[pulumi.Input[str]]:
|
1130
|
-
"""
|
1131
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
|
1132
|
-
"""
|
1133
1287
|
return pulumi.get(self, "wallet_secret_id")
|
1134
1288
|
|
1135
1289
|
@wallet_secret_id.setter
|