pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.10.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +86 -38
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +64 -24
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/outputs.py +195 -66
- pulumi_oci/database/vm_cluster_network.py +7 -20
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/managementagent/_inputs.py +44 -0
- pulumi_oci/managementagent/management_agent.py +45 -21
- pulumi_oci/managementagent/outputs.py +44 -0
- pulumi_oci/mysql/_inputs.py +23 -0
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_db_system.py +53 -0
- pulumi_oci/mysql/outputs.py +74 -6
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/RECORD +108 -90
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.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.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/top_level.txt +0 -0
@@ -23,7 +23,7 @@ class GetDbManagementPrivateEndpointsResult:
|
|
23
23
|
"""
|
24
24
|
A collection of values returned by getDbManagementPrivateEndpoints.
|
25
25
|
"""
|
26
|
-
def __init__(__self__, compartment_id=None, db_management_private_endpoint_collections=None, filters=None, id=None, is_cluster=None, name=None, state=None, vcn_id=None):
|
26
|
+
def __init__(__self__, compartment_id=None, db_management_private_endpoint_collections=None, filters=None, id=None, is_cluster=None, is_dns_resolution_enabled=None, name=None, state=None, vcn_id=None):
|
27
27
|
if compartment_id and not isinstance(compartment_id, str):
|
28
28
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
29
29
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -39,6 +39,9 @@ class GetDbManagementPrivateEndpointsResult:
|
|
39
39
|
if is_cluster and not isinstance(is_cluster, bool):
|
40
40
|
raise TypeError("Expected argument 'is_cluster' to be a bool")
|
41
41
|
pulumi.set(__self__, "is_cluster", is_cluster)
|
42
|
+
if is_dns_resolution_enabled and not isinstance(is_dns_resolution_enabled, bool):
|
43
|
+
raise TypeError("Expected argument 'is_dns_resolution_enabled' to be a bool")
|
44
|
+
pulumi.set(__self__, "is_dns_resolution_enabled", is_dns_resolution_enabled)
|
42
45
|
if name and not isinstance(name, str):
|
43
46
|
raise TypeError("Expected argument 'name' to be a str")
|
44
47
|
pulumi.set(__self__, "name", name)
|
@@ -86,6 +89,14 @@ class GetDbManagementPrivateEndpointsResult:
|
|
86
89
|
"""
|
87
90
|
return pulumi.get(self, "is_cluster")
|
88
91
|
|
92
|
+
@property
|
93
|
+
@pulumi.getter(name="isDnsResolutionEnabled")
|
94
|
+
def is_dns_resolution_enabled(self) -> Optional[bool]:
|
95
|
+
"""
|
96
|
+
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
|
97
|
+
"""
|
98
|
+
return pulumi.get(self, "is_dns_resolution_enabled")
|
99
|
+
|
89
100
|
@property
|
90
101
|
@pulumi.getter
|
91
102
|
def name(self) -> Optional[str]:
|
@@ -122,6 +133,7 @@ class AwaitableGetDbManagementPrivateEndpointsResult(GetDbManagementPrivateEndpo
|
|
122
133
|
filters=self.filters,
|
123
134
|
id=self.id,
|
124
135
|
is_cluster=self.is_cluster,
|
136
|
+
is_dns_resolution_enabled=self.is_dns_resolution_enabled,
|
125
137
|
name=self.name,
|
126
138
|
state=self.state,
|
127
139
|
vcn_id=self.vcn_id)
|
@@ -130,6 +142,7 @@ class AwaitableGetDbManagementPrivateEndpointsResult(GetDbManagementPrivateEndpo
|
|
130
142
|
def get_db_management_private_endpoints(compartment_id: Optional[str] = None,
|
131
143
|
filters: Optional[Sequence[Union['GetDbManagementPrivateEndpointsFilterArgs', 'GetDbManagementPrivateEndpointsFilterArgsDict']]] = None,
|
132
144
|
is_cluster: Optional[bool] = None,
|
145
|
+
is_dns_resolution_enabled: Optional[bool] = None,
|
133
146
|
name: Optional[str] = None,
|
134
147
|
state: Optional[str] = None,
|
135
148
|
vcn_id: Optional[str] = None,
|
@@ -147,6 +160,7 @@ def get_db_management_private_endpoints(compartment_id: Optional[str] = None,
|
|
147
160
|
|
148
161
|
test_db_management_private_endpoints = oci.DatabaseManagement.get_db_management_private_endpoints(compartment_id=compartment_id,
|
149
162
|
is_cluster=db_management_private_endpoint_is_cluster,
|
163
|
+
is_dns_resolution_enabled=db_management_private_endpoint_is_dns_resolution_enabled,
|
150
164
|
name=db_management_private_endpoint_name,
|
151
165
|
state=db_management_private_endpoint_state,
|
152
166
|
vcn_id=test_vcn["id"])
|
@@ -155,6 +169,7 @@ def get_db_management_private_endpoints(compartment_id: Optional[str] = None,
|
|
155
169
|
|
156
170
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
157
171
|
:param bool is_cluster: The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
|
172
|
+
:param bool is_dns_resolution_enabled: The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
|
158
173
|
:param str name: A filter to return only resources that match the entire name.
|
159
174
|
:param str state: The lifecycle state of a resource.
|
160
175
|
:param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN.
|
@@ -163,6 +178,7 @@ def get_db_management_private_endpoints(compartment_id: Optional[str] = None,
|
|
163
178
|
__args__['compartmentId'] = compartment_id
|
164
179
|
__args__['filters'] = filters
|
165
180
|
__args__['isCluster'] = is_cluster
|
181
|
+
__args__['isDnsResolutionEnabled'] = is_dns_resolution_enabled
|
166
182
|
__args__['name'] = name
|
167
183
|
__args__['state'] = state
|
168
184
|
__args__['vcnId'] = vcn_id
|
@@ -175,6 +191,7 @@ def get_db_management_private_endpoints(compartment_id: Optional[str] = None,
|
|
175
191
|
filters=pulumi.get(__ret__, 'filters'),
|
176
192
|
id=pulumi.get(__ret__, 'id'),
|
177
193
|
is_cluster=pulumi.get(__ret__, 'is_cluster'),
|
194
|
+
is_dns_resolution_enabled=pulumi.get(__ret__, 'is_dns_resolution_enabled'),
|
178
195
|
name=pulumi.get(__ret__, 'name'),
|
179
196
|
state=pulumi.get(__ret__, 'state'),
|
180
197
|
vcn_id=pulumi.get(__ret__, 'vcn_id'))
|
@@ -184,6 +201,7 @@ def get_db_management_private_endpoints(compartment_id: Optional[str] = None,
|
|
184
201
|
def get_db_management_private_endpoints_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
185
202
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDbManagementPrivateEndpointsFilterArgs', 'GetDbManagementPrivateEndpointsFilterArgsDict']]]]] = None,
|
186
203
|
is_cluster: Optional[pulumi.Input[Optional[bool]]] = None,
|
204
|
+
is_dns_resolution_enabled: Optional[pulumi.Input[Optional[bool]]] = None,
|
187
205
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
188
206
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
189
207
|
vcn_id: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -201,6 +219,7 @@ def get_db_management_private_endpoints_output(compartment_id: Optional[pulumi.I
|
|
201
219
|
|
202
220
|
test_db_management_private_endpoints = oci.DatabaseManagement.get_db_management_private_endpoints(compartment_id=compartment_id,
|
203
221
|
is_cluster=db_management_private_endpoint_is_cluster,
|
222
|
+
is_dns_resolution_enabled=db_management_private_endpoint_is_dns_resolution_enabled,
|
204
223
|
name=db_management_private_endpoint_name,
|
205
224
|
state=db_management_private_endpoint_state,
|
206
225
|
vcn_id=test_vcn["id"])
|
@@ -209,6 +228,7 @@ def get_db_management_private_endpoints_output(compartment_id: Optional[pulumi.I
|
|
209
228
|
|
210
229
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
211
230
|
:param bool is_cluster: The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
|
231
|
+
:param bool is_dns_resolution_enabled: The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
|
212
232
|
:param str name: A filter to return only resources that match the entire name.
|
213
233
|
:param str state: The lifecycle state of a resource.
|
214
234
|
:param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN.
|
@@ -22,13 +22,16 @@ class GetManagedDatabaseResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getManagedDatabase.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, additional_details=None, compartment_id=None, database_status=None, database_sub_type=None, database_type=None, database_version=None, db_system_id=None, defined_tags=None, deployment_type=None, freeform_tags=None, id=None, is_cluster=None, managed_database_groups=None, managed_database_id=None, management_option=None, name=None, parent_container_id=None, storage_system_id=None, time_created=None, workload_type=None):
|
25
|
+
def __init__(__self__, additional_details=None, compartment_id=None, database_platform_name=None, database_status=None, database_sub_type=None, database_type=None, database_version=None, db_system_id=None, dbmgmt_feature_configs=None, defined_tags=None, deployment_type=None, freeform_tags=None, id=None, is_cluster=None, managed_database_groups=None, managed_database_id=None, management_option=None, name=None, parent_container_id=None, storage_system_id=None, system_tags=None, time_created=None, workload_type=None):
|
26
26
|
if additional_details and not isinstance(additional_details, dict):
|
27
27
|
raise TypeError("Expected argument 'additional_details' to be a dict")
|
28
28
|
pulumi.set(__self__, "additional_details", additional_details)
|
29
29
|
if compartment_id and not isinstance(compartment_id, str):
|
30
30
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
31
31
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
32
|
+
if database_platform_name and not isinstance(database_platform_name, str):
|
33
|
+
raise TypeError("Expected argument 'database_platform_name' to be a str")
|
34
|
+
pulumi.set(__self__, "database_platform_name", database_platform_name)
|
32
35
|
if database_status and not isinstance(database_status, str):
|
33
36
|
raise TypeError("Expected argument 'database_status' to be a str")
|
34
37
|
pulumi.set(__self__, "database_status", database_status)
|
@@ -44,6 +47,9 @@ class GetManagedDatabaseResult:
|
|
44
47
|
if db_system_id and not isinstance(db_system_id, str):
|
45
48
|
raise TypeError("Expected argument 'db_system_id' to be a str")
|
46
49
|
pulumi.set(__self__, "db_system_id", db_system_id)
|
50
|
+
if dbmgmt_feature_configs and not isinstance(dbmgmt_feature_configs, list):
|
51
|
+
raise TypeError("Expected argument 'dbmgmt_feature_configs' to be a list")
|
52
|
+
pulumi.set(__self__, "dbmgmt_feature_configs", dbmgmt_feature_configs)
|
47
53
|
if defined_tags and not isinstance(defined_tags, dict):
|
48
54
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
49
55
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -77,6 +83,9 @@ class GetManagedDatabaseResult:
|
|
77
83
|
if storage_system_id and not isinstance(storage_system_id, str):
|
78
84
|
raise TypeError("Expected argument 'storage_system_id' to be a str")
|
79
85
|
pulumi.set(__self__, "storage_system_id", storage_system_id)
|
86
|
+
if system_tags and not isinstance(system_tags, dict):
|
87
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
88
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
80
89
|
if time_created and not isinstance(time_created, str):
|
81
90
|
raise TypeError("Expected argument 'time_created' to be a str")
|
82
91
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -100,6 +109,14 @@ class GetManagedDatabaseResult:
|
|
100
109
|
"""
|
101
110
|
return pulumi.get(self, "compartment_id")
|
102
111
|
|
112
|
+
@property
|
113
|
+
@pulumi.getter(name="databasePlatformName")
|
114
|
+
def database_platform_name(self) -> Optional[str]:
|
115
|
+
"""
|
116
|
+
The operating system of database.
|
117
|
+
"""
|
118
|
+
return pulumi.get(self, "database_platform_name")
|
119
|
+
|
103
120
|
@property
|
104
121
|
@pulumi.getter(name="databaseStatus")
|
105
122
|
def database_status(self) -> str:
|
@@ -140,6 +157,14 @@ class GetManagedDatabaseResult:
|
|
140
157
|
"""
|
141
158
|
return pulumi.get(self, "db_system_id")
|
142
159
|
|
160
|
+
@property
|
161
|
+
@pulumi.getter(name="dbmgmtFeatureConfigs")
|
162
|
+
def dbmgmt_feature_configs(self) -> Sequence['outputs.GetManagedDatabaseDbmgmtFeatureConfigResult']:
|
163
|
+
"""
|
164
|
+
The list of feature configurations
|
165
|
+
"""
|
166
|
+
return pulumi.get(self, "dbmgmt_feature_configs")
|
167
|
+
|
143
168
|
@property
|
144
169
|
@pulumi.getter(name="definedTags")
|
145
170
|
def defined_tags(self) -> Mapping[str, str]:
|
@@ -225,6 +250,14 @@ class GetManagedDatabaseResult:
|
|
225
250
|
"""
|
226
251
|
return pulumi.get(self, "storage_system_id")
|
227
252
|
|
253
|
+
@property
|
254
|
+
@pulumi.getter(name="systemTags")
|
255
|
+
def system_tags(self) -> Mapping[str, str]:
|
256
|
+
"""
|
257
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
258
|
+
"""
|
259
|
+
return pulumi.get(self, "system_tags")
|
260
|
+
|
228
261
|
@property
|
229
262
|
@pulumi.getter(name="timeCreated")
|
230
263
|
def time_created(self) -> str:
|
@@ -250,11 +283,13 @@ class AwaitableGetManagedDatabaseResult(GetManagedDatabaseResult):
|
|
250
283
|
return GetManagedDatabaseResult(
|
251
284
|
additional_details=self.additional_details,
|
252
285
|
compartment_id=self.compartment_id,
|
286
|
+
database_platform_name=self.database_platform_name,
|
253
287
|
database_status=self.database_status,
|
254
288
|
database_sub_type=self.database_sub_type,
|
255
289
|
database_type=self.database_type,
|
256
290
|
database_version=self.database_version,
|
257
291
|
db_system_id=self.db_system_id,
|
292
|
+
dbmgmt_feature_configs=self.dbmgmt_feature_configs,
|
258
293
|
defined_tags=self.defined_tags,
|
259
294
|
deployment_type=self.deployment_type,
|
260
295
|
freeform_tags=self.freeform_tags,
|
@@ -266,11 +301,13 @@ class AwaitableGetManagedDatabaseResult(GetManagedDatabaseResult):
|
|
266
301
|
name=self.name,
|
267
302
|
parent_container_id=self.parent_container_id,
|
268
303
|
storage_system_id=self.storage_system_id,
|
304
|
+
system_tags=self.system_tags,
|
269
305
|
time_created=self.time_created,
|
270
306
|
workload_type=self.workload_type)
|
271
307
|
|
272
308
|
|
273
|
-
def get_managed_database(
|
309
|
+
def get_managed_database(database_platform_name: Optional[str] = None,
|
310
|
+
managed_database_id: Optional[str] = None,
|
274
311
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagedDatabaseResult:
|
275
312
|
"""
|
276
313
|
This data source provides details about a specific Managed Database resource in Oracle Cloud Infrastructure Database Management service.
|
@@ -287,9 +324,11 @@ def get_managed_database(managed_database_id: Optional[str] = None,
|
|
287
324
|
```
|
288
325
|
|
289
326
|
|
327
|
+
:param str database_platform_name: The operating system of database.
|
290
328
|
:param str managed_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database.
|
291
329
|
"""
|
292
330
|
__args__ = dict()
|
331
|
+
__args__['databasePlatformName'] = database_platform_name
|
293
332
|
__args__['managedDatabaseId'] = managed_database_id
|
294
333
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
295
334
|
__ret__ = pulumi.runtime.invoke('oci:DatabaseManagement/getManagedDatabase:getManagedDatabase', __args__, opts=opts, typ=GetManagedDatabaseResult).value
|
@@ -297,11 +336,13 @@ def get_managed_database(managed_database_id: Optional[str] = None,
|
|
297
336
|
return AwaitableGetManagedDatabaseResult(
|
298
337
|
additional_details=pulumi.get(__ret__, 'additional_details'),
|
299
338
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
339
|
+
database_platform_name=pulumi.get(__ret__, 'database_platform_name'),
|
300
340
|
database_status=pulumi.get(__ret__, 'database_status'),
|
301
341
|
database_sub_type=pulumi.get(__ret__, 'database_sub_type'),
|
302
342
|
database_type=pulumi.get(__ret__, 'database_type'),
|
303
343
|
database_version=pulumi.get(__ret__, 'database_version'),
|
304
344
|
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
345
|
+
dbmgmt_feature_configs=pulumi.get(__ret__, 'dbmgmt_feature_configs'),
|
305
346
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
306
347
|
deployment_type=pulumi.get(__ret__, 'deployment_type'),
|
307
348
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
@@ -313,12 +354,14 @@ def get_managed_database(managed_database_id: Optional[str] = None,
|
|
313
354
|
name=pulumi.get(__ret__, 'name'),
|
314
355
|
parent_container_id=pulumi.get(__ret__, 'parent_container_id'),
|
315
356
|
storage_system_id=pulumi.get(__ret__, 'storage_system_id'),
|
357
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
316
358
|
time_created=pulumi.get(__ret__, 'time_created'),
|
317
359
|
workload_type=pulumi.get(__ret__, 'workload_type'))
|
318
360
|
|
319
361
|
|
320
362
|
@_utilities.lift_output_func(get_managed_database)
|
321
|
-
def get_managed_database_output(
|
363
|
+
def get_managed_database_output(database_platform_name: Optional[pulumi.Input[Optional[str]]] = None,
|
364
|
+
managed_database_id: Optional[pulumi.Input[str]] = None,
|
322
365
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetManagedDatabaseResult]:
|
323
366
|
"""
|
324
367
|
This data source provides details about a specific Managed Database resource in Oracle Cloud Infrastructure Database Management service.
|
@@ -335,6 +378,7 @@ def get_managed_database_output(managed_database_id: Optional[pulumi.Input[str]]
|
|
335
378
|
```
|
336
379
|
|
337
380
|
|
381
|
+
:param str database_platform_name: The operating system of database.
|
338
382
|
:param str managed_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database.
|
339
383
|
"""
|
340
384
|
...
|
@@ -81,11 +81,13 @@ class _ManagedDatabaseState:
|
|
81
81
|
def __init__(__self__, *,
|
82
82
|
additional_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
83
83
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
84
|
+
database_platform_name: Optional[pulumi.Input[str]] = None,
|
84
85
|
database_status: Optional[pulumi.Input[str]] = None,
|
85
86
|
database_sub_type: Optional[pulumi.Input[str]] = None,
|
86
87
|
database_type: Optional[pulumi.Input[str]] = None,
|
87
88
|
database_version: Optional[pulumi.Input[str]] = None,
|
88
89
|
db_system_id: Optional[pulumi.Input[str]] = None,
|
90
|
+
dbmgmt_feature_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigArgs']]]] = None,
|
89
91
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
90
92
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
91
93
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -103,11 +105,13 @@ class _ManagedDatabaseState:
|
|
103
105
|
Input properties used for looking up and filtering ManagedDatabase resources.
|
104
106
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] additional_details: The additional details specific to a type of database defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
|
105
107
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the Managed Database Group resides.
|
108
|
+
:param pulumi.Input[str] database_platform_name: The operating system of database.
|
106
109
|
:param pulumi.Input[str] database_status: The status of the Oracle Database. Indicates whether the status of the database is UP, DOWN, or UNKNOWN at the current time.
|
107
110
|
:param pulumi.Input[str] database_sub_type: The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
|
108
111
|
:param pulumi.Input[str] database_type: The type of Oracle Database installation.
|
109
112
|
:param pulumi.Input[str] database_version: The Oracle Database version.
|
110
113
|
:param pulumi.Input[str] db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB system that this Managed Database is part of.
|
114
|
+
:param pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigArgs']]] dbmgmt_feature_configs: The list of feature configurations
|
111
115
|
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
112
116
|
:param pulumi.Input[str] deployment_type: The infrastructure used to deploy the Oracle Database.
|
113
117
|
: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"}`
|
@@ -130,6 +134,8 @@ class _ManagedDatabaseState:
|
|
130
134
|
pulumi.set(__self__, "additional_details", additional_details)
|
131
135
|
if compartment_id is not None:
|
132
136
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
137
|
+
if database_platform_name is not None:
|
138
|
+
pulumi.set(__self__, "database_platform_name", database_platform_name)
|
133
139
|
if database_status is not None:
|
134
140
|
pulumi.set(__self__, "database_status", database_status)
|
135
141
|
if database_sub_type is not None:
|
@@ -140,6 +146,8 @@ class _ManagedDatabaseState:
|
|
140
146
|
pulumi.set(__self__, "database_version", database_version)
|
141
147
|
if db_system_id is not None:
|
142
148
|
pulumi.set(__self__, "db_system_id", db_system_id)
|
149
|
+
if dbmgmt_feature_configs is not None:
|
150
|
+
pulumi.set(__self__, "dbmgmt_feature_configs", dbmgmt_feature_configs)
|
143
151
|
if defined_tags is not None:
|
144
152
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
145
153
|
if deployment_type is not None:
|
@@ -191,6 +199,18 @@ class _ManagedDatabaseState:
|
|
191
199
|
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
192
200
|
pulumi.set(self, "compartment_id", value)
|
193
201
|
|
202
|
+
@property
|
203
|
+
@pulumi.getter(name="databasePlatformName")
|
204
|
+
def database_platform_name(self) -> Optional[pulumi.Input[str]]:
|
205
|
+
"""
|
206
|
+
The operating system of database.
|
207
|
+
"""
|
208
|
+
return pulumi.get(self, "database_platform_name")
|
209
|
+
|
210
|
+
@database_platform_name.setter
|
211
|
+
def database_platform_name(self, value: Optional[pulumi.Input[str]]):
|
212
|
+
pulumi.set(self, "database_platform_name", value)
|
213
|
+
|
194
214
|
@property
|
195
215
|
@pulumi.getter(name="databaseStatus")
|
196
216
|
def database_status(self) -> Optional[pulumi.Input[str]]:
|
@@ -251,6 +271,18 @@ class _ManagedDatabaseState:
|
|
251
271
|
def db_system_id(self, value: Optional[pulumi.Input[str]]):
|
252
272
|
pulumi.set(self, "db_system_id", value)
|
253
273
|
|
274
|
+
@property
|
275
|
+
@pulumi.getter(name="dbmgmtFeatureConfigs")
|
276
|
+
def dbmgmt_feature_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigArgs']]]]:
|
277
|
+
"""
|
278
|
+
The list of feature configurations
|
279
|
+
"""
|
280
|
+
return pulumi.get(self, "dbmgmt_feature_configs")
|
281
|
+
|
282
|
+
@dbmgmt_feature_configs.setter
|
283
|
+
def dbmgmt_feature_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseDbmgmtFeatureConfigArgs']]]]):
|
284
|
+
pulumi.set(self, "dbmgmt_feature_configs", value)
|
285
|
+
|
254
286
|
@property
|
255
287
|
@pulumi.getter(name="definedTags")
|
256
288
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -497,11 +529,13 @@ class ManagedDatabase(pulumi.CustomResource):
|
|
497
529
|
__props__.__dict__["managed_database_id"] = managed_database_id
|
498
530
|
__props__.__dict__["additional_details"] = None
|
499
531
|
__props__.__dict__["compartment_id"] = None
|
532
|
+
__props__.__dict__["database_platform_name"] = None
|
500
533
|
__props__.__dict__["database_status"] = None
|
501
534
|
__props__.__dict__["database_sub_type"] = None
|
502
535
|
__props__.__dict__["database_type"] = None
|
503
536
|
__props__.__dict__["database_version"] = None
|
504
537
|
__props__.__dict__["db_system_id"] = None
|
538
|
+
__props__.__dict__["dbmgmt_feature_configs"] = None
|
505
539
|
__props__.__dict__["deployment_type"] = None
|
506
540
|
__props__.__dict__["is_cluster"] = None
|
507
541
|
__props__.__dict__["managed_database_groups"] = None
|
@@ -524,11 +558,13 @@ class ManagedDatabase(pulumi.CustomResource):
|
|
524
558
|
opts: Optional[pulumi.ResourceOptions] = None,
|
525
559
|
additional_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
526
560
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
561
|
+
database_platform_name: Optional[pulumi.Input[str]] = None,
|
527
562
|
database_status: Optional[pulumi.Input[str]] = None,
|
528
563
|
database_sub_type: Optional[pulumi.Input[str]] = None,
|
529
564
|
database_type: Optional[pulumi.Input[str]] = None,
|
530
565
|
database_version: Optional[pulumi.Input[str]] = None,
|
531
566
|
db_system_id: Optional[pulumi.Input[str]] = None,
|
567
|
+
dbmgmt_feature_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ManagedDatabaseDbmgmtFeatureConfigArgs', 'ManagedDatabaseDbmgmtFeatureConfigArgsDict']]]]] = None,
|
532
568
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
533
569
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
534
570
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -551,11 +587,13 @@ class ManagedDatabase(pulumi.CustomResource):
|
|
551
587
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
552
588
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] additional_details: The additional details specific to a type of database defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
|
553
589
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the Managed Database Group resides.
|
590
|
+
:param pulumi.Input[str] database_platform_name: The operating system of database.
|
554
591
|
:param pulumi.Input[str] database_status: The status of the Oracle Database. Indicates whether the status of the database is UP, DOWN, or UNKNOWN at the current time.
|
555
592
|
:param pulumi.Input[str] database_sub_type: The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
|
556
593
|
:param pulumi.Input[str] database_type: The type of Oracle Database installation.
|
557
594
|
:param pulumi.Input[str] database_version: The Oracle Database version.
|
558
595
|
:param pulumi.Input[str] db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB system that this Managed Database is part of.
|
596
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ManagedDatabaseDbmgmtFeatureConfigArgs', 'ManagedDatabaseDbmgmtFeatureConfigArgsDict']]]] dbmgmt_feature_configs: The list of feature configurations
|
559
597
|
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
560
598
|
:param pulumi.Input[str] deployment_type: The infrastructure used to deploy the Oracle Database.
|
561
599
|
: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"}`
|
@@ -580,11 +618,13 @@ class ManagedDatabase(pulumi.CustomResource):
|
|
580
618
|
|
581
619
|
__props__.__dict__["additional_details"] = additional_details
|
582
620
|
__props__.__dict__["compartment_id"] = compartment_id
|
621
|
+
__props__.__dict__["database_platform_name"] = database_platform_name
|
583
622
|
__props__.__dict__["database_status"] = database_status
|
584
623
|
__props__.__dict__["database_sub_type"] = database_sub_type
|
585
624
|
__props__.__dict__["database_type"] = database_type
|
586
625
|
__props__.__dict__["database_version"] = database_version
|
587
626
|
__props__.__dict__["db_system_id"] = db_system_id
|
627
|
+
__props__.__dict__["dbmgmt_feature_configs"] = dbmgmt_feature_configs
|
588
628
|
__props__.__dict__["defined_tags"] = defined_tags
|
589
629
|
__props__.__dict__["deployment_type"] = deployment_type
|
590
630
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
@@ -616,6 +656,14 @@ class ManagedDatabase(pulumi.CustomResource):
|
|
616
656
|
"""
|
617
657
|
return pulumi.get(self, "compartment_id")
|
618
658
|
|
659
|
+
@property
|
660
|
+
@pulumi.getter(name="databasePlatformName")
|
661
|
+
def database_platform_name(self) -> pulumi.Output[str]:
|
662
|
+
"""
|
663
|
+
The operating system of database.
|
664
|
+
"""
|
665
|
+
return pulumi.get(self, "database_platform_name")
|
666
|
+
|
619
667
|
@property
|
620
668
|
@pulumi.getter(name="databaseStatus")
|
621
669
|
def database_status(self) -> pulumi.Output[str]:
|
@@ -656,6 +704,14 @@ class ManagedDatabase(pulumi.CustomResource):
|
|
656
704
|
"""
|
657
705
|
return pulumi.get(self, "db_system_id")
|
658
706
|
|
707
|
+
@property
|
708
|
+
@pulumi.getter(name="dbmgmtFeatureConfigs")
|
709
|
+
def dbmgmt_feature_configs(self) -> pulumi.Output[Sequence['outputs.ManagedDatabaseDbmgmtFeatureConfig']]:
|
710
|
+
"""
|
711
|
+
The list of feature configurations
|
712
|
+
"""
|
713
|
+
return pulumi.get(self, "dbmgmt_feature_configs")
|
714
|
+
|
659
715
|
@property
|
660
716
|
@pulumi.getter(name="definedTags")
|
661
717
|
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|