pulumi-oci 2.20.0a1734503093__py3-none-any.whl → 2.21.0a1735021218__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 +16 -0
- pulumi_oci/bigdataservice/__init__.py +4 -0
- pulumi_oci/bigdataservice/_inputs.py +672 -6
- pulumi_oci/bigdataservice/bds_instance.py +169 -7
- pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
- pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
- pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
- pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
- pulumi_oci/bigdataservice/outputs.py +1466 -98
- pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
- pulumi_oci/blockchain/outputs.py +2 -2
- pulumi_oci/core/outputs.py +4 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +104 -0
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +22 -0
- pulumi_oci/datascience/_inputs.py +32 -12
- pulumi_oci/datascience/get_job_run.py +3 -3
- pulumi_oci/datascience/get_job_runs.py +2 -2
- pulumi_oci/datascience/job_run.py +7 -7
- pulumi_oci/datascience/model_deployment.py +2 -0
- pulumi_oci/datascience/outputs.py +62 -26
- pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
- pulumi_oci/goldengate/__init__.py +7 -0
- pulumi_oci/goldengate/_inputs.py +665 -0
- pulumi_oci/goldengate/connection.py +7 -7
- pulumi_oci/goldengate/get_pipeline.py +408 -0
- pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
- pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
- pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
- pulumi_oci/goldengate/get_pipelines.py +213 -0
- pulumi_oci/goldengate/get_recipes.py +188 -0
- pulumi_oci/goldengate/get_trail_files.py +4 -2
- pulumi_oci/goldengate/get_trail_sequences.py +4 -2
- pulumi_oci/goldengate/outputs.py +1500 -0
- pulumi_oci/goldengate/pipeline.py +928 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/_inputs.py +94 -14
- pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
- pulumi_oci/stackmonitoring/metric_extension.py +8 -0
- pulumi_oci/stackmonitoring/outputs.py +166 -24
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0a1735021218.dist-info}/METADATA +3 -3
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0a1735021218.dist-info}/RECORD +50 -39
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0a1735021218.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0a1735021218.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,928 @@
|
|
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 sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = ['PipelineArgs', 'Pipeline']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class PipelineArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
compartment_id: pulumi.Input[str],
|
25
|
+
display_name: pulumi.Input[str],
|
26
|
+
license_model: pulumi.Input[str],
|
27
|
+
recipe_type: pulumi.Input[str],
|
28
|
+
source_connection_details: pulumi.Input['PipelineSourceConnectionDetailsArgs'],
|
29
|
+
target_connection_details: pulumi.Input['PipelineTargetConnectionDetailsArgs'],
|
30
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
31
|
+
description: Optional[pulumi.Input[str]] = None,
|
32
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
33
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]]] = None,
|
34
|
+
process_options: Optional[pulumi.Input['PipelineProcessOptionsArgs']] = None):
|
35
|
+
"""
|
36
|
+
The set of arguments for constructing a Pipeline resource.
|
37
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
38
|
+
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
39
|
+
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
40
|
+
:param pulumi.Input[str] recipe_type: (Updatable) The type of the recipe
|
41
|
+
:param pulumi.Input['PipelineSourceConnectionDetailsArgs'] source_connection_details: The source connection details for creating a pipeline.
|
42
|
+
:param pulumi.Input['PipelineTargetConnectionDetailsArgs'] target_connection_details: The target connection details for creating a pipeline.
|
43
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
44
|
+
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
45
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
46
|
+
:param pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]] locks: Locks associated with this resource.
|
47
|
+
:param pulumi.Input['PipelineProcessOptionsArgs'] process_options: (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
|
48
|
+
"""
|
49
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
50
|
+
pulumi.set(__self__, "display_name", display_name)
|
51
|
+
pulumi.set(__self__, "license_model", license_model)
|
52
|
+
pulumi.set(__self__, "recipe_type", recipe_type)
|
53
|
+
pulumi.set(__self__, "source_connection_details", source_connection_details)
|
54
|
+
pulumi.set(__self__, "target_connection_details", target_connection_details)
|
55
|
+
if defined_tags is not None:
|
56
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
57
|
+
if description is not None:
|
58
|
+
pulumi.set(__self__, "description", description)
|
59
|
+
if freeform_tags is not None:
|
60
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
61
|
+
if locks is not None:
|
62
|
+
pulumi.set(__self__, "locks", locks)
|
63
|
+
if process_options is not None:
|
64
|
+
pulumi.set(__self__, "process_options", process_options)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="compartmentId")
|
68
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
69
|
+
"""
|
70
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
71
|
+
"""
|
72
|
+
return pulumi.get(self, "compartment_id")
|
73
|
+
|
74
|
+
@compartment_id.setter
|
75
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
76
|
+
pulumi.set(self, "compartment_id", value)
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="displayName")
|
80
|
+
def display_name(self) -> pulumi.Input[str]:
|
81
|
+
"""
|
82
|
+
(Updatable) An object's Display Name.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "display_name")
|
85
|
+
|
86
|
+
@display_name.setter
|
87
|
+
def display_name(self, value: pulumi.Input[str]):
|
88
|
+
pulumi.set(self, "display_name", value)
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter(name="licenseModel")
|
92
|
+
def license_model(self) -> pulumi.Input[str]:
|
93
|
+
"""
|
94
|
+
(Updatable) The Oracle license model that applies to a Deployment.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "license_model")
|
97
|
+
|
98
|
+
@license_model.setter
|
99
|
+
def license_model(self, value: pulumi.Input[str]):
|
100
|
+
pulumi.set(self, "license_model", value)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="recipeType")
|
104
|
+
def recipe_type(self) -> pulumi.Input[str]:
|
105
|
+
"""
|
106
|
+
(Updatable) The type of the recipe
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "recipe_type")
|
109
|
+
|
110
|
+
@recipe_type.setter
|
111
|
+
def recipe_type(self, value: pulumi.Input[str]):
|
112
|
+
pulumi.set(self, "recipe_type", value)
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter(name="sourceConnectionDetails")
|
116
|
+
def source_connection_details(self) -> pulumi.Input['PipelineSourceConnectionDetailsArgs']:
|
117
|
+
"""
|
118
|
+
The source connection details for creating a pipeline.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "source_connection_details")
|
121
|
+
|
122
|
+
@source_connection_details.setter
|
123
|
+
def source_connection_details(self, value: pulumi.Input['PipelineSourceConnectionDetailsArgs']):
|
124
|
+
pulumi.set(self, "source_connection_details", value)
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter(name="targetConnectionDetails")
|
128
|
+
def target_connection_details(self) -> pulumi.Input['PipelineTargetConnectionDetailsArgs']:
|
129
|
+
"""
|
130
|
+
The target connection details for creating a pipeline.
|
131
|
+
"""
|
132
|
+
return pulumi.get(self, "target_connection_details")
|
133
|
+
|
134
|
+
@target_connection_details.setter
|
135
|
+
def target_connection_details(self, value: pulumi.Input['PipelineTargetConnectionDetailsArgs']):
|
136
|
+
pulumi.set(self, "target_connection_details", value)
|
137
|
+
|
138
|
+
@property
|
139
|
+
@pulumi.getter(name="definedTags")
|
140
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
141
|
+
"""
|
142
|
+
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
143
|
+
"""
|
144
|
+
return pulumi.get(self, "defined_tags")
|
145
|
+
|
146
|
+
@defined_tags.setter
|
147
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
148
|
+
pulumi.set(self, "defined_tags", value)
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter
|
152
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
153
|
+
"""
|
154
|
+
(Updatable) Metadata about this specific object.
|
155
|
+
"""
|
156
|
+
return pulumi.get(self, "description")
|
157
|
+
|
158
|
+
@description.setter
|
159
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
160
|
+
pulumi.set(self, "description", value)
|
161
|
+
|
162
|
+
@property
|
163
|
+
@pulumi.getter(name="freeformTags")
|
164
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
165
|
+
"""
|
166
|
+
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
167
|
+
"""
|
168
|
+
return pulumi.get(self, "freeform_tags")
|
169
|
+
|
170
|
+
@freeform_tags.setter
|
171
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
172
|
+
pulumi.set(self, "freeform_tags", value)
|
173
|
+
|
174
|
+
@property
|
175
|
+
@pulumi.getter
|
176
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]]]:
|
177
|
+
"""
|
178
|
+
Locks associated with this resource.
|
179
|
+
"""
|
180
|
+
return pulumi.get(self, "locks")
|
181
|
+
|
182
|
+
@locks.setter
|
183
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]]]):
|
184
|
+
pulumi.set(self, "locks", value)
|
185
|
+
|
186
|
+
@property
|
187
|
+
@pulumi.getter(name="processOptions")
|
188
|
+
def process_options(self) -> Optional[pulumi.Input['PipelineProcessOptionsArgs']]:
|
189
|
+
"""
|
190
|
+
(Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "process_options")
|
193
|
+
|
194
|
+
@process_options.setter
|
195
|
+
def process_options(self, value: Optional[pulumi.Input['PipelineProcessOptionsArgs']]):
|
196
|
+
pulumi.set(self, "process_options", value)
|
197
|
+
|
198
|
+
|
199
|
+
@pulumi.input_type
|
200
|
+
class _PipelineState:
|
201
|
+
def __init__(__self__, *,
|
202
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
203
|
+
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
204
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
205
|
+
description: Optional[pulumi.Input[str]] = None,
|
206
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
207
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
208
|
+
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
209
|
+
license_model: Optional[pulumi.Input[str]] = None,
|
210
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
211
|
+
lifecycle_sub_state: Optional[pulumi.Input[str]] = None,
|
212
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]]] = None,
|
213
|
+
mapping_rules: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineMappingRuleArgs']]]] = None,
|
214
|
+
process_options: Optional[pulumi.Input['PipelineProcessOptionsArgs']] = None,
|
215
|
+
recipe_type: Optional[pulumi.Input[str]] = None,
|
216
|
+
source_connection_details: Optional[pulumi.Input['PipelineSourceConnectionDetailsArgs']] = None,
|
217
|
+
state: Optional[pulumi.Input[str]] = None,
|
218
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
219
|
+
target_connection_details: Optional[pulumi.Input['PipelineTargetConnectionDetailsArgs']] = None,
|
220
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
221
|
+
time_last_recorded: Optional[pulumi.Input[str]] = None,
|
222
|
+
time_updated: Optional[pulumi.Input[str]] = None):
|
223
|
+
"""
|
224
|
+
Input properties used for looking up and filtering Pipeline resources.
|
225
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
226
|
+
:param pulumi.Input[int] cpu_core_count: The Minimum number of OCPUs to be made available for this Deployment.
|
227
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
228
|
+
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
229
|
+
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
230
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
231
|
+
:param pulumi.Input[bool] is_auto_scaling_enabled: Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
232
|
+
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
233
|
+
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
234
|
+
:param pulumi.Input[str] lifecycle_sub_state: Possible lifecycle substates when retrieving a pipeline.
|
235
|
+
:param pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]] locks: Locks associated with this resource.
|
236
|
+
:param pulumi.Input[Sequence[pulumi.Input['PipelineMappingRuleArgs']]] mapping_rules: Mapping for source/target schema/tables for the pipeline data replication.
|
237
|
+
:param pulumi.Input['PipelineProcessOptionsArgs'] process_options: (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
|
238
|
+
:param pulumi.Input[str] recipe_type: (Updatable) The type of the recipe
|
239
|
+
:param pulumi.Input['PipelineSourceConnectionDetailsArgs'] source_connection_details: The source connection details for creating a pipeline.
|
240
|
+
:param pulumi.Input[str] state: Lifecycle state of the pipeline.
|
241
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
242
|
+
:param pulumi.Input['PipelineTargetConnectionDetailsArgs'] target_connection_details: The target connection details for creating a pipeline.
|
243
|
+
:param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
244
|
+
:param pulumi.Input[str] time_last_recorded: When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
|
245
|
+
:param pulumi.Input[str] time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
246
|
+
"""
|
247
|
+
if compartment_id is not None:
|
248
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
249
|
+
if cpu_core_count is not None:
|
250
|
+
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
251
|
+
if defined_tags is not None:
|
252
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
253
|
+
if description is not None:
|
254
|
+
pulumi.set(__self__, "description", description)
|
255
|
+
if display_name is not None:
|
256
|
+
pulumi.set(__self__, "display_name", display_name)
|
257
|
+
if freeform_tags is not None:
|
258
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
259
|
+
if is_auto_scaling_enabled is not None:
|
260
|
+
pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
|
261
|
+
if license_model is not None:
|
262
|
+
pulumi.set(__self__, "license_model", license_model)
|
263
|
+
if lifecycle_details is not None:
|
264
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
265
|
+
if lifecycle_sub_state is not None:
|
266
|
+
pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
|
267
|
+
if locks is not None:
|
268
|
+
pulumi.set(__self__, "locks", locks)
|
269
|
+
if mapping_rules is not None:
|
270
|
+
pulumi.set(__self__, "mapping_rules", mapping_rules)
|
271
|
+
if process_options is not None:
|
272
|
+
pulumi.set(__self__, "process_options", process_options)
|
273
|
+
if recipe_type is not None:
|
274
|
+
pulumi.set(__self__, "recipe_type", recipe_type)
|
275
|
+
if source_connection_details is not None:
|
276
|
+
pulumi.set(__self__, "source_connection_details", source_connection_details)
|
277
|
+
if state is not None:
|
278
|
+
pulumi.set(__self__, "state", state)
|
279
|
+
if system_tags is not None:
|
280
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
281
|
+
if target_connection_details is not None:
|
282
|
+
pulumi.set(__self__, "target_connection_details", target_connection_details)
|
283
|
+
if time_created is not None:
|
284
|
+
pulumi.set(__self__, "time_created", time_created)
|
285
|
+
if time_last_recorded is not None:
|
286
|
+
pulumi.set(__self__, "time_last_recorded", time_last_recorded)
|
287
|
+
if time_updated is not None:
|
288
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
289
|
+
|
290
|
+
@property
|
291
|
+
@pulumi.getter(name="compartmentId")
|
292
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
293
|
+
"""
|
294
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "compartment_id")
|
297
|
+
|
298
|
+
@compartment_id.setter
|
299
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
300
|
+
pulumi.set(self, "compartment_id", value)
|
301
|
+
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="cpuCoreCount")
|
304
|
+
def cpu_core_count(self) -> Optional[pulumi.Input[int]]:
|
305
|
+
"""
|
306
|
+
The Minimum number of OCPUs to be made available for this Deployment.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "cpu_core_count")
|
309
|
+
|
310
|
+
@cpu_core_count.setter
|
311
|
+
def cpu_core_count(self, value: Optional[pulumi.Input[int]]):
|
312
|
+
pulumi.set(self, "cpu_core_count", value)
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter(name="definedTags")
|
316
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
317
|
+
"""
|
318
|
+
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
319
|
+
"""
|
320
|
+
return pulumi.get(self, "defined_tags")
|
321
|
+
|
322
|
+
@defined_tags.setter
|
323
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
324
|
+
pulumi.set(self, "defined_tags", value)
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter
|
328
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
329
|
+
"""
|
330
|
+
(Updatable) Metadata about this specific object.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "description")
|
333
|
+
|
334
|
+
@description.setter
|
335
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
336
|
+
pulumi.set(self, "description", value)
|
337
|
+
|
338
|
+
@property
|
339
|
+
@pulumi.getter(name="displayName")
|
340
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
341
|
+
"""
|
342
|
+
(Updatable) An object's Display Name.
|
343
|
+
"""
|
344
|
+
return pulumi.get(self, "display_name")
|
345
|
+
|
346
|
+
@display_name.setter
|
347
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
348
|
+
pulumi.set(self, "display_name", value)
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter(name="freeformTags")
|
352
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
353
|
+
"""
|
354
|
+
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "freeform_tags")
|
357
|
+
|
358
|
+
@freeform_tags.setter
|
359
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
360
|
+
pulumi.set(self, "freeform_tags", value)
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter(name="isAutoScalingEnabled")
|
364
|
+
def is_auto_scaling_enabled(self) -> Optional[pulumi.Input[bool]]:
|
365
|
+
"""
|
366
|
+
Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
367
|
+
"""
|
368
|
+
return pulumi.get(self, "is_auto_scaling_enabled")
|
369
|
+
|
370
|
+
@is_auto_scaling_enabled.setter
|
371
|
+
def is_auto_scaling_enabled(self, value: Optional[pulumi.Input[bool]]):
|
372
|
+
pulumi.set(self, "is_auto_scaling_enabled", value)
|
373
|
+
|
374
|
+
@property
|
375
|
+
@pulumi.getter(name="licenseModel")
|
376
|
+
def license_model(self) -> Optional[pulumi.Input[str]]:
|
377
|
+
"""
|
378
|
+
(Updatable) The Oracle license model that applies to a Deployment.
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "license_model")
|
381
|
+
|
382
|
+
@license_model.setter
|
383
|
+
def license_model(self, value: Optional[pulumi.Input[str]]):
|
384
|
+
pulumi.set(self, "license_model", value)
|
385
|
+
|
386
|
+
@property
|
387
|
+
@pulumi.getter(name="lifecycleDetails")
|
388
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
389
|
+
"""
|
390
|
+
Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
391
|
+
"""
|
392
|
+
return pulumi.get(self, "lifecycle_details")
|
393
|
+
|
394
|
+
@lifecycle_details.setter
|
395
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
396
|
+
pulumi.set(self, "lifecycle_details", value)
|
397
|
+
|
398
|
+
@property
|
399
|
+
@pulumi.getter(name="lifecycleSubState")
|
400
|
+
def lifecycle_sub_state(self) -> Optional[pulumi.Input[str]]:
|
401
|
+
"""
|
402
|
+
Possible lifecycle substates when retrieving a pipeline.
|
403
|
+
"""
|
404
|
+
return pulumi.get(self, "lifecycle_sub_state")
|
405
|
+
|
406
|
+
@lifecycle_sub_state.setter
|
407
|
+
def lifecycle_sub_state(self, value: Optional[pulumi.Input[str]]):
|
408
|
+
pulumi.set(self, "lifecycle_sub_state", value)
|
409
|
+
|
410
|
+
@property
|
411
|
+
@pulumi.getter
|
412
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]]]:
|
413
|
+
"""
|
414
|
+
Locks associated with this resource.
|
415
|
+
"""
|
416
|
+
return pulumi.get(self, "locks")
|
417
|
+
|
418
|
+
@locks.setter
|
419
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineLockArgs']]]]):
|
420
|
+
pulumi.set(self, "locks", value)
|
421
|
+
|
422
|
+
@property
|
423
|
+
@pulumi.getter(name="mappingRules")
|
424
|
+
def mapping_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PipelineMappingRuleArgs']]]]:
|
425
|
+
"""
|
426
|
+
Mapping for source/target schema/tables for the pipeline data replication.
|
427
|
+
"""
|
428
|
+
return pulumi.get(self, "mapping_rules")
|
429
|
+
|
430
|
+
@mapping_rules.setter
|
431
|
+
def mapping_rules(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineMappingRuleArgs']]]]):
|
432
|
+
pulumi.set(self, "mapping_rules", value)
|
433
|
+
|
434
|
+
@property
|
435
|
+
@pulumi.getter(name="processOptions")
|
436
|
+
def process_options(self) -> Optional[pulumi.Input['PipelineProcessOptionsArgs']]:
|
437
|
+
"""
|
438
|
+
(Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
|
439
|
+
"""
|
440
|
+
return pulumi.get(self, "process_options")
|
441
|
+
|
442
|
+
@process_options.setter
|
443
|
+
def process_options(self, value: Optional[pulumi.Input['PipelineProcessOptionsArgs']]):
|
444
|
+
pulumi.set(self, "process_options", value)
|
445
|
+
|
446
|
+
@property
|
447
|
+
@pulumi.getter(name="recipeType")
|
448
|
+
def recipe_type(self) -> Optional[pulumi.Input[str]]:
|
449
|
+
"""
|
450
|
+
(Updatable) The type of the recipe
|
451
|
+
"""
|
452
|
+
return pulumi.get(self, "recipe_type")
|
453
|
+
|
454
|
+
@recipe_type.setter
|
455
|
+
def recipe_type(self, value: Optional[pulumi.Input[str]]):
|
456
|
+
pulumi.set(self, "recipe_type", value)
|
457
|
+
|
458
|
+
@property
|
459
|
+
@pulumi.getter(name="sourceConnectionDetails")
|
460
|
+
def source_connection_details(self) -> Optional[pulumi.Input['PipelineSourceConnectionDetailsArgs']]:
|
461
|
+
"""
|
462
|
+
The source connection details for creating a pipeline.
|
463
|
+
"""
|
464
|
+
return pulumi.get(self, "source_connection_details")
|
465
|
+
|
466
|
+
@source_connection_details.setter
|
467
|
+
def source_connection_details(self, value: Optional[pulumi.Input['PipelineSourceConnectionDetailsArgs']]):
|
468
|
+
pulumi.set(self, "source_connection_details", value)
|
469
|
+
|
470
|
+
@property
|
471
|
+
@pulumi.getter
|
472
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
473
|
+
"""
|
474
|
+
Lifecycle state of the pipeline.
|
475
|
+
"""
|
476
|
+
return pulumi.get(self, "state")
|
477
|
+
|
478
|
+
@state.setter
|
479
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
480
|
+
pulumi.set(self, "state", value)
|
481
|
+
|
482
|
+
@property
|
483
|
+
@pulumi.getter(name="systemTags")
|
484
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
485
|
+
"""
|
486
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
487
|
+
"""
|
488
|
+
return pulumi.get(self, "system_tags")
|
489
|
+
|
490
|
+
@system_tags.setter
|
491
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
492
|
+
pulumi.set(self, "system_tags", value)
|
493
|
+
|
494
|
+
@property
|
495
|
+
@pulumi.getter(name="targetConnectionDetails")
|
496
|
+
def target_connection_details(self) -> Optional[pulumi.Input['PipelineTargetConnectionDetailsArgs']]:
|
497
|
+
"""
|
498
|
+
The target connection details for creating a pipeline.
|
499
|
+
"""
|
500
|
+
return pulumi.get(self, "target_connection_details")
|
501
|
+
|
502
|
+
@target_connection_details.setter
|
503
|
+
def target_connection_details(self, value: Optional[pulumi.Input['PipelineTargetConnectionDetailsArgs']]):
|
504
|
+
pulumi.set(self, "target_connection_details", value)
|
505
|
+
|
506
|
+
@property
|
507
|
+
@pulumi.getter(name="timeCreated")
|
508
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
509
|
+
"""
|
510
|
+
The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
511
|
+
"""
|
512
|
+
return pulumi.get(self, "time_created")
|
513
|
+
|
514
|
+
@time_created.setter
|
515
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
516
|
+
pulumi.set(self, "time_created", value)
|
517
|
+
|
518
|
+
@property
|
519
|
+
@pulumi.getter(name="timeLastRecorded")
|
520
|
+
def time_last_recorded(self) -> Optional[pulumi.Input[str]]:
|
521
|
+
"""
|
522
|
+
When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
|
523
|
+
"""
|
524
|
+
return pulumi.get(self, "time_last_recorded")
|
525
|
+
|
526
|
+
@time_last_recorded.setter
|
527
|
+
def time_last_recorded(self, value: Optional[pulumi.Input[str]]):
|
528
|
+
pulumi.set(self, "time_last_recorded", value)
|
529
|
+
|
530
|
+
@property
|
531
|
+
@pulumi.getter(name="timeUpdated")
|
532
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
533
|
+
"""
|
534
|
+
The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
535
|
+
"""
|
536
|
+
return pulumi.get(self, "time_updated")
|
537
|
+
|
538
|
+
@time_updated.setter
|
539
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
540
|
+
pulumi.set(self, "time_updated", value)
|
541
|
+
|
542
|
+
|
543
|
+
class Pipeline(pulumi.CustomResource):
|
544
|
+
@overload
|
545
|
+
def __init__(__self__,
|
546
|
+
resource_name: str,
|
547
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
548
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
549
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
550
|
+
description: Optional[pulumi.Input[str]] = None,
|
551
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
552
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
553
|
+
license_model: Optional[pulumi.Input[str]] = None,
|
554
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineLockArgs', 'PipelineLockArgsDict']]]]] = None,
|
555
|
+
process_options: Optional[pulumi.Input[Union['PipelineProcessOptionsArgs', 'PipelineProcessOptionsArgsDict']]] = None,
|
556
|
+
recipe_type: Optional[pulumi.Input[str]] = None,
|
557
|
+
source_connection_details: Optional[pulumi.Input[Union['PipelineSourceConnectionDetailsArgs', 'PipelineSourceConnectionDetailsArgsDict']]] = None,
|
558
|
+
target_connection_details: Optional[pulumi.Input[Union['PipelineTargetConnectionDetailsArgs', 'PipelineTargetConnectionDetailsArgsDict']]] = None,
|
559
|
+
__props__=None):
|
560
|
+
"""
|
561
|
+
This resource provides the Pipeline resource in Oracle Cloud Infrastructure Golden Gate service.
|
562
|
+
|
563
|
+
Creates a new Pipeline.
|
564
|
+
|
565
|
+
## Import
|
566
|
+
|
567
|
+
Pipelines can be imported using the `id`, e.g.
|
568
|
+
|
569
|
+
```sh
|
570
|
+
$ pulumi import oci:GoldenGate/pipeline:Pipeline test_pipeline "id"
|
571
|
+
```
|
572
|
+
|
573
|
+
:param str resource_name: The name of the resource.
|
574
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
575
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
576
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
577
|
+
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
578
|
+
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
579
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
580
|
+
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
581
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelineLockArgs', 'PipelineLockArgsDict']]]] locks: Locks associated with this resource.
|
582
|
+
:param pulumi.Input[Union['PipelineProcessOptionsArgs', 'PipelineProcessOptionsArgsDict']] process_options: (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
|
583
|
+
:param pulumi.Input[str] recipe_type: (Updatable) The type of the recipe
|
584
|
+
:param pulumi.Input[Union['PipelineSourceConnectionDetailsArgs', 'PipelineSourceConnectionDetailsArgsDict']] source_connection_details: The source connection details for creating a pipeline.
|
585
|
+
:param pulumi.Input[Union['PipelineTargetConnectionDetailsArgs', 'PipelineTargetConnectionDetailsArgsDict']] target_connection_details: The target connection details for creating a pipeline.
|
586
|
+
"""
|
587
|
+
...
|
588
|
+
@overload
|
589
|
+
def __init__(__self__,
|
590
|
+
resource_name: str,
|
591
|
+
args: PipelineArgs,
|
592
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
593
|
+
"""
|
594
|
+
This resource provides the Pipeline resource in Oracle Cloud Infrastructure Golden Gate service.
|
595
|
+
|
596
|
+
Creates a new Pipeline.
|
597
|
+
|
598
|
+
## Import
|
599
|
+
|
600
|
+
Pipelines can be imported using the `id`, e.g.
|
601
|
+
|
602
|
+
```sh
|
603
|
+
$ pulumi import oci:GoldenGate/pipeline:Pipeline test_pipeline "id"
|
604
|
+
```
|
605
|
+
|
606
|
+
:param str resource_name: The name of the resource.
|
607
|
+
:param PipelineArgs args: The arguments to use to populate this resource's properties.
|
608
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
609
|
+
"""
|
610
|
+
...
|
611
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
612
|
+
resource_args, opts = _utilities.get_resource_args_opts(PipelineArgs, pulumi.ResourceOptions, *args, **kwargs)
|
613
|
+
if resource_args is not None:
|
614
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
615
|
+
else:
|
616
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
617
|
+
|
618
|
+
def _internal_init(__self__,
|
619
|
+
resource_name: str,
|
620
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
621
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
622
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
623
|
+
description: Optional[pulumi.Input[str]] = None,
|
624
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
625
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
626
|
+
license_model: Optional[pulumi.Input[str]] = None,
|
627
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineLockArgs', 'PipelineLockArgsDict']]]]] = None,
|
628
|
+
process_options: Optional[pulumi.Input[Union['PipelineProcessOptionsArgs', 'PipelineProcessOptionsArgsDict']]] = None,
|
629
|
+
recipe_type: Optional[pulumi.Input[str]] = None,
|
630
|
+
source_connection_details: Optional[pulumi.Input[Union['PipelineSourceConnectionDetailsArgs', 'PipelineSourceConnectionDetailsArgsDict']]] = None,
|
631
|
+
target_connection_details: Optional[pulumi.Input[Union['PipelineTargetConnectionDetailsArgs', 'PipelineTargetConnectionDetailsArgsDict']]] = None,
|
632
|
+
__props__=None):
|
633
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
634
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
635
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
636
|
+
if opts.id is None:
|
637
|
+
if __props__ is not None:
|
638
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
639
|
+
__props__ = PipelineArgs.__new__(PipelineArgs)
|
640
|
+
|
641
|
+
if compartment_id is None and not opts.urn:
|
642
|
+
raise TypeError("Missing required property 'compartment_id'")
|
643
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
644
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
645
|
+
__props__.__dict__["description"] = description
|
646
|
+
if display_name is None and not opts.urn:
|
647
|
+
raise TypeError("Missing required property 'display_name'")
|
648
|
+
__props__.__dict__["display_name"] = display_name
|
649
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
650
|
+
if license_model is None and not opts.urn:
|
651
|
+
raise TypeError("Missing required property 'license_model'")
|
652
|
+
__props__.__dict__["license_model"] = license_model
|
653
|
+
__props__.__dict__["locks"] = locks
|
654
|
+
__props__.__dict__["process_options"] = process_options
|
655
|
+
if recipe_type is None and not opts.urn:
|
656
|
+
raise TypeError("Missing required property 'recipe_type'")
|
657
|
+
__props__.__dict__["recipe_type"] = recipe_type
|
658
|
+
if source_connection_details is None and not opts.urn:
|
659
|
+
raise TypeError("Missing required property 'source_connection_details'")
|
660
|
+
__props__.__dict__["source_connection_details"] = source_connection_details
|
661
|
+
if target_connection_details is None and not opts.urn:
|
662
|
+
raise TypeError("Missing required property 'target_connection_details'")
|
663
|
+
__props__.__dict__["target_connection_details"] = target_connection_details
|
664
|
+
__props__.__dict__["cpu_core_count"] = None
|
665
|
+
__props__.__dict__["is_auto_scaling_enabled"] = None
|
666
|
+
__props__.__dict__["lifecycle_details"] = None
|
667
|
+
__props__.__dict__["lifecycle_sub_state"] = None
|
668
|
+
__props__.__dict__["mapping_rules"] = None
|
669
|
+
__props__.__dict__["state"] = None
|
670
|
+
__props__.__dict__["system_tags"] = None
|
671
|
+
__props__.__dict__["time_created"] = None
|
672
|
+
__props__.__dict__["time_last_recorded"] = None
|
673
|
+
__props__.__dict__["time_updated"] = None
|
674
|
+
super(Pipeline, __self__).__init__(
|
675
|
+
'oci:GoldenGate/pipeline:Pipeline',
|
676
|
+
resource_name,
|
677
|
+
__props__,
|
678
|
+
opts)
|
679
|
+
|
680
|
+
@staticmethod
|
681
|
+
def get(resource_name: str,
|
682
|
+
id: pulumi.Input[str],
|
683
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
684
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
685
|
+
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
686
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
687
|
+
description: Optional[pulumi.Input[str]] = None,
|
688
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
689
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
690
|
+
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
691
|
+
license_model: Optional[pulumi.Input[str]] = None,
|
692
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
693
|
+
lifecycle_sub_state: Optional[pulumi.Input[str]] = None,
|
694
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineLockArgs', 'PipelineLockArgsDict']]]]] = None,
|
695
|
+
mapping_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineMappingRuleArgs', 'PipelineMappingRuleArgsDict']]]]] = None,
|
696
|
+
process_options: Optional[pulumi.Input[Union['PipelineProcessOptionsArgs', 'PipelineProcessOptionsArgsDict']]] = None,
|
697
|
+
recipe_type: Optional[pulumi.Input[str]] = None,
|
698
|
+
source_connection_details: Optional[pulumi.Input[Union['PipelineSourceConnectionDetailsArgs', 'PipelineSourceConnectionDetailsArgsDict']]] = None,
|
699
|
+
state: Optional[pulumi.Input[str]] = None,
|
700
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
701
|
+
target_connection_details: Optional[pulumi.Input[Union['PipelineTargetConnectionDetailsArgs', 'PipelineTargetConnectionDetailsArgsDict']]] = None,
|
702
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
703
|
+
time_last_recorded: Optional[pulumi.Input[str]] = None,
|
704
|
+
time_updated: Optional[pulumi.Input[str]] = None) -> 'Pipeline':
|
705
|
+
"""
|
706
|
+
Get an existing Pipeline resource's state with the given name, id, and optional extra
|
707
|
+
properties used to qualify the lookup.
|
708
|
+
|
709
|
+
:param str resource_name: The unique name of the resulting resource.
|
710
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
711
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
712
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
713
|
+
:param pulumi.Input[int] cpu_core_count: The Minimum number of OCPUs to be made available for this Deployment.
|
714
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
715
|
+
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
716
|
+
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
717
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
718
|
+
:param pulumi.Input[bool] is_auto_scaling_enabled: Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
719
|
+
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
720
|
+
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
721
|
+
:param pulumi.Input[str] lifecycle_sub_state: Possible lifecycle substates when retrieving a pipeline.
|
722
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelineLockArgs', 'PipelineLockArgsDict']]]] locks: Locks associated with this resource.
|
723
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelineMappingRuleArgs', 'PipelineMappingRuleArgsDict']]]] mapping_rules: Mapping for source/target schema/tables for the pipeline data replication.
|
724
|
+
:param pulumi.Input[Union['PipelineProcessOptionsArgs', 'PipelineProcessOptionsArgsDict']] process_options: (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
|
725
|
+
:param pulumi.Input[str] recipe_type: (Updatable) The type of the recipe
|
726
|
+
:param pulumi.Input[Union['PipelineSourceConnectionDetailsArgs', 'PipelineSourceConnectionDetailsArgsDict']] source_connection_details: The source connection details for creating a pipeline.
|
727
|
+
:param pulumi.Input[str] state: Lifecycle state of the pipeline.
|
728
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
729
|
+
:param pulumi.Input[Union['PipelineTargetConnectionDetailsArgs', 'PipelineTargetConnectionDetailsArgsDict']] target_connection_details: The target connection details for creating a pipeline.
|
730
|
+
:param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
731
|
+
:param pulumi.Input[str] time_last_recorded: When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
|
732
|
+
:param pulumi.Input[str] time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
733
|
+
"""
|
734
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
735
|
+
|
736
|
+
__props__ = _PipelineState.__new__(_PipelineState)
|
737
|
+
|
738
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
739
|
+
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
740
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
741
|
+
__props__.__dict__["description"] = description
|
742
|
+
__props__.__dict__["display_name"] = display_name
|
743
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
744
|
+
__props__.__dict__["is_auto_scaling_enabled"] = is_auto_scaling_enabled
|
745
|
+
__props__.__dict__["license_model"] = license_model
|
746
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
747
|
+
__props__.__dict__["lifecycle_sub_state"] = lifecycle_sub_state
|
748
|
+
__props__.__dict__["locks"] = locks
|
749
|
+
__props__.__dict__["mapping_rules"] = mapping_rules
|
750
|
+
__props__.__dict__["process_options"] = process_options
|
751
|
+
__props__.__dict__["recipe_type"] = recipe_type
|
752
|
+
__props__.__dict__["source_connection_details"] = source_connection_details
|
753
|
+
__props__.__dict__["state"] = state
|
754
|
+
__props__.__dict__["system_tags"] = system_tags
|
755
|
+
__props__.__dict__["target_connection_details"] = target_connection_details
|
756
|
+
__props__.__dict__["time_created"] = time_created
|
757
|
+
__props__.__dict__["time_last_recorded"] = time_last_recorded
|
758
|
+
__props__.__dict__["time_updated"] = time_updated
|
759
|
+
return Pipeline(resource_name, opts=opts, __props__=__props__)
|
760
|
+
|
761
|
+
@property
|
762
|
+
@pulumi.getter(name="compartmentId")
|
763
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
764
|
+
"""
|
765
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
766
|
+
"""
|
767
|
+
return pulumi.get(self, "compartment_id")
|
768
|
+
|
769
|
+
@property
|
770
|
+
@pulumi.getter(name="cpuCoreCount")
|
771
|
+
def cpu_core_count(self) -> pulumi.Output[int]:
|
772
|
+
"""
|
773
|
+
The Minimum number of OCPUs to be made available for this Deployment.
|
774
|
+
"""
|
775
|
+
return pulumi.get(self, "cpu_core_count")
|
776
|
+
|
777
|
+
@property
|
778
|
+
@pulumi.getter(name="definedTags")
|
779
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
780
|
+
"""
|
781
|
+
(Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
782
|
+
"""
|
783
|
+
return pulumi.get(self, "defined_tags")
|
784
|
+
|
785
|
+
@property
|
786
|
+
@pulumi.getter
|
787
|
+
def description(self) -> pulumi.Output[str]:
|
788
|
+
"""
|
789
|
+
(Updatable) Metadata about this specific object.
|
790
|
+
"""
|
791
|
+
return pulumi.get(self, "description")
|
792
|
+
|
793
|
+
@property
|
794
|
+
@pulumi.getter(name="displayName")
|
795
|
+
def display_name(self) -> pulumi.Output[str]:
|
796
|
+
"""
|
797
|
+
(Updatable) An object's Display Name.
|
798
|
+
"""
|
799
|
+
return pulumi.get(self, "display_name")
|
800
|
+
|
801
|
+
@property
|
802
|
+
@pulumi.getter(name="freeformTags")
|
803
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
804
|
+
"""
|
805
|
+
(Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
806
|
+
"""
|
807
|
+
return pulumi.get(self, "freeform_tags")
|
808
|
+
|
809
|
+
@property
|
810
|
+
@pulumi.getter(name="isAutoScalingEnabled")
|
811
|
+
def is_auto_scaling_enabled(self) -> pulumi.Output[bool]:
|
812
|
+
"""
|
813
|
+
Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
814
|
+
"""
|
815
|
+
return pulumi.get(self, "is_auto_scaling_enabled")
|
816
|
+
|
817
|
+
@property
|
818
|
+
@pulumi.getter(name="licenseModel")
|
819
|
+
def license_model(self) -> pulumi.Output[str]:
|
820
|
+
"""
|
821
|
+
(Updatable) The Oracle license model that applies to a Deployment.
|
822
|
+
"""
|
823
|
+
return pulumi.get(self, "license_model")
|
824
|
+
|
825
|
+
@property
|
826
|
+
@pulumi.getter(name="lifecycleDetails")
|
827
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
828
|
+
"""
|
829
|
+
Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
830
|
+
"""
|
831
|
+
return pulumi.get(self, "lifecycle_details")
|
832
|
+
|
833
|
+
@property
|
834
|
+
@pulumi.getter(name="lifecycleSubState")
|
835
|
+
def lifecycle_sub_state(self) -> pulumi.Output[str]:
|
836
|
+
"""
|
837
|
+
Possible lifecycle substates when retrieving a pipeline.
|
838
|
+
"""
|
839
|
+
return pulumi.get(self, "lifecycle_sub_state")
|
840
|
+
|
841
|
+
@property
|
842
|
+
@pulumi.getter
|
843
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.PipelineLock']]:
|
844
|
+
"""
|
845
|
+
Locks associated with this resource.
|
846
|
+
"""
|
847
|
+
return pulumi.get(self, "locks")
|
848
|
+
|
849
|
+
@property
|
850
|
+
@pulumi.getter(name="mappingRules")
|
851
|
+
def mapping_rules(self) -> pulumi.Output[Sequence['outputs.PipelineMappingRule']]:
|
852
|
+
"""
|
853
|
+
Mapping for source/target schema/tables for the pipeline data replication.
|
854
|
+
"""
|
855
|
+
return pulumi.get(self, "mapping_rules")
|
856
|
+
|
857
|
+
@property
|
858
|
+
@pulumi.getter(name="processOptions")
|
859
|
+
def process_options(self) -> pulumi.Output['outputs.PipelineProcessOptions']:
|
860
|
+
"""
|
861
|
+
(Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
|
862
|
+
"""
|
863
|
+
return pulumi.get(self, "process_options")
|
864
|
+
|
865
|
+
@property
|
866
|
+
@pulumi.getter(name="recipeType")
|
867
|
+
def recipe_type(self) -> pulumi.Output[str]:
|
868
|
+
"""
|
869
|
+
(Updatable) The type of the recipe
|
870
|
+
"""
|
871
|
+
return pulumi.get(self, "recipe_type")
|
872
|
+
|
873
|
+
@property
|
874
|
+
@pulumi.getter(name="sourceConnectionDetails")
|
875
|
+
def source_connection_details(self) -> pulumi.Output['outputs.PipelineSourceConnectionDetails']:
|
876
|
+
"""
|
877
|
+
The source connection details for creating a pipeline.
|
878
|
+
"""
|
879
|
+
return pulumi.get(self, "source_connection_details")
|
880
|
+
|
881
|
+
@property
|
882
|
+
@pulumi.getter
|
883
|
+
def state(self) -> pulumi.Output[str]:
|
884
|
+
"""
|
885
|
+
Lifecycle state of the pipeline.
|
886
|
+
"""
|
887
|
+
return pulumi.get(self, "state")
|
888
|
+
|
889
|
+
@property
|
890
|
+
@pulumi.getter(name="systemTags")
|
891
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
892
|
+
"""
|
893
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
894
|
+
"""
|
895
|
+
return pulumi.get(self, "system_tags")
|
896
|
+
|
897
|
+
@property
|
898
|
+
@pulumi.getter(name="targetConnectionDetails")
|
899
|
+
def target_connection_details(self) -> pulumi.Output['outputs.PipelineTargetConnectionDetails']:
|
900
|
+
"""
|
901
|
+
The target connection details for creating a pipeline.
|
902
|
+
"""
|
903
|
+
return pulumi.get(self, "target_connection_details")
|
904
|
+
|
905
|
+
@property
|
906
|
+
@pulumi.getter(name="timeCreated")
|
907
|
+
def time_created(self) -> pulumi.Output[str]:
|
908
|
+
"""
|
909
|
+
The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
910
|
+
"""
|
911
|
+
return pulumi.get(self, "time_created")
|
912
|
+
|
913
|
+
@property
|
914
|
+
@pulumi.getter(name="timeLastRecorded")
|
915
|
+
def time_last_recorded(self) -> pulumi.Output[str]:
|
916
|
+
"""
|
917
|
+
When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
|
918
|
+
"""
|
919
|
+
return pulumi.get(self, "time_last_recorded")
|
920
|
+
|
921
|
+
@property
|
922
|
+
@pulumi.getter(name="timeUpdated")
|
923
|
+
def time_updated(self) -> pulumi.Output[str]:
|
924
|
+
"""
|
925
|
+
The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
926
|
+
"""
|
927
|
+
return pulumi.get(self, "time_updated")
|
928
|
+
|