pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +86 -38
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +196 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +225 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +27 -1
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +108 -0
- pulumi_oci/mysql/outputs.py +569 -8
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +127 -108
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py
ADDED
@@ -0,0 +1,275 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = ['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementArgs', 'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
autonomous_database_id: pulumi.Input[str],
|
20
|
+
enable_autonomous_database_dbm_feature: pulumi.Input[bool],
|
21
|
+
feature_details: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None):
|
22
|
+
"""
|
23
|
+
The set of arguments for constructing a AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement resource.
|
24
|
+
:param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database.
|
25
|
+
:param pulumi.Input[bool] enable_autonomous_database_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
26
|
+
|
27
|
+
|
28
|
+
** IMPORTANT **
|
29
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
30
|
+
:param pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature for an Autonomous Database.
|
31
|
+
"""
|
32
|
+
pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
|
33
|
+
pulumi.set(__self__, "enable_autonomous_database_dbm_feature", enable_autonomous_database_dbm_feature)
|
34
|
+
if feature_details is not None:
|
35
|
+
pulumi.set(__self__, "feature_details", feature_details)
|
36
|
+
|
37
|
+
@property
|
38
|
+
@pulumi.getter(name="autonomousDatabaseId")
|
39
|
+
def autonomous_database_id(self) -> pulumi.Input[str]:
|
40
|
+
"""
|
41
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database.
|
42
|
+
"""
|
43
|
+
return pulumi.get(self, "autonomous_database_id")
|
44
|
+
|
45
|
+
@autonomous_database_id.setter
|
46
|
+
def autonomous_database_id(self, value: pulumi.Input[str]):
|
47
|
+
pulumi.set(self, "autonomous_database_id", value)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="enableAutonomousDatabaseDbmFeature")
|
51
|
+
def enable_autonomous_database_dbm_feature(self) -> pulumi.Input[bool]:
|
52
|
+
"""
|
53
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
54
|
+
|
55
|
+
|
56
|
+
** IMPORTANT **
|
57
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "enable_autonomous_database_dbm_feature")
|
60
|
+
|
61
|
+
@enable_autonomous_database_dbm_feature.setter
|
62
|
+
def enable_autonomous_database_dbm_feature(self, value: pulumi.Input[bool]):
|
63
|
+
pulumi.set(self, "enable_autonomous_database_dbm_feature", value)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="featureDetails")
|
67
|
+
def feature_details(self) -> Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs']]:
|
68
|
+
"""
|
69
|
+
The details required to enable the specified Database Management feature for an Autonomous Database.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "feature_details")
|
72
|
+
|
73
|
+
@feature_details.setter
|
74
|
+
def feature_details(self, value: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs']]):
|
75
|
+
pulumi.set(self, "feature_details", value)
|
76
|
+
|
77
|
+
|
78
|
+
@pulumi.input_type
|
79
|
+
class _AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementState:
|
80
|
+
def __init__(__self__, *,
|
81
|
+
autonomous_database_id: Optional[pulumi.Input[str]] = None,
|
82
|
+
enable_autonomous_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
83
|
+
feature_details: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None):
|
84
|
+
"""
|
85
|
+
Input properties used for looking up and filtering AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement resources.
|
86
|
+
:param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database.
|
87
|
+
:param pulumi.Input[bool] enable_autonomous_database_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
88
|
+
|
89
|
+
|
90
|
+
** IMPORTANT **
|
91
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
92
|
+
:param pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature for an Autonomous Database.
|
93
|
+
"""
|
94
|
+
if autonomous_database_id is not None:
|
95
|
+
pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
|
96
|
+
if enable_autonomous_database_dbm_feature is not None:
|
97
|
+
pulumi.set(__self__, "enable_autonomous_database_dbm_feature", enable_autonomous_database_dbm_feature)
|
98
|
+
if feature_details is not None:
|
99
|
+
pulumi.set(__self__, "feature_details", feature_details)
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="autonomousDatabaseId")
|
103
|
+
def autonomous_database_id(self) -> Optional[pulumi.Input[str]]:
|
104
|
+
"""
|
105
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "autonomous_database_id")
|
108
|
+
|
109
|
+
@autonomous_database_id.setter
|
110
|
+
def autonomous_database_id(self, value: Optional[pulumi.Input[str]]):
|
111
|
+
pulumi.set(self, "autonomous_database_id", value)
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="enableAutonomousDatabaseDbmFeature")
|
115
|
+
def enable_autonomous_database_dbm_feature(self) -> Optional[pulumi.Input[bool]]:
|
116
|
+
"""
|
117
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
118
|
+
|
119
|
+
|
120
|
+
** IMPORTANT **
|
121
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "enable_autonomous_database_dbm_feature")
|
124
|
+
|
125
|
+
@enable_autonomous_database_dbm_feature.setter
|
126
|
+
def enable_autonomous_database_dbm_feature(self, value: Optional[pulumi.Input[bool]]):
|
127
|
+
pulumi.set(self, "enable_autonomous_database_dbm_feature", value)
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="featureDetails")
|
131
|
+
def feature_details(self) -> Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs']]:
|
132
|
+
"""
|
133
|
+
The details required to enable the specified Database Management feature for an Autonomous Database.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "feature_details")
|
136
|
+
|
137
|
+
@feature_details.setter
|
138
|
+
def feature_details(self, value: Optional[pulumi.Input['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs']]):
|
139
|
+
pulumi.set(self, "feature_details", value)
|
140
|
+
|
141
|
+
|
142
|
+
class AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
143
|
+
@overload
|
144
|
+
def __init__(__self__,
|
145
|
+
resource_name: str,
|
146
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
147
|
+
autonomous_database_id: Optional[pulumi.Input[str]] = None,
|
148
|
+
enable_autonomous_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
149
|
+
feature_details: Optional[pulumi.Input[Union['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs', 'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgsDict']]] = None,
|
150
|
+
__props__=None):
|
151
|
+
"""
|
152
|
+
This resource provides the Autonomous Database Autonomous Database Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
153
|
+
|
154
|
+
Enables a Database Management feature for the specified Autonomous Database.
|
155
|
+
|
156
|
+
:param str resource_name: The name of the resource.
|
157
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
158
|
+
:param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database.
|
159
|
+
:param pulumi.Input[bool] enable_autonomous_database_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
160
|
+
|
161
|
+
|
162
|
+
** IMPORTANT **
|
163
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
164
|
+
:param pulumi.Input[Union['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs', 'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgsDict']] feature_details: The details required to enable the specified Database Management feature for an Autonomous Database.
|
165
|
+
"""
|
166
|
+
...
|
167
|
+
@overload
|
168
|
+
def __init__(__self__,
|
169
|
+
resource_name: str,
|
170
|
+
args: AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementArgs,
|
171
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
172
|
+
"""
|
173
|
+
This resource provides the Autonomous Database Autonomous Database Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
174
|
+
|
175
|
+
Enables a Database Management feature for the specified Autonomous Database.
|
176
|
+
|
177
|
+
:param str resource_name: The name of the resource.
|
178
|
+
:param AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementArgs args: The arguments to use to populate this resource's properties.
|
179
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
180
|
+
"""
|
181
|
+
...
|
182
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
183
|
+
resource_args, opts = _utilities.get_resource_args_opts(AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementArgs, pulumi.ResourceOptions, *args, **kwargs)
|
184
|
+
if resource_args is not None:
|
185
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
186
|
+
else:
|
187
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
188
|
+
|
189
|
+
def _internal_init(__self__,
|
190
|
+
resource_name: str,
|
191
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
192
|
+
autonomous_database_id: Optional[pulumi.Input[str]] = None,
|
193
|
+
enable_autonomous_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
194
|
+
feature_details: Optional[pulumi.Input[Union['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs', 'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgsDict']]] = None,
|
195
|
+
__props__=None):
|
196
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
197
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
198
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
199
|
+
if opts.id is None:
|
200
|
+
if __props__ is not None:
|
201
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
202
|
+
__props__ = AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementArgs.__new__(AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementArgs)
|
203
|
+
|
204
|
+
if autonomous_database_id is None and not opts.urn:
|
205
|
+
raise TypeError("Missing required property 'autonomous_database_id'")
|
206
|
+
__props__.__dict__["autonomous_database_id"] = autonomous_database_id
|
207
|
+
if enable_autonomous_database_dbm_feature is None and not opts.urn:
|
208
|
+
raise TypeError("Missing required property 'enable_autonomous_database_dbm_feature'")
|
209
|
+
__props__.__dict__["enable_autonomous_database_dbm_feature"] = enable_autonomous_database_dbm_feature
|
210
|
+
__props__.__dict__["feature_details"] = feature_details
|
211
|
+
super(AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement, __self__).__init__(
|
212
|
+
'oci:DatabaseManagement/autonomousDatabaseAutonomousDatabaseDbmFeaturesManagement:AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement',
|
213
|
+
resource_name,
|
214
|
+
__props__,
|
215
|
+
opts)
|
216
|
+
|
217
|
+
@staticmethod
|
218
|
+
def get(resource_name: str,
|
219
|
+
id: pulumi.Input[str],
|
220
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
221
|
+
autonomous_database_id: Optional[pulumi.Input[str]] = None,
|
222
|
+
enable_autonomous_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
223
|
+
feature_details: Optional[pulumi.Input[Union['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs', 'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgsDict']]] = None) -> 'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement':
|
224
|
+
"""
|
225
|
+
Get an existing AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement resource's state with the given name, id, and optional extra
|
226
|
+
properties used to qualify the lookup.
|
227
|
+
|
228
|
+
:param str resource_name: The unique name of the resulting resource.
|
229
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
230
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
231
|
+
:param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database.
|
232
|
+
:param pulumi.Input[bool] enable_autonomous_database_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
233
|
+
|
234
|
+
|
235
|
+
** IMPORTANT **
|
236
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
237
|
+
:param pulumi.Input[Union['AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgs', 'AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetailsArgsDict']] feature_details: The details required to enable the specified Database Management feature for an Autonomous Database.
|
238
|
+
"""
|
239
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
240
|
+
|
241
|
+
__props__ = _AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementState.__new__(_AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementState)
|
242
|
+
|
243
|
+
__props__.__dict__["autonomous_database_id"] = autonomous_database_id
|
244
|
+
__props__.__dict__["enable_autonomous_database_dbm_feature"] = enable_autonomous_database_dbm_feature
|
245
|
+
__props__.__dict__["feature_details"] = feature_details
|
246
|
+
return AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement(resource_name, opts=opts, __props__=__props__)
|
247
|
+
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="autonomousDatabaseId")
|
250
|
+
def autonomous_database_id(self) -> pulumi.Output[str]:
|
251
|
+
"""
|
252
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database.
|
253
|
+
"""
|
254
|
+
return pulumi.get(self, "autonomous_database_id")
|
255
|
+
|
256
|
+
@property
|
257
|
+
@pulumi.getter(name="enableAutonomousDatabaseDbmFeature")
|
258
|
+
def enable_autonomous_database_dbm_feature(self) -> pulumi.Output[bool]:
|
259
|
+
"""
|
260
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
261
|
+
|
262
|
+
|
263
|
+
** IMPORTANT **
|
264
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "enable_autonomous_database_dbm_feature")
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="featureDetails")
|
270
|
+
def feature_details(self) -> pulumi.Output[Optional['outputs.AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagementFeatureDetails']]:
|
271
|
+
"""
|
272
|
+
The details required to enable the specified Database Management feature for an Autonomous Database.
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "feature_details")
|
275
|
+
|
@@ -18,7 +18,8 @@ class DatabaseDbmFeaturesManagementArgs:
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
database_id: pulumi.Input[str],
|
20
20
|
enable_database_dbm_feature: pulumi.Input[bool],
|
21
|
-
feature_details: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None
|
21
|
+
feature_details: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None,
|
22
|
+
modify_database_dbm_feature: Optional[pulumi.Input[bool]] = None):
|
22
23
|
"""
|
23
24
|
The set of arguments for constructing a DatabaseDbmFeaturesManagement resource.
|
24
25
|
:param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
|
@@ -33,6 +34,8 @@ class DatabaseDbmFeaturesManagementArgs:
|
|
33
34
|
pulumi.set(__self__, "enable_database_dbm_feature", enable_database_dbm_feature)
|
34
35
|
if feature_details is not None:
|
35
36
|
pulumi.set(__self__, "feature_details", feature_details)
|
37
|
+
if modify_database_dbm_feature is not None:
|
38
|
+
pulumi.set(__self__, "modify_database_dbm_feature", modify_database_dbm_feature)
|
36
39
|
|
37
40
|
@property
|
38
41
|
@pulumi.getter(name="databaseId")
|
@@ -74,13 +77,23 @@ class DatabaseDbmFeaturesManagementArgs:
|
|
74
77
|
def feature_details(self, value: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']]):
|
75
78
|
pulumi.set(self, "feature_details", value)
|
76
79
|
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="modifyDatabaseDbmFeature")
|
82
|
+
def modify_database_dbm_feature(self) -> Optional[pulumi.Input[bool]]:
|
83
|
+
return pulumi.get(self, "modify_database_dbm_feature")
|
84
|
+
|
85
|
+
@modify_database_dbm_feature.setter
|
86
|
+
def modify_database_dbm_feature(self, value: Optional[pulumi.Input[bool]]):
|
87
|
+
pulumi.set(self, "modify_database_dbm_feature", value)
|
88
|
+
|
77
89
|
|
78
90
|
@pulumi.input_type
|
79
91
|
class _DatabaseDbmFeaturesManagementState:
|
80
92
|
def __init__(__self__, *,
|
81
93
|
database_id: Optional[pulumi.Input[str]] = None,
|
82
94
|
enable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
83
|
-
feature_details: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None
|
95
|
+
feature_details: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None,
|
96
|
+
modify_database_dbm_feature: Optional[pulumi.Input[bool]] = None):
|
84
97
|
"""
|
85
98
|
Input properties used for looking up and filtering DatabaseDbmFeaturesManagement resources.
|
86
99
|
:param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
|
@@ -97,6 +110,8 @@ class _DatabaseDbmFeaturesManagementState:
|
|
97
110
|
pulumi.set(__self__, "enable_database_dbm_feature", enable_database_dbm_feature)
|
98
111
|
if feature_details is not None:
|
99
112
|
pulumi.set(__self__, "feature_details", feature_details)
|
113
|
+
if modify_database_dbm_feature is not None:
|
114
|
+
pulumi.set(__self__, "modify_database_dbm_feature", modify_database_dbm_feature)
|
100
115
|
|
101
116
|
@property
|
102
117
|
@pulumi.getter(name="databaseId")
|
@@ -138,6 +153,15 @@ class _DatabaseDbmFeaturesManagementState:
|
|
138
153
|
def feature_details(self, value: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']]):
|
139
154
|
pulumi.set(self, "feature_details", value)
|
140
155
|
|
156
|
+
@property
|
157
|
+
@pulumi.getter(name="modifyDatabaseDbmFeature")
|
158
|
+
def modify_database_dbm_feature(self) -> Optional[pulumi.Input[bool]]:
|
159
|
+
return pulumi.get(self, "modify_database_dbm_feature")
|
160
|
+
|
161
|
+
@modify_database_dbm_feature.setter
|
162
|
+
def modify_database_dbm_feature(self, value: Optional[pulumi.Input[bool]]):
|
163
|
+
pulumi.set(self, "modify_database_dbm_feature", value)
|
164
|
+
|
141
165
|
|
142
166
|
class DatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
143
167
|
@overload
|
@@ -147,6 +171,7 @@ class DatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
|
147
171
|
database_id: Optional[pulumi.Input[str]] = None,
|
148
172
|
enable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
149
173
|
feature_details: Optional[pulumi.Input[Union['DatabaseDbmFeaturesManagementFeatureDetailsArgs', 'DatabaseDbmFeaturesManagementFeatureDetailsArgsDict']]] = None,
|
174
|
+
modify_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
150
175
|
__props__=None):
|
151
176
|
"""
|
152
177
|
This resource provides the Database Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
@@ -192,6 +217,7 @@ class DatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
|
192
217
|
database_id: Optional[pulumi.Input[str]] = None,
|
193
218
|
enable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
194
219
|
feature_details: Optional[pulumi.Input[Union['DatabaseDbmFeaturesManagementFeatureDetailsArgs', 'DatabaseDbmFeaturesManagementFeatureDetailsArgsDict']]] = None,
|
220
|
+
modify_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
195
221
|
__props__=None):
|
196
222
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
197
223
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -208,6 +234,7 @@ class DatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
|
208
234
|
raise TypeError("Missing required property 'enable_database_dbm_feature'")
|
209
235
|
__props__.__dict__["enable_database_dbm_feature"] = enable_database_dbm_feature
|
210
236
|
__props__.__dict__["feature_details"] = feature_details
|
237
|
+
__props__.__dict__["modify_database_dbm_feature"] = modify_database_dbm_feature
|
211
238
|
super(DatabaseDbmFeaturesManagement, __self__).__init__(
|
212
239
|
'oci:DatabaseManagement/databaseDbmFeaturesManagement:DatabaseDbmFeaturesManagement',
|
213
240
|
resource_name,
|
@@ -220,7 +247,8 @@ class DatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
|
220
247
|
opts: Optional[pulumi.ResourceOptions] = None,
|
221
248
|
database_id: Optional[pulumi.Input[str]] = None,
|
222
249
|
enable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
223
|
-
feature_details: Optional[pulumi.Input[Union['DatabaseDbmFeaturesManagementFeatureDetailsArgs', 'DatabaseDbmFeaturesManagementFeatureDetailsArgsDict']]] = None
|
250
|
+
feature_details: Optional[pulumi.Input[Union['DatabaseDbmFeaturesManagementFeatureDetailsArgs', 'DatabaseDbmFeaturesManagementFeatureDetailsArgsDict']]] = None,
|
251
|
+
modify_database_dbm_feature: Optional[pulumi.Input[bool]] = None) -> 'DatabaseDbmFeaturesManagement':
|
224
252
|
"""
|
225
253
|
Get an existing DatabaseDbmFeaturesManagement resource's state with the given name, id, and optional extra
|
226
254
|
properties used to qualify the lookup.
|
@@ -243,6 +271,7 @@ class DatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
|
243
271
|
__props__.__dict__["database_id"] = database_id
|
244
272
|
__props__.__dict__["enable_database_dbm_feature"] = enable_database_dbm_feature
|
245
273
|
__props__.__dict__["feature_details"] = feature_details
|
274
|
+
__props__.__dict__["modify_database_dbm_feature"] = modify_database_dbm_feature
|
246
275
|
return DatabaseDbmFeaturesManagement(resource_name, opts=opts, __props__=__props__)
|
247
276
|
|
248
277
|
@property
|
@@ -273,3 +302,8 @@ class DatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
|
273
302
|
"""
|
274
303
|
return pulumi.get(self, "feature_details")
|
275
304
|
|
305
|
+
@property
|
306
|
+
@pulumi.getter(name="modifyDatabaseDbmFeature")
|
307
|
+
def modify_database_dbm_feature(self) -> pulumi.Output[Optional[bool]]:
|
308
|
+
return pulumi.get(self, "modify_database_dbm_feature")
|
309
|
+
|
@@ -20,6 +20,7 @@ class DbManagementPrivateEndpointArgs:
|
|
20
20
|
description: Optional[pulumi.Input[str]] = None,
|
21
21
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
22
22
|
is_cluster: Optional[pulumi.Input[bool]] = None,
|
23
|
+
is_dns_resolution_enabled: Optional[pulumi.Input[bool]] = None,
|
23
24
|
name: Optional[pulumi.Input[str]] = None,
|
24
25
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
25
26
|
"""
|
@@ -34,6 +35,7 @@ class DbManagementPrivateEndpointArgs:
|
|
34
35
|
:param pulumi.Input[str] description: (Updatable) The description of the private endpoint.
|
35
36
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
36
37
|
:param pulumi.Input[bool] is_cluster: Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
|
38
|
+
:param pulumi.Input[bool] is_dns_resolution_enabled: Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
|
37
39
|
:param pulumi.Input[str] name: (Updatable) The display name of the Database Management private endpoint.
|
38
40
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
|
39
41
|
"""
|
@@ -47,6 +49,8 @@ class DbManagementPrivateEndpointArgs:
|
|
47
49
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
48
50
|
if is_cluster is not None:
|
49
51
|
pulumi.set(__self__, "is_cluster", is_cluster)
|
52
|
+
if is_dns_resolution_enabled is not None:
|
53
|
+
pulumi.set(__self__, "is_dns_resolution_enabled", is_dns_resolution_enabled)
|
50
54
|
if name is not None:
|
51
55
|
pulumi.set(__self__, "name", name)
|
52
56
|
if nsg_ids is not None:
|
@@ -128,6 +132,18 @@ class DbManagementPrivateEndpointArgs:
|
|
128
132
|
def is_cluster(self, value: Optional[pulumi.Input[bool]]):
|
129
133
|
pulumi.set(self, "is_cluster", value)
|
130
134
|
|
135
|
+
@property
|
136
|
+
@pulumi.getter(name="isDnsResolutionEnabled")
|
137
|
+
def is_dns_resolution_enabled(self) -> Optional[pulumi.Input[bool]]:
|
138
|
+
"""
|
139
|
+
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
|
140
|
+
"""
|
141
|
+
return pulumi.get(self, "is_dns_resolution_enabled")
|
142
|
+
|
143
|
+
@is_dns_resolution_enabled.setter
|
144
|
+
def is_dns_resolution_enabled(self, value: Optional[pulumi.Input[bool]]):
|
145
|
+
pulumi.set(self, "is_dns_resolution_enabled", value)
|
146
|
+
|
131
147
|
@property
|
132
148
|
@pulumi.getter
|
133
149
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -161,6 +177,7 @@ class _DbManagementPrivateEndpointState:
|
|
161
177
|
description: Optional[pulumi.Input[str]] = None,
|
162
178
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
163
179
|
is_cluster: Optional[pulumi.Input[bool]] = None,
|
180
|
+
is_dns_resolution_enabled: Optional[pulumi.Input[bool]] = None,
|
164
181
|
name: Optional[pulumi.Input[str]] = None,
|
165
182
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
166
183
|
private_ip: Optional[pulumi.Input[str]] = None,
|
@@ -176,6 +193,7 @@ class _DbManagementPrivateEndpointState:
|
|
176
193
|
:param pulumi.Input[str] description: (Updatable) The description of the private endpoint.
|
177
194
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
178
195
|
:param pulumi.Input[bool] is_cluster: Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
|
196
|
+
:param pulumi.Input[bool] is_dns_resolution_enabled: Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
|
179
197
|
:param pulumi.Input[str] name: (Updatable) The display name of the Database Management private endpoint.
|
180
198
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
|
181
199
|
:param pulumi.Input[str] private_ip: The IP addresses assigned to the Database Management private endpoint.
|
@@ -199,6 +217,8 @@ class _DbManagementPrivateEndpointState:
|
|
199
217
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
200
218
|
if is_cluster is not None:
|
201
219
|
pulumi.set(__self__, "is_cluster", is_cluster)
|
220
|
+
if is_dns_resolution_enabled is not None:
|
221
|
+
pulumi.set(__self__, "is_dns_resolution_enabled", is_dns_resolution_enabled)
|
202
222
|
if name is not None:
|
203
223
|
pulumi.set(__self__, "name", name)
|
204
224
|
if nsg_ids is not None:
|
@@ -276,6 +296,18 @@ class _DbManagementPrivateEndpointState:
|
|
276
296
|
def is_cluster(self, value: Optional[pulumi.Input[bool]]):
|
277
297
|
pulumi.set(self, "is_cluster", value)
|
278
298
|
|
299
|
+
@property
|
300
|
+
@pulumi.getter(name="isDnsResolutionEnabled")
|
301
|
+
def is_dns_resolution_enabled(self) -> Optional[pulumi.Input[bool]]:
|
302
|
+
"""
|
303
|
+
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
|
304
|
+
"""
|
305
|
+
return pulumi.get(self, "is_dns_resolution_enabled")
|
306
|
+
|
307
|
+
@is_dns_resolution_enabled.setter
|
308
|
+
def is_dns_resolution_enabled(self, value: Optional[pulumi.Input[bool]]):
|
309
|
+
pulumi.set(self, "is_dns_resolution_enabled", value)
|
310
|
+
|
279
311
|
@property
|
280
312
|
@pulumi.getter
|
281
313
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -387,6 +419,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
387
419
|
description: Optional[pulumi.Input[str]] = None,
|
388
420
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
389
421
|
is_cluster: Optional[pulumi.Input[bool]] = None,
|
422
|
+
is_dns_resolution_enabled: Optional[pulumi.Input[bool]] = None,
|
390
423
|
name: Optional[pulumi.Input[str]] = None,
|
391
424
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
392
425
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
@@ -414,6 +447,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
414
447
|
"Department": "Finance",
|
415
448
|
},
|
416
449
|
is_cluster=db_management_private_endpoint_is_cluster,
|
450
|
+
is_dns_resolution_enabled=db_management_private_endpoint_is_dns_resolution_enabled,
|
417
451
|
nsg_ids=db_management_private_endpoint_nsg_ids)
|
418
452
|
```
|
419
453
|
|
@@ -432,6 +466,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
432
466
|
:param pulumi.Input[str] description: (Updatable) The description of the private endpoint.
|
433
467
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
434
468
|
:param pulumi.Input[bool] is_cluster: Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
|
469
|
+
:param pulumi.Input[bool] is_dns_resolution_enabled: Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
|
435
470
|
:param pulumi.Input[str] name: (Updatable) The display name of the Database Management private endpoint.
|
436
471
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
|
437
472
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet.
|
@@ -469,6 +504,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
469
504
|
"Department": "Finance",
|
470
505
|
},
|
471
506
|
is_cluster=db_management_private_endpoint_is_cluster,
|
507
|
+
is_dns_resolution_enabled=db_management_private_endpoint_is_dns_resolution_enabled,
|
472
508
|
nsg_ids=db_management_private_endpoint_nsg_ids)
|
473
509
|
```
|
474
510
|
|
@@ -500,6 +536,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
500
536
|
description: Optional[pulumi.Input[str]] = None,
|
501
537
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
502
538
|
is_cluster: Optional[pulumi.Input[bool]] = None,
|
539
|
+
is_dns_resolution_enabled: Optional[pulumi.Input[bool]] = None,
|
503
540
|
name: Optional[pulumi.Input[str]] = None,
|
504
541
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
505
542
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
@@ -519,6 +556,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
519
556
|
__props__.__dict__["description"] = description
|
520
557
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
521
558
|
__props__.__dict__["is_cluster"] = is_cluster
|
559
|
+
__props__.__dict__["is_dns_resolution_enabled"] = is_dns_resolution_enabled
|
522
560
|
__props__.__dict__["name"] = name
|
523
561
|
__props__.__dict__["nsg_ids"] = nsg_ids
|
524
562
|
if subnet_id is None and not opts.urn:
|
@@ -544,6 +582,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
544
582
|
description: Optional[pulumi.Input[str]] = None,
|
545
583
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
546
584
|
is_cluster: Optional[pulumi.Input[bool]] = None,
|
585
|
+
is_dns_resolution_enabled: Optional[pulumi.Input[bool]] = None,
|
547
586
|
name: Optional[pulumi.Input[str]] = None,
|
548
587
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
549
588
|
private_ip: Optional[pulumi.Input[str]] = None,
|
@@ -564,6 +603,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
564
603
|
:param pulumi.Input[str] description: (Updatable) The description of the private endpoint.
|
565
604
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
566
605
|
:param pulumi.Input[bool] is_cluster: Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
|
606
|
+
:param pulumi.Input[bool] is_dns_resolution_enabled: Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
|
567
607
|
:param pulumi.Input[str] name: (Updatable) The display name of the Database Management private endpoint.
|
568
608
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
|
569
609
|
:param pulumi.Input[str] private_ip: The IP addresses assigned to the Database Management private endpoint.
|
@@ -586,6 +626,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
586
626
|
__props__.__dict__["description"] = description
|
587
627
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
588
628
|
__props__.__dict__["is_cluster"] = is_cluster
|
629
|
+
__props__.__dict__["is_dns_resolution_enabled"] = is_dns_resolution_enabled
|
589
630
|
__props__.__dict__["name"] = name
|
590
631
|
__props__.__dict__["nsg_ids"] = nsg_ids
|
591
632
|
__props__.__dict__["private_ip"] = private_ip
|
@@ -636,6 +677,14 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
636
677
|
"""
|
637
678
|
return pulumi.get(self, "is_cluster")
|
638
679
|
|
680
|
+
@property
|
681
|
+
@pulumi.getter(name="isDnsResolutionEnabled")
|
682
|
+
def is_dns_resolution_enabled(self) -> pulumi.Output[bool]:
|
683
|
+
"""
|
684
|
+
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
|
685
|
+
"""
|
686
|
+
return pulumi.get(self, "is_dns_resolution_enabled")
|
687
|
+
|
639
688
|
@property
|
640
689
|
@pulumi.getter
|
641
690
|
def name(self) -> pulumi.Output[str]:
|
@@ -21,7 +21,7 @@ class GetDbManagementPrivateEndpointResult:
|
|
21
21
|
"""
|
22
22
|
A collection of values returned by getDbManagementPrivateEndpoint.
|
23
23
|
"""
|
24
|
-
def __init__(__self__, compartment_id=None, db_management_private_endpoint_id=None, defined_tags=None, description=None, freeform_tags=None, id=None, is_cluster=None, name=None, nsg_ids=None, private_ip=None, state=None, subnet_id=None, system_tags=None, time_created=None, vcn_id=None):
|
24
|
+
def __init__(__self__, compartment_id=None, db_management_private_endpoint_id=None, defined_tags=None, description=None, freeform_tags=None, id=None, is_cluster=None, is_dns_resolution_enabled=None, name=None, nsg_ids=None, private_ip=None, state=None, subnet_id=None, system_tags=None, time_created=None, vcn_id=None):
|
25
25
|
if compartment_id and not isinstance(compartment_id, str):
|
26
26
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
27
27
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -43,6 +43,9 @@ class GetDbManagementPrivateEndpointResult:
|
|
43
43
|
if is_cluster and not isinstance(is_cluster, bool):
|
44
44
|
raise TypeError("Expected argument 'is_cluster' to be a bool")
|
45
45
|
pulumi.set(__self__, "is_cluster", is_cluster)
|
46
|
+
if is_dns_resolution_enabled and not isinstance(is_dns_resolution_enabled, bool):
|
47
|
+
raise TypeError("Expected argument 'is_dns_resolution_enabled' to be a bool")
|
48
|
+
pulumi.set(__self__, "is_dns_resolution_enabled", is_dns_resolution_enabled)
|
46
49
|
if name and not isinstance(name, str):
|
47
50
|
raise TypeError("Expected argument 'name' to be a str")
|
48
51
|
pulumi.set(__self__, "name", name)
|
@@ -121,6 +124,14 @@ class GetDbManagementPrivateEndpointResult:
|
|
121
124
|
"""
|
122
125
|
return pulumi.get(self, "is_cluster")
|
123
126
|
|
127
|
+
@property
|
128
|
+
@pulumi.getter(name="isDnsResolutionEnabled")
|
129
|
+
def is_dns_resolution_enabled(self) -> bool:
|
130
|
+
"""
|
131
|
+
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
|
132
|
+
"""
|
133
|
+
return pulumi.get(self, "is_dns_resolution_enabled")
|
134
|
+
|
124
135
|
@property
|
125
136
|
@pulumi.getter
|
126
137
|
def name(self) -> str:
|
@@ -199,6 +210,7 @@ class AwaitableGetDbManagementPrivateEndpointResult(GetDbManagementPrivateEndpoi
|
|
199
210
|
freeform_tags=self.freeform_tags,
|
200
211
|
id=self.id,
|
201
212
|
is_cluster=self.is_cluster,
|
213
|
+
is_dns_resolution_enabled=self.is_dns_resolution_enabled,
|
202
214
|
name=self.name,
|
203
215
|
nsg_ids=self.nsg_ids,
|
204
216
|
private_ip=self.private_ip,
|
@@ -241,6 +253,7 @@ def get_db_management_private_endpoint(db_management_private_endpoint_id: Option
|
|
241
253
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
242
254
|
id=pulumi.get(__ret__, 'id'),
|
243
255
|
is_cluster=pulumi.get(__ret__, 'is_cluster'),
|
256
|
+
is_dns_resolution_enabled=pulumi.get(__ret__, 'is_dns_resolution_enabled'),
|
244
257
|
name=pulumi.get(__ret__, 'name'),
|
245
258
|
nsg_ids=pulumi.get(__ret__, 'nsg_ids'),
|
246
259
|
private_ip=pulumi.get(__ret__, 'private_ip'),
|