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__ = ['PluggabledatabasePluggableDatabaseDbmFeaturesManagementArgs', 'PluggabledatabasePluggableDatabaseDbmFeaturesManagement']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class PluggabledatabasePluggableDatabaseDbmFeaturesManagementArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
enable_pluggable_database_dbm_feature: pulumi.Input[bool],
|
20
|
+
pluggable_database_id: pulumi.Input[str],
|
21
|
+
feature_details: Optional[pulumi.Input['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None):
|
22
|
+
"""
|
23
|
+
The set of arguments for constructing a PluggabledatabasePluggableDatabaseDbmFeaturesManagement resource.
|
24
|
+
:param pulumi.Input[bool] enable_pluggable_database_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] pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle cloud pluggable database.
|
30
|
+
:param pulumi.Input['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
|
31
|
+
"""
|
32
|
+
pulumi.set(__self__, "enable_pluggable_database_dbm_feature", enable_pluggable_database_dbm_feature)
|
33
|
+
pulumi.set(__self__, "pluggable_database_id", 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="enablePluggableDatabaseDbmFeature")
|
39
|
+
def enable_pluggable_database_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_pluggable_database_dbm_feature")
|
48
|
+
|
49
|
+
@enable_pluggable_database_dbm_feature.setter
|
50
|
+
def enable_pluggable_database_dbm_feature(self, value: pulumi.Input[bool]):
|
51
|
+
pulumi.set(self, "enable_pluggable_database_dbm_feature", value)
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter(name="pluggableDatabaseId")
|
55
|
+
def pluggable_database_id(self) -> pulumi.Input[str]:
|
56
|
+
"""
|
57
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle cloud pluggable database.
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "pluggable_database_id")
|
60
|
+
|
61
|
+
@pluggable_database_id.setter
|
62
|
+
def pluggable_database_id(self, value: pulumi.Input[str]):
|
63
|
+
pulumi.set(self, "pluggable_database_id", value)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="featureDetails")
|
67
|
+
def feature_details(self) -> Optional[pulumi.Input['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']]:
|
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['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']]):
|
75
|
+
pulumi.set(self, "feature_details", value)
|
76
|
+
|
77
|
+
|
78
|
+
@pulumi.input_type
|
79
|
+
class _PluggabledatabasePluggableDatabaseDbmFeaturesManagementState:
|
80
|
+
def __init__(__self__, *,
|
81
|
+
enable_pluggable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
82
|
+
feature_details: Optional[pulumi.Input['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None,
|
83
|
+
pluggable_database_id: Optional[pulumi.Input[str]] = None):
|
84
|
+
"""
|
85
|
+
Input properties used for looking up and filtering PluggabledatabasePluggableDatabaseDbmFeaturesManagement resources.
|
86
|
+
:param pulumi.Input[bool] enable_pluggable_database_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['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
|
92
|
+
:param pulumi.Input[str] pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle cloud pluggable database.
|
93
|
+
"""
|
94
|
+
if enable_pluggable_database_dbm_feature is not None:
|
95
|
+
pulumi.set(__self__, "enable_pluggable_database_dbm_feature", enable_pluggable_database_dbm_feature)
|
96
|
+
if feature_details is not None:
|
97
|
+
pulumi.set(__self__, "feature_details", feature_details)
|
98
|
+
if pluggable_database_id is not None:
|
99
|
+
pulumi.set(__self__, "pluggable_database_id", pluggable_database_id)
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="enablePluggableDatabaseDbmFeature")
|
103
|
+
def enable_pluggable_database_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_pluggable_database_dbm_feature")
|
112
|
+
|
113
|
+
@enable_pluggable_database_dbm_feature.setter
|
114
|
+
def enable_pluggable_database_dbm_feature(self, value: Optional[pulumi.Input[bool]]):
|
115
|
+
pulumi.set(self, "enable_pluggable_database_dbm_feature", value)
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="featureDetails")
|
119
|
+
def feature_details(self) -> Optional[pulumi.Input['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']]:
|
120
|
+
"""
|
121
|
+
The details required to enable the specified Database Management feature.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "feature_details")
|
124
|
+
|
125
|
+
@feature_details.setter
|
126
|
+
def feature_details(self, value: Optional[pulumi.Input['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']]):
|
127
|
+
pulumi.set(self, "feature_details", value)
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="pluggableDatabaseId")
|
131
|
+
def pluggable_database_id(self) -> Optional[pulumi.Input[str]]:
|
132
|
+
"""
|
133
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle cloud pluggable database.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "pluggable_database_id")
|
136
|
+
|
137
|
+
@pluggable_database_id.setter
|
138
|
+
def pluggable_database_id(self, value: Optional[pulumi.Input[str]]):
|
139
|
+
pulumi.set(self, "pluggable_database_id", value)
|
140
|
+
|
141
|
+
|
142
|
+
class PluggabledatabasePluggableDatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
143
|
+
@overload
|
144
|
+
def __init__(__self__,
|
145
|
+
resource_name: str,
|
146
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
147
|
+
enable_pluggable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
148
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']]] = None,
|
149
|
+
pluggable_database_id: Optional[pulumi.Input[str]] = None,
|
150
|
+
__props__=None):
|
151
|
+
"""
|
152
|
+
This resource provides the Pluggabledatabase Pluggable Database Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
153
|
+
|
154
|
+
Enables a Database Management feature for the specified Oracle cloud 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_pluggable_database_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[pulumi.InputType['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
|
164
|
+
:param pulumi.Input[str] pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle cloud pluggable database.
|
165
|
+
"""
|
166
|
+
...
|
167
|
+
@overload
|
168
|
+
def __init__(__self__,
|
169
|
+
resource_name: str,
|
170
|
+
args: PluggabledatabasePluggableDatabaseDbmFeaturesManagementArgs,
|
171
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
172
|
+
"""
|
173
|
+
This resource provides the Pluggabledatabase Pluggable Database Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
174
|
+
|
175
|
+
Enables a Database Management feature for the specified Oracle cloud pluggable database.
|
176
|
+
|
177
|
+
:param str resource_name: The name of the resource.
|
178
|
+
:param PluggabledatabasePluggableDatabaseDbmFeaturesManagementArgs 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(PluggabledatabasePluggableDatabaseDbmFeaturesManagementArgs, 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_pluggable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
193
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']]] = None,
|
194
|
+
pluggable_database_id: Optional[pulumi.Input[str]] = 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__ = PluggabledatabasePluggableDatabaseDbmFeaturesManagementArgs.__new__(PluggabledatabasePluggableDatabaseDbmFeaturesManagementArgs)
|
203
|
+
|
204
|
+
if enable_pluggable_database_dbm_feature is None and not opts.urn:
|
205
|
+
raise TypeError("Missing required property 'enable_pluggable_database_dbm_feature'")
|
206
|
+
__props__.__dict__["enable_pluggable_database_dbm_feature"] = enable_pluggable_database_dbm_feature
|
207
|
+
__props__.__dict__["feature_details"] = feature_details
|
208
|
+
if pluggable_database_id is None and not opts.urn:
|
209
|
+
raise TypeError("Missing required property 'pluggable_database_id'")
|
210
|
+
__props__.__dict__["pluggable_database_id"] = pluggable_database_id
|
211
|
+
super(PluggabledatabasePluggableDatabaseDbmFeaturesManagement, __self__).__init__(
|
212
|
+
'oci:DatabaseManagement/pluggabledatabasePluggableDatabaseDbmFeaturesManagement:PluggabledatabasePluggableDatabaseDbmFeaturesManagement',
|
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_pluggable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
222
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']]] = None,
|
223
|
+
pluggable_database_id: Optional[pulumi.Input[str]] = None) -> 'PluggabledatabasePluggableDatabaseDbmFeaturesManagement':
|
224
|
+
"""
|
225
|
+
Get an existing PluggabledatabasePluggableDatabaseDbmFeaturesManagement 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_pluggable_database_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[pulumi.InputType['PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
|
237
|
+
:param pulumi.Input[str] pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle cloud pluggable database.
|
238
|
+
"""
|
239
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
240
|
+
|
241
|
+
__props__ = _PluggabledatabasePluggableDatabaseDbmFeaturesManagementState.__new__(_PluggabledatabasePluggableDatabaseDbmFeaturesManagementState)
|
242
|
+
|
243
|
+
__props__.__dict__["enable_pluggable_database_dbm_feature"] = enable_pluggable_database_dbm_feature
|
244
|
+
__props__.__dict__["feature_details"] = feature_details
|
245
|
+
__props__.__dict__["pluggable_database_id"] = pluggable_database_id
|
246
|
+
return PluggabledatabasePluggableDatabaseDbmFeaturesManagement(resource_name, opts=opts, __props__=__props__)
|
247
|
+
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="enablePluggableDatabaseDbmFeature")
|
250
|
+
def enable_pluggable_database_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_pluggable_database_dbm_feature")
|
259
|
+
|
260
|
+
@property
|
261
|
+
@pulumi.getter(name="featureDetails")
|
262
|
+
def feature_details(self) -> pulumi.Output[Optional['outputs.PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetails']]:
|
263
|
+
"""
|
264
|
+
The details required to enable the specified Database Management feature.
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "feature_details")
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="pluggableDatabaseId")
|
270
|
+
def pluggable_database_id(self) -> pulumi.Output[str]:
|
271
|
+
"""
|
272
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle cloud pluggable database.
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "pluggable_database_id")
|
275
|
+
|
@@ -959,7 +959,11 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
959
959
|
secret_access_key: Optional[pulumi.Input[str]] = None):
|
960
960
|
"""
|
961
961
|
:param pulumi.Input[str] type: (Updatable) Migration type.
|
962
|
+
:param pulumi.Input[str] access_key_id: (Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
962
963
|
:param pulumi.Input[str] name: (Updatable) Name of directory object in database
|
964
|
+
:param pulumi.Input['MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs'] object_storage_bucket: (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
965
|
+
:param pulumi.Input[str] region: (Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
966
|
+
:param pulumi.Input[str] secret_access_key: (Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
963
967
|
"""
|
964
968
|
pulumi.set(__self__, "type", type)
|
965
969
|
if access_key_id is not None:
|
@@ -988,6 +992,9 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
988
992
|
@property
|
989
993
|
@pulumi.getter(name="accessKeyId")
|
990
994
|
def access_key_id(self) -> Optional[pulumi.Input[str]]:
|
995
|
+
"""
|
996
|
+
(Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
997
|
+
"""
|
991
998
|
return pulumi.get(self, "access_key_id")
|
992
999
|
|
993
1000
|
@access_key_id.setter
|
@@ -1009,6 +1016,9 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
1009
1016
|
@property
|
1010
1017
|
@pulumi.getter(name="objectStorageBucket")
|
1011
1018
|
def object_storage_bucket(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs']]:
|
1019
|
+
"""
|
1020
|
+
(Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
1021
|
+
"""
|
1012
1022
|
return pulumi.get(self, "object_storage_bucket")
|
1013
1023
|
|
1014
1024
|
@object_storage_bucket.setter
|
@@ -1018,6 +1028,9 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
1018
1028
|
@property
|
1019
1029
|
@pulumi.getter
|
1020
1030
|
def region(self) -> Optional[pulumi.Input[str]]:
|
1031
|
+
"""
|
1032
|
+
(Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
1033
|
+
"""
|
1021
1034
|
return pulumi.get(self, "region")
|
1022
1035
|
|
1023
1036
|
@region.setter
|
@@ -1027,6 +1040,9 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
1027
1040
|
@property
|
1028
1041
|
@pulumi.getter(name="secretAccessKey")
|
1029
1042
|
def secret_access_key(self) -> Optional[pulumi.Input[str]]:
|
1043
|
+
"""
|
1044
|
+
(Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
1045
|
+
"""
|
1030
1046
|
return pulumi.get(self, "secret_access_key")
|
1031
1047
|
|
1032
1048
|
@secret_access_key.setter
|
@@ -1398,6 +1414,7 @@ class MigrationDumpTransferDetailsArgs:
|
|
1398
1414
|
source: Optional[pulumi.Input['MigrationDumpTransferDetailsSourceArgs']] = None,
|
1399
1415
|
target: Optional[pulumi.Input['MigrationDumpTransferDetailsTargetArgs']] = None):
|
1400
1416
|
"""
|
1417
|
+
:param pulumi.Input[str] shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
|
1401
1418
|
:param pulumi.Input['MigrationDumpTransferDetailsSourceArgs'] source: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1402
1419
|
:param pulumi.Input['MigrationDumpTransferDetailsTargetArgs'] target: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1403
1420
|
"""
|
@@ -1411,6 +1428,9 @@ class MigrationDumpTransferDetailsArgs:
|
|
1411
1428
|
@property
|
1412
1429
|
@pulumi.getter(name="sharedStorageMountTargetId")
|
1413
1430
|
def shared_storage_mount_target_id(self) -> Optional[pulumi.Input[str]]:
|
1431
|
+
"""
|
1432
|
+
Optional OCID of the shared storage mount target.
|
1433
|
+
"""
|
1414
1434
|
return pulumi.get(self, "shared_storage_mount_target_id")
|
1415
1435
|
|
1416
1436
|
@shared_storage_mount_target_id.setter
|
@@ -45,6 +45,7 @@ class ConnectionArgs:
|
|
45
45
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
46
46
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
47
47
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
48
|
+
:param pulumi.Input[str] manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
48
49
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
49
50
|
:param pulumi.Input['ConnectionPrivateEndpointArgs'] private_endpoint: (Updatable) Oracle Cloud Infrastructure Private Endpoint configuration details. Not required for source container database connections, it will default to the specified Source Database Connection Private Endpoint.
|
50
51
|
:param pulumi.Input['ConnectionReplicationCredentialsArgs'] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -206,6 +207,9 @@ class ConnectionArgs:
|
|
206
207
|
@property
|
207
208
|
@pulumi.getter(name="manualDatabaseSubType")
|
208
209
|
def manual_database_sub_type(self) -> Optional[pulumi.Input[str]]:
|
210
|
+
"""
|
211
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
212
|
+
"""
|
209
213
|
return pulumi.get(self, "manual_database_sub_type")
|
210
214
|
|
211
215
|
@manual_database_sub_type.setter
|
@@ -324,6 +328,7 @@ class _ConnectionState:
|
|
324
328
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
325
329
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
326
330
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
331
|
+
:param pulumi.Input[str] manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
327
332
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
328
333
|
:param pulumi.Input['ConnectionPrivateEndpointArgs'] private_endpoint: (Updatable) Oracle Cloud Infrastructure Private Endpoint configuration details. Not required for source container database connections, it will default to the specified Source Database Connection Private Endpoint.
|
329
334
|
:param pulumi.Input['ConnectionReplicationCredentialsArgs'] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -518,6 +523,9 @@ class _ConnectionState:
|
|
518
523
|
@property
|
519
524
|
@pulumi.getter(name="manualDatabaseSubType")
|
520
525
|
def manual_database_sub_type(self) -> Optional[pulumi.Input[str]]:
|
526
|
+
"""
|
527
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
528
|
+
"""
|
521
529
|
return pulumi.get(self, "manual_database_sub_type")
|
522
530
|
|
523
531
|
@manual_database_sub_type.setter
|
@@ -758,6 +766,7 @@ class Connection(pulumi.CustomResource):
|
|
758
766
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
759
767
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
760
768
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
769
|
+
:param pulumi.Input[str] manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
761
770
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
762
771
|
:param pulumi.Input[pulumi.InputType['ConnectionPrivateEndpointArgs']] private_endpoint: (Updatable) Oracle Cloud Infrastructure Private Endpoint configuration details. Not required for source container database connections, it will default to the specified Source Database Connection Private Endpoint.
|
763
772
|
:param pulumi.Input[pulumi.InputType['ConnectionReplicationCredentialsArgs']] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -962,6 +971,7 @@ class Connection(pulumi.CustomResource):
|
|
962
971
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
963
972
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
964
973
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
974
|
+
:param pulumi.Input[str] manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
965
975
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
966
976
|
:param pulumi.Input[pulumi.InputType['ConnectionPrivateEndpointArgs']] private_endpoint: (Updatable) Oracle Cloud Infrastructure Private Endpoint configuration details. Not required for source container database connections, it will default to the specified Source Database Connection Private Endpoint.
|
967
977
|
:param pulumi.Input[pulumi.InputType['ConnectionReplicationCredentialsArgs']] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -1094,6 +1104,9 @@ class Connection(pulumi.CustomResource):
|
|
1094
1104
|
@property
|
1095
1105
|
@pulumi.getter(name="manualDatabaseSubType")
|
1096
1106
|
def manual_database_sub_type(self) -> pulumi.Output[str]:
|
1107
|
+
"""
|
1108
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
1109
|
+
"""
|
1097
1110
|
return pulumi.get(self, "manual_database_sub_type")
|
1098
1111
|
|
1099
1112
|
@property
|
@@ -203,6 +203,9 @@ class GetConnectionResult:
|
|
203
203
|
@property
|
204
204
|
@pulumi.getter(name="manualDatabaseSubType")
|
205
205
|
def manual_database_sub_type(self) -> str:
|
206
|
+
"""
|
207
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
208
|
+
"""
|
206
209
|
return pulumi.get(self, "manual_database_sub_type")
|
207
210
|
|
208
211
|
@property
|
@@ -165,6 +165,9 @@ class GetMigrationResult:
|
|
165
165
|
@property
|
166
166
|
@pulumi.getter(name="dataTransferMediumDetailsV2s")
|
167
167
|
def data_transfer_medium_details_v2s(self) -> Sequence['outputs.GetMigrationDataTransferMediumDetailsV2Result']:
|
168
|
+
"""
|
169
|
+
Optional additional properties for dump transfer in source or target host.
|
170
|
+
"""
|
168
171
|
return pulumi.get(self, "data_transfer_medium_details_v2s")
|
169
172
|
|
170
173
|
@property
|
@@ -46,6 +46,7 @@ class MigrationArgs:
|
|
46
46
|
:param pulumi.Input[str] agent_id: (Updatable) The OCID of the registered ODMS Agent. Only valid for Offline Logical Migrations.
|
47
47
|
:param pulumi.Input[str] csv_text: Database objects to exclude/include from migration in CSV format. The excludeObjects and includeObjects fields will be ignored if this field is not null.
|
48
48
|
:param pulumi.Input['MigrationDataTransferMediumDetailsArgs'] data_transfer_medium_details: (Updatable) Data Transfer Medium details for the Migration. If not specified, it will default to Database Link. Only one type of data transfer medium can be specified.
|
49
|
+
:param pulumi.Input['MigrationDataTransferMediumDetailsV2Args'] data_transfer_medium_details_v2: (Updatable) Optional additional properties for dump transfer in source or target host.
|
49
50
|
:param pulumi.Input['MigrationDatapumpSettingsArgs'] datapump_settings: (Updatable) Optional settings for Data Pump Export and Import jobs
|
50
51
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
51
52
|
:param pulumi.Input[str] display_name: (Updatable) Migration Display Name
|
@@ -194,6 +195,9 @@ class MigrationArgs:
|
|
194
195
|
@property
|
195
196
|
@pulumi.getter(name="dataTransferMediumDetailsV2")
|
196
197
|
def data_transfer_medium_details_v2(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsV2Args']]:
|
198
|
+
"""
|
199
|
+
(Updatable) Optional additional properties for dump transfer in source or target host.
|
200
|
+
"""
|
197
201
|
return pulumi.get(self, "data_transfer_medium_details_v2")
|
198
202
|
|
199
203
|
@data_transfer_medium_details_v2.setter
|
@@ -373,6 +377,7 @@ class _MigrationState:
|
|
373
377
|
:param pulumi.Input[str] credentials_secret_id: OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
|
374
378
|
:param pulumi.Input[str] csv_text: Database objects to exclude/include from migration in CSV format. The excludeObjects and includeObjects fields will be ignored if this field is not null.
|
375
379
|
:param pulumi.Input['MigrationDataTransferMediumDetailsArgs'] data_transfer_medium_details: (Updatable) Data Transfer Medium details for the Migration. If not specified, it will default to Database Link. Only one type of data transfer medium can be specified.
|
380
|
+
:param pulumi.Input['MigrationDataTransferMediumDetailsV2Args'] data_transfer_medium_details_v2: (Updatable) Optional additional properties for dump transfer in source or target host.
|
376
381
|
:param pulumi.Input['MigrationDatapumpSettingsArgs'] datapump_settings: (Updatable) Optional settings for Data Pump Export and Import jobs
|
377
382
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
378
383
|
:param pulumi.Input[str] display_name: (Updatable) Migration Display Name
|
@@ -530,6 +535,9 @@ class _MigrationState:
|
|
530
535
|
@property
|
531
536
|
@pulumi.getter(name="dataTransferMediumDetailsV2")
|
532
537
|
def data_transfer_medium_details_v2(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsV2Args']]:
|
538
|
+
"""
|
539
|
+
(Updatable) Optional additional properties for dump transfer in source or target host.
|
540
|
+
"""
|
533
541
|
return pulumi.get(self, "data_transfer_medium_details_v2")
|
534
542
|
|
535
543
|
@data_transfer_medium_details_v2.setter
|
@@ -1004,6 +1012,7 @@ class Migration(pulumi.CustomResource):
|
|
1004
1012
|
:param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment where the secret containing the credentials will be created.
|
1005
1013
|
:param pulumi.Input[str] csv_text: Database objects to exclude/include from migration in CSV format. The excludeObjects and includeObjects fields will be ignored if this field is not null.
|
1006
1014
|
:param pulumi.Input[pulumi.InputType['MigrationDataTransferMediumDetailsArgs']] data_transfer_medium_details: (Updatable) Data Transfer Medium details for the Migration. If not specified, it will default to Database Link. Only one type of data transfer medium can be specified.
|
1015
|
+
:param pulumi.Input[pulumi.InputType['MigrationDataTransferMediumDetailsV2Args']] data_transfer_medium_details_v2: (Updatable) Optional additional properties for dump transfer in source or target host.
|
1007
1016
|
:param pulumi.Input[pulumi.InputType['MigrationDatapumpSettingsArgs']] datapump_settings: (Updatable) Optional settings for Data Pump Export and Import jobs
|
1008
1017
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1009
1018
|
:param pulumi.Input[str] display_name: (Updatable) Migration Display Name
|
@@ -1328,6 +1337,7 @@ class Migration(pulumi.CustomResource):
|
|
1328
1337
|
:param pulumi.Input[str] credentials_secret_id: OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
|
1329
1338
|
:param pulumi.Input[str] csv_text: Database objects to exclude/include from migration in CSV format. The excludeObjects and includeObjects fields will be ignored if this field is not null.
|
1330
1339
|
:param pulumi.Input[pulumi.InputType['MigrationDataTransferMediumDetailsArgs']] data_transfer_medium_details: (Updatable) Data Transfer Medium details for the Migration. If not specified, it will default to Database Link. Only one type of data transfer medium can be specified.
|
1340
|
+
:param pulumi.Input[pulumi.InputType['MigrationDataTransferMediumDetailsV2Args']] data_transfer_medium_details_v2: (Updatable) Optional additional properties for dump transfer in source or target host.
|
1331
1341
|
:param pulumi.Input[pulumi.InputType['MigrationDatapumpSettingsArgs']] datapump_settings: (Updatable) Optional settings for Data Pump Export and Import jobs
|
1332
1342
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1333
1343
|
:param pulumi.Input[str] display_name: (Updatable) Migration Display Name
|
@@ -1437,6 +1447,9 @@ class Migration(pulumi.CustomResource):
|
|
1437
1447
|
@property
|
1438
1448
|
@pulumi.getter(name="dataTransferMediumDetailsV2")
|
1439
1449
|
def data_transfer_medium_details_v2(self) -> pulumi.Output['outputs.MigrationDataTransferMediumDetailsV2']:
|
1450
|
+
"""
|
1451
|
+
(Updatable) Optional additional properties for dump transfer in source or target host.
|
1452
|
+
"""
|
1440
1453
|
return pulumi.get(self, "data_transfer_medium_details_v2")
|
1441
1454
|
|
1442
1455
|
@property
|