pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.34.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 +51 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/config/__init__.pyi +2 -2
- pulumi_oci/config/vars.py +2 -2
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/database/db_home.py +47 -0
- pulumi_oci/database/get_db_home.py +14 -1
- pulumi_oci/database/outputs.py +11 -0
- pulumi_oci/databasemanagement/__init__.py +5 -0
- pulumi_oci/databasemanagement/_inputs.py +1207 -2
- pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
- pulumi_oci/databasemanagement/external_asm.py +28 -0
- pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
- pulumi_oci/databasemanagement/external_cluster.py +28 -0
- pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
- pulumi_oci/databasemanagement/external_db_home.py +28 -0
- pulumi_oci/databasemanagement/external_db_node.py +28 -0
- pulumi_oci/databasemanagement/external_db_system.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
- pulumi_oci/databasemanagement/external_listener.py +28 -0
- pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_databases.py +18 -1
- pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
- pulumi_oci/databasemanagement/get_external_listener.py +14 -1
- pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
- pulumi_oci/databasemanagement/get_named_credential.py +14 -1
- pulumi_oci/databasemanagement/managed_database.py +28 -0
- pulumi_oci/databasemanagement/managed_database_group.py +28 -0
- pulumi_oci/databasemanagement/named_credential.py +28 -0
- pulumi_oci/databasemanagement/outputs.py +1723 -214
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/datasafe/__init__.py +3 -0
- pulumi_oci/datasafe/_inputs.py +80 -0
- pulumi_oci/datasafe/get_masking_policy.py +11 -1
- pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
- pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
- pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
- pulumi_oci/datasafe/masking_policy.py +75 -28
- pulumi_oci/datasafe/outputs.py +287 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/provider.py +8 -8
- pulumi_oci/recoverymod/_inputs.py +16 -0
- pulumi_oci/recoverymod/get_protected_database.py +25 -5
- pulumi_oci/recoverymod/get_protection_policies.py +1 -7
- pulumi_oci/recoverymod/get_protection_policy.py +15 -8
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
- pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
- pulumi_oci/recoverymod/outputs.py +96 -24
- pulumi_oci/recoverymod/protected_database.py +95 -16
- pulumi_oci/recoverymod/protection_policy.py +121 -54
- pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
@@ -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__ = ['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementArgs', 'ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
enable_external_non_container_dbm_feature: pulumi.Input[bool],
|
20
|
+
external_non_container_database_id: pulumi.Input[str],
|
21
|
+
feature_details: Optional[pulumi.Input['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']] = None):
|
22
|
+
"""
|
23
|
+
The set of arguments for constructing a ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement resource.
|
24
|
+
:param pulumi.Input[bool] enable_external_non_container_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
25
|
+
|
26
|
+
|
27
|
+
** IMPORTANT **
|
28
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
29
|
+
:param pulumi.Input[str] external_non_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database.
|
30
|
+
:param pulumi.Input['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
|
31
|
+
"""
|
32
|
+
pulumi.set(__self__, "enable_external_non_container_dbm_feature", enable_external_non_container_dbm_feature)
|
33
|
+
pulumi.set(__self__, "external_non_container_database_id", external_non_container_database_id)
|
34
|
+
if feature_details is not None:
|
35
|
+
pulumi.set(__self__, "feature_details", feature_details)
|
36
|
+
|
37
|
+
@property
|
38
|
+
@pulumi.getter(name="enableExternalNonContainerDbmFeature")
|
39
|
+
def enable_external_non_container_dbm_feature(self) -> pulumi.Input[bool]:
|
40
|
+
"""
|
41
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
42
|
+
|
43
|
+
|
44
|
+
** IMPORTANT **
|
45
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
46
|
+
"""
|
47
|
+
return pulumi.get(self, "enable_external_non_container_dbm_feature")
|
48
|
+
|
49
|
+
@enable_external_non_container_dbm_feature.setter
|
50
|
+
def enable_external_non_container_dbm_feature(self, value: pulumi.Input[bool]):
|
51
|
+
pulumi.set(self, "enable_external_non_container_dbm_feature", value)
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter(name="externalNonContainerDatabaseId")
|
55
|
+
def external_non_container_database_id(self) -> pulumi.Input[str]:
|
56
|
+
"""
|
57
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database.
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "external_non_container_database_id")
|
60
|
+
|
61
|
+
@external_non_container_database_id.setter
|
62
|
+
def external_non_container_database_id(self, value: pulumi.Input[str]):
|
63
|
+
pulumi.set(self, "external_non_container_database_id", value)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="featureDetails")
|
67
|
+
def feature_details(self) -> Optional[pulumi.Input['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']]:
|
68
|
+
"""
|
69
|
+
The details required to enable the specified Database Management feature.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "feature_details")
|
72
|
+
|
73
|
+
@feature_details.setter
|
74
|
+
def feature_details(self, value: Optional[pulumi.Input['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']]):
|
75
|
+
pulumi.set(self, "feature_details", value)
|
76
|
+
|
77
|
+
|
78
|
+
@pulumi.input_type
|
79
|
+
class _ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementState:
|
80
|
+
def __init__(__self__, *,
|
81
|
+
enable_external_non_container_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
82
|
+
external_non_container_database_id: Optional[pulumi.Input[str]] = None,
|
83
|
+
feature_details: Optional[pulumi.Input['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']] = None):
|
84
|
+
"""
|
85
|
+
Input properties used for looking up and filtering ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement resources.
|
86
|
+
:param pulumi.Input[bool] enable_external_non_container_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
87
|
+
|
88
|
+
|
89
|
+
** IMPORTANT **
|
90
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
91
|
+
:param pulumi.Input[str] external_non_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database.
|
92
|
+
:param pulumi.Input['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
|
93
|
+
"""
|
94
|
+
if enable_external_non_container_dbm_feature is not None:
|
95
|
+
pulumi.set(__self__, "enable_external_non_container_dbm_feature", enable_external_non_container_dbm_feature)
|
96
|
+
if external_non_container_database_id is not None:
|
97
|
+
pulumi.set(__self__, "external_non_container_database_id", external_non_container_database_id)
|
98
|
+
if feature_details is not None:
|
99
|
+
pulumi.set(__self__, "feature_details", feature_details)
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="enableExternalNonContainerDbmFeature")
|
103
|
+
def enable_external_non_container_dbm_feature(self) -> Optional[pulumi.Input[bool]]:
|
104
|
+
"""
|
105
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
106
|
+
|
107
|
+
|
108
|
+
** IMPORTANT **
|
109
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "enable_external_non_container_dbm_feature")
|
112
|
+
|
113
|
+
@enable_external_non_container_dbm_feature.setter
|
114
|
+
def enable_external_non_container_dbm_feature(self, value: Optional[pulumi.Input[bool]]):
|
115
|
+
pulumi.set(self, "enable_external_non_container_dbm_feature", value)
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="externalNonContainerDatabaseId")
|
119
|
+
def external_non_container_database_id(self) -> Optional[pulumi.Input[str]]:
|
120
|
+
"""
|
121
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "external_non_container_database_id")
|
124
|
+
|
125
|
+
@external_non_container_database_id.setter
|
126
|
+
def external_non_container_database_id(self, value: Optional[pulumi.Input[str]]):
|
127
|
+
pulumi.set(self, "external_non_container_database_id", value)
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="featureDetails")
|
131
|
+
def feature_details(self) -> Optional[pulumi.Input['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']]:
|
132
|
+
"""
|
133
|
+
The details required to enable the specified Database Management feature.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "feature_details")
|
136
|
+
|
137
|
+
@feature_details.setter
|
138
|
+
def feature_details(self, value: Optional[pulumi.Input['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']]):
|
139
|
+
pulumi.set(self, "feature_details", value)
|
140
|
+
|
141
|
+
|
142
|
+
class ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement(pulumi.CustomResource):
|
143
|
+
@overload
|
144
|
+
def __init__(__self__,
|
145
|
+
resource_name: str,
|
146
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
147
|
+
enable_external_non_container_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
148
|
+
external_non_container_database_id: Optional[pulumi.Input[str]] = None,
|
149
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']]] = None,
|
150
|
+
__props__=None):
|
151
|
+
"""
|
152
|
+
This resource provides the Externalnoncontainerdatabase External Non Container Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
153
|
+
|
154
|
+
Enables Database Management feature for the specified external non-container 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[bool] enable_external_non_container_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
159
|
+
|
160
|
+
|
161
|
+
** IMPORTANT **
|
162
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
163
|
+
:param pulumi.Input[str] external_non_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database.
|
164
|
+
:param pulumi.Input[pulumi.InputType['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
|
165
|
+
"""
|
166
|
+
...
|
167
|
+
@overload
|
168
|
+
def __init__(__self__,
|
169
|
+
resource_name: str,
|
170
|
+
args: ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementArgs,
|
171
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
172
|
+
"""
|
173
|
+
This resource provides the Externalnoncontainerdatabase External Non Container Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
174
|
+
|
175
|
+
Enables Database Management feature for the specified external non-container database.
|
176
|
+
|
177
|
+
:param str resource_name: The name of the resource.
|
178
|
+
:param ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementArgs 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(ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementArgs, 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
|
+
enable_external_non_container_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
193
|
+
external_non_container_database_id: Optional[pulumi.Input[str]] = None,
|
194
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']]] = 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__ = ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementArgs.__new__(ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementArgs)
|
203
|
+
|
204
|
+
if enable_external_non_container_dbm_feature is None and not opts.urn:
|
205
|
+
raise TypeError("Missing required property 'enable_external_non_container_dbm_feature'")
|
206
|
+
__props__.__dict__["enable_external_non_container_dbm_feature"] = enable_external_non_container_dbm_feature
|
207
|
+
if external_non_container_database_id is None and not opts.urn:
|
208
|
+
raise TypeError("Missing required property 'external_non_container_database_id'")
|
209
|
+
__props__.__dict__["external_non_container_database_id"] = external_non_container_database_id
|
210
|
+
__props__.__dict__["feature_details"] = feature_details
|
211
|
+
super(ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement, __self__).__init__(
|
212
|
+
'oci:DatabaseManagement/externalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement:ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement',
|
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
|
+
enable_external_non_container_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
222
|
+
external_non_container_database_id: Optional[pulumi.Input[str]] = None,
|
223
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']]] = None) -> 'ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement':
|
224
|
+
"""
|
225
|
+
Get an existing ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement 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[bool] enable_external_non_container_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
232
|
+
|
233
|
+
|
234
|
+
** IMPORTANT **
|
235
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
236
|
+
:param pulumi.Input[str] external_non_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database.
|
237
|
+
:param pulumi.Input[pulumi.InputType['ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
|
238
|
+
"""
|
239
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
240
|
+
|
241
|
+
__props__ = _ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementState.__new__(_ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementState)
|
242
|
+
|
243
|
+
__props__.__dict__["enable_external_non_container_dbm_feature"] = enable_external_non_container_dbm_feature
|
244
|
+
__props__.__dict__["external_non_container_database_id"] = external_non_container_database_id
|
245
|
+
__props__.__dict__["feature_details"] = feature_details
|
246
|
+
return ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement(resource_name, opts=opts, __props__=__props__)
|
247
|
+
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="enableExternalNonContainerDbmFeature")
|
250
|
+
def enable_external_non_container_dbm_feature(self) -> pulumi.Output[bool]:
|
251
|
+
"""
|
252
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
253
|
+
|
254
|
+
|
255
|
+
** IMPORTANT **
|
256
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
257
|
+
"""
|
258
|
+
return pulumi.get(self, "enable_external_non_container_dbm_feature")
|
259
|
+
|
260
|
+
@property
|
261
|
+
@pulumi.getter(name="externalNonContainerDatabaseId")
|
262
|
+
def external_non_container_database_id(self) -> pulumi.Output[str]:
|
263
|
+
"""
|
264
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external non-container database.
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "external_non_container_database_id")
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="featureDetails")
|
270
|
+
def feature_details(self) -> pulumi.Output['outputs.ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetails']:
|
271
|
+
"""
|
272
|
+
The details required to enable the specified Database Management feature.
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "feature_details")
|
275
|
+
|
@@ -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__ = ['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs', 'ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
enable_external_pluggable_dbm_feature: pulumi.Input[bool],
|
20
|
+
external_pluggable_database_id: pulumi.Input[str],
|
21
|
+
feature_details: Optional[pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']] = None):
|
22
|
+
"""
|
23
|
+
The set of arguments for constructing a ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement resource.
|
24
|
+
:param pulumi.Input[bool] enable_external_pluggable_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
25
|
+
|
26
|
+
|
27
|
+
** IMPORTANT **
|
28
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
29
|
+
:param pulumi.Input[str] external_pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database.
|
30
|
+
:param pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
|
31
|
+
"""
|
32
|
+
pulumi.set(__self__, "enable_external_pluggable_dbm_feature", enable_external_pluggable_dbm_feature)
|
33
|
+
pulumi.set(__self__, "external_pluggable_database_id", external_pluggable_database_id)
|
34
|
+
if feature_details is not None:
|
35
|
+
pulumi.set(__self__, "feature_details", feature_details)
|
36
|
+
|
37
|
+
@property
|
38
|
+
@pulumi.getter(name="enableExternalPluggableDbmFeature")
|
39
|
+
def enable_external_pluggable_dbm_feature(self) -> pulumi.Input[bool]:
|
40
|
+
"""
|
41
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
42
|
+
|
43
|
+
|
44
|
+
** IMPORTANT **
|
45
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
46
|
+
"""
|
47
|
+
return pulumi.get(self, "enable_external_pluggable_dbm_feature")
|
48
|
+
|
49
|
+
@enable_external_pluggable_dbm_feature.setter
|
50
|
+
def enable_external_pluggable_dbm_feature(self, value: pulumi.Input[bool]):
|
51
|
+
pulumi.set(self, "enable_external_pluggable_dbm_feature", value)
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter(name="externalPluggableDatabaseId")
|
55
|
+
def external_pluggable_database_id(self) -> pulumi.Input[str]:
|
56
|
+
"""
|
57
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database.
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "external_pluggable_database_id")
|
60
|
+
|
61
|
+
@external_pluggable_database_id.setter
|
62
|
+
def external_pluggable_database_id(self, value: pulumi.Input[str]):
|
63
|
+
pulumi.set(self, "external_pluggable_database_id", value)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="featureDetails")
|
67
|
+
def feature_details(self) -> Optional[pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']]:
|
68
|
+
"""
|
69
|
+
The details required to enable the specified Database Management feature.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "feature_details")
|
72
|
+
|
73
|
+
@feature_details.setter
|
74
|
+
def feature_details(self, value: Optional[pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']]):
|
75
|
+
pulumi.set(self, "feature_details", value)
|
76
|
+
|
77
|
+
|
78
|
+
@pulumi.input_type
|
79
|
+
class _ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementState:
|
80
|
+
def __init__(__self__, *,
|
81
|
+
enable_external_pluggable_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
82
|
+
external_pluggable_database_id: Optional[pulumi.Input[str]] = None,
|
83
|
+
feature_details: Optional[pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']] = None):
|
84
|
+
"""
|
85
|
+
Input properties used for looking up and filtering ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement resources.
|
86
|
+
:param pulumi.Input[bool] enable_external_pluggable_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
87
|
+
|
88
|
+
|
89
|
+
** IMPORTANT **
|
90
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
91
|
+
:param pulumi.Input[str] external_pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database.
|
92
|
+
:param pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
|
93
|
+
"""
|
94
|
+
if enable_external_pluggable_dbm_feature is not None:
|
95
|
+
pulumi.set(__self__, "enable_external_pluggable_dbm_feature", enable_external_pluggable_dbm_feature)
|
96
|
+
if external_pluggable_database_id is not None:
|
97
|
+
pulumi.set(__self__, "external_pluggable_database_id", external_pluggable_database_id)
|
98
|
+
if feature_details is not None:
|
99
|
+
pulumi.set(__self__, "feature_details", feature_details)
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="enableExternalPluggableDbmFeature")
|
103
|
+
def enable_external_pluggable_dbm_feature(self) -> Optional[pulumi.Input[bool]]:
|
104
|
+
"""
|
105
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
106
|
+
|
107
|
+
|
108
|
+
** IMPORTANT **
|
109
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "enable_external_pluggable_dbm_feature")
|
112
|
+
|
113
|
+
@enable_external_pluggable_dbm_feature.setter
|
114
|
+
def enable_external_pluggable_dbm_feature(self, value: Optional[pulumi.Input[bool]]):
|
115
|
+
pulumi.set(self, "enable_external_pluggable_dbm_feature", value)
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="externalPluggableDatabaseId")
|
119
|
+
def external_pluggable_database_id(self) -> Optional[pulumi.Input[str]]:
|
120
|
+
"""
|
121
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "external_pluggable_database_id")
|
124
|
+
|
125
|
+
@external_pluggable_database_id.setter
|
126
|
+
def external_pluggable_database_id(self, value: Optional[pulumi.Input[str]]):
|
127
|
+
pulumi.set(self, "external_pluggable_database_id", value)
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="featureDetails")
|
131
|
+
def feature_details(self) -> Optional[pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']]:
|
132
|
+
"""
|
133
|
+
The details required to enable the specified Database Management feature.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "feature_details")
|
136
|
+
|
137
|
+
@feature_details.setter
|
138
|
+
def feature_details(self, value: Optional[pulumi.Input['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']]):
|
139
|
+
pulumi.set(self, "feature_details", value)
|
140
|
+
|
141
|
+
|
142
|
+
class ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(pulumi.CustomResource):
|
143
|
+
@overload
|
144
|
+
def __init__(__self__,
|
145
|
+
resource_name: str,
|
146
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
147
|
+
enable_external_pluggable_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
148
|
+
external_pluggable_database_id: Optional[pulumi.Input[str]] = None,
|
149
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']]] = None,
|
150
|
+
__props__=None):
|
151
|
+
"""
|
152
|
+
This resource provides the Externalpluggabledatabase External Pluggable Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
153
|
+
|
154
|
+
Enables a Database Management feature for the specified external pluggable 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[bool] enable_external_pluggable_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
159
|
+
|
160
|
+
|
161
|
+
** IMPORTANT **
|
162
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
163
|
+
:param pulumi.Input[str] external_pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database.
|
164
|
+
:param pulumi.Input[pulumi.InputType['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
|
165
|
+
"""
|
166
|
+
...
|
167
|
+
@overload
|
168
|
+
def __init__(__self__,
|
169
|
+
resource_name: str,
|
170
|
+
args: ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs,
|
171
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
172
|
+
"""
|
173
|
+
This resource provides the Externalpluggabledatabase External Pluggable Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
174
|
+
|
175
|
+
Enables a Database Management feature for the specified external pluggable database.
|
176
|
+
|
177
|
+
:param str resource_name: The name of the resource.
|
178
|
+
:param ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs 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(ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs, 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
|
+
enable_external_pluggable_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
193
|
+
external_pluggable_database_id: Optional[pulumi.Input[str]] = None,
|
194
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']]] = 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__ = ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs.__new__(ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementArgs)
|
203
|
+
|
204
|
+
if enable_external_pluggable_dbm_feature is None and not opts.urn:
|
205
|
+
raise TypeError("Missing required property 'enable_external_pluggable_dbm_feature'")
|
206
|
+
__props__.__dict__["enable_external_pluggable_dbm_feature"] = enable_external_pluggable_dbm_feature
|
207
|
+
if external_pluggable_database_id is None and not opts.urn:
|
208
|
+
raise TypeError("Missing required property 'external_pluggable_database_id'")
|
209
|
+
__props__.__dict__["external_pluggable_database_id"] = external_pluggable_database_id
|
210
|
+
__props__.__dict__["feature_details"] = feature_details
|
211
|
+
super(ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement, __self__).__init__(
|
212
|
+
'oci:DatabaseManagement/externalpluggabledatabaseExternalPluggableDbmFeaturesManagement:ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement',
|
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
|
+
enable_external_pluggable_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
222
|
+
external_pluggable_database_id: Optional[pulumi.Input[str]] = None,
|
223
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']]] = None) -> 'ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement':
|
224
|
+
"""
|
225
|
+
Get an existing ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement 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[bool] enable_external_pluggable_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
232
|
+
|
233
|
+
|
234
|
+
** IMPORTANT **
|
235
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
236
|
+
:param pulumi.Input[str] external_pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database.
|
237
|
+
:param pulumi.Input[pulumi.InputType['ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
|
238
|
+
"""
|
239
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
240
|
+
|
241
|
+
__props__ = _ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementState.__new__(_ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementState)
|
242
|
+
|
243
|
+
__props__.__dict__["enable_external_pluggable_dbm_feature"] = enable_external_pluggable_dbm_feature
|
244
|
+
__props__.__dict__["external_pluggable_database_id"] = external_pluggable_database_id
|
245
|
+
__props__.__dict__["feature_details"] = feature_details
|
246
|
+
return ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement(resource_name, opts=opts, __props__=__props__)
|
247
|
+
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="enableExternalPluggableDbmFeature")
|
250
|
+
def enable_external_pluggable_dbm_feature(self) -> pulumi.Output[bool]:
|
251
|
+
"""
|
252
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
253
|
+
|
254
|
+
|
255
|
+
** IMPORTANT **
|
256
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
257
|
+
"""
|
258
|
+
return pulumi.get(self, "enable_external_pluggable_dbm_feature")
|
259
|
+
|
260
|
+
@property
|
261
|
+
@pulumi.getter(name="externalPluggableDatabaseId")
|
262
|
+
def external_pluggable_database_id(self) -> pulumi.Output[str]:
|
263
|
+
"""
|
264
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external pluggable database.
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "external_pluggable_database_id")
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="featureDetails")
|
270
|
+
def feature_details(self) -> pulumi.Output['outputs.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetails']:
|
271
|
+
"""
|
272
|
+
The details required to enable the specified Database Management feature.
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "feature_details")
|
275
|
+
|
@@ -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, 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, 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)
|
@@ -58,6 +58,9 @@ class GetDbManagementPrivateEndpointResult:
|
|
58
58
|
if subnet_id and not isinstance(subnet_id, str):
|
59
59
|
raise TypeError("Expected argument 'subnet_id' to be a str")
|
60
60
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
61
|
+
if system_tags and not isinstance(system_tags, dict):
|
62
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
63
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
61
64
|
if time_created and not isinstance(time_created, str):
|
62
65
|
raise TypeError("Expected argument 'time_created' to be a str")
|
63
66
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -158,6 +161,14 @@ class GetDbManagementPrivateEndpointResult:
|
|
158
161
|
"""
|
159
162
|
return pulumi.get(self, "subnet_id")
|
160
163
|
|
164
|
+
@property
|
165
|
+
@pulumi.getter(name="systemTags")
|
166
|
+
def system_tags(self) -> Mapping[str, Any]:
|
167
|
+
"""
|
168
|
+
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"}`
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "system_tags")
|
171
|
+
|
161
172
|
@property
|
162
173
|
@pulumi.getter(name="timeCreated")
|
163
174
|
def time_created(self) -> str:
|
@@ -193,6 +204,7 @@ class AwaitableGetDbManagementPrivateEndpointResult(GetDbManagementPrivateEndpoi
|
|
193
204
|
private_ip=self.private_ip,
|
194
205
|
state=self.state,
|
195
206
|
subnet_id=self.subnet_id,
|
207
|
+
system_tags=self.system_tags,
|
196
208
|
time_created=self.time_created,
|
197
209
|
vcn_id=self.vcn_id)
|
198
210
|
|
@@ -234,6 +246,7 @@ def get_db_management_private_endpoint(db_management_private_endpoint_id: Option
|
|
234
246
|
private_ip=pulumi.get(__ret__, 'private_ip'),
|
235
247
|
state=pulumi.get(__ret__, 'state'),
|
236
248
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
249
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
237
250
|
time_created=pulumi.get(__ret__, 'time_created'),
|
238
251
|
vcn_id=pulumi.get(__ret__, 'vcn_id'))
|
239
252
|
|
@@ -22,7 +22,7 @@ class GetExternalAsmResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getExternalAsm.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, additional_details=None, compartment_id=None, component_name=None, defined_tags=None, display_name=None, external_asm_id=None, external_connector_id=None, external_db_system_id=None, freeform_tags=None, grid_home=None, id=None, is_cluster=None, is_flex_enabled=None, lifecycle_details=None, serviced_databases=None, state=None, time_created=None, time_updated=None, version=None):
|
25
|
+
def __init__(__self__, additional_details=None, compartment_id=None, component_name=None, defined_tags=None, display_name=None, external_asm_id=None, external_connector_id=None, external_db_system_id=None, freeform_tags=None, grid_home=None, id=None, is_cluster=None, is_flex_enabled=None, lifecycle_details=None, serviced_databases=None, state=None, system_tags=None, time_created=None, time_updated=None, version=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)
|
@@ -71,6 +71,9 @@ class GetExternalAsmResult:
|
|
71
71
|
if state and not isinstance(state, str):
|
72
72
|
raise TypeError("Expected argument 'state' to be a str")
|
73
73
|
pulumi.set(__self__, "state", state)
|
74
|
+
if system_tags and not isinstance(system_tags, dict):
|
75
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
76
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
74
77
|
if time_created and not isinstance(time_created, str):
|
75
78
|
raise TypeError("Expected argument 'time_created' to be a str")
|
76
79
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -206,6 +209,14 @@ class GetExternalAsmResult:
|
|
206
209
|
"""
|
207
210
|
return pulumi.get(self, "state")
|
208
211
|
|
212
|
+
@property
|
213
|
+
@pulumi.getter(name="systemTags")
|
214
|
+
def system_tags(self) -> Mapping[str, Any]:
|
215
|
+
"""
|
216
|
+
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"}`
|
217
|
+
"""
|
218
|
+
return pulumi.get(self, "system_tags")
|
219
|
+
|
209
220
|
@property
|
210
221
|
@pulumi.getter(name="timeCreated")
|
211
222
|
def time_created(self) -> str:
|
@@ -253,6 +264,7 @@ class AwaitableGetExternalAsmResult(GetExternalAsmResult):
|
|
253
264
|
lifecycle_details=self.lifecycle_details,
|
254
265
|
serviced_databases=self.serviced_databases,
|
255
266
|
state=self.state,
|
267
|
+
system_tags=self.system_tags,
|
256
268
|
time_created=self.time_created,
|
257
269
|
time_updated=self.time_updated,
|
258
270
|
version=self.version)
|
@@ -299,6 +311,7 @@ def get_external_asm(external_asm_id: Optional[str] = None,
|
|
299
311
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
300
312
|
serviced_databases=pulumi.get(__ret__, 'serviced_databases'),
|
301
313
|
state=pulumi.get(__ret__, 'state'),
|
314
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
302
315
|
time_created=pulumi.get(__ret__, 'time_created'),
|
303
316
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
304
317
|
version=pulumi.get(__ret__, 'version'))
|