oci.GoldenGate.Pipeline
Explore with Pulumi AI
This resource provides the Pipeline resource in Oracle Cloud Infrastructure Golden Gate service.
Creates a new Pipeline.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GoldenGate.Pipeline;
import com.pulumi.oci.GoldenGate.PipelineArgs;
import com.pulumi.oci.GoldenGate.inputs.PipelineSourceConnectionDetailsArgs;
import com.pulumi.oci.GoldenGate.inputs.PipelineTargetConnectionDetailsArgs;
import com.pulumi.oci.GoldenGate.inputs.PipelineLockArgs;
import com.pulumi.oci.GoldenGate.inputs.PipelineProcessOptionsArgs;
import com.pulumi.oci.GoldenGate.inputs.PipelineProcessOptionsInitialDataLoadArgs;
import com.pulumi.oci.GoldenGate.inputs.PipelineProcessOptionsReplicateSchemaChangeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testPipeline = new Pipeline("testPipeline", PipelineArgs.builder()
.compartmentId(compartmentId)
.displayName(pipelineDisplayName)
.licenseModel(pipelineLicenseModel)
.recipeType(pipelineRecipeType)
.sourceConnectionDetails(PipelineSourceConnectionDetailsArgs.builder()
.connectionId(testConnection.id())
.build())
.targetConnectionDetails(PipelineTargetConnectionDetailsArgs.builder()
.connectionId(testConnection.id())
.build())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(pipelineDescription)
.freeformTags(Map.of("bar-key", "value"))
.locks(PipelineLockArgs.builder()
.type(pipelineLocksType)
.message(pipelineLocksMessage)
.relatedResourceId(testResource.id())
.timeCreated(pipelineLocksTimeCreated)
.build())
.processOptions(PipelineProcessOptionsArgs.builder()
.initialDataLoad(PipelineProcessOptionsInitialDataLoadArgs.builder()
.isInitialLoad(pipelineProcessOptionsInitialDataLoadIsInitialLoad)
.actionOnExistingTable(pipelineProcessOptionsInitialDataLoadActionOnExistingTable)
.build())
.replicateSchemaChange(PipelineProcessOptionsReplicateSchemaChangeArgs.builder()
.canReplicateSchemaChange(pipelineProcessOptionsReplicateSchemaChangeCanReplicateSchemaChange)
.actionOnDdlError(pipelineProcessOptionsReplicateSchemaChangeActionOnDdlError)
.actionOnDmlError(pipelineProcessOptionsReplicateSchemaChangeActionOnDmlError)
.build())
.shouldRestartOnFailure(pipelineProcessOptionsShouldRestartOnFailure)
.build())
.build());
}
}
resources:
testPipeline:
type: oci:GoldenGate:Pipeline
name: test_pipeline
properties:
compartmentId: ${compartmentId}
displayName: ${pipelineDisplayName}
licenseModel: ${pipelineLicenseModel}
recipeType: ${pipelineRecipeType}
sourceConnectionDetails:
connectionId: ${testConnection.id}
targetConnectionDetails:
connectionId: ${testConnection.id}
definedTags:
foo-namespace.bar-key: value
description: ${pipelineDescription}
freeformTags:
bar-key: value
locks:
- type: ${pipelineLocksType}
message: ${pipelineLocksMessage}
relatedResourceId: ${testResource.id}
timeCreated: ${pipelineLocksTimeCreated}
processOptions:
initialDataLoad:
isInitialLoad: ${pipelineProcessOptionsInitialDataLoadIsInitialLoad}
actionOnExistingTable: ${pipelineProcessOptionsInitialDataLoadActionOnExistingTable}
replicateSchemaChange:
canReplicateSchemaChange: ${pipelineProcessOptionsReplicateSchemaChangeCanReplicateSchemaChange}
actionOnDdlError: ${pipelineProcessOptionsReplicateSchemaChangeActionOnDdlError}
actionOnDmlError: ${pipelineProcessOptionsReplicateSchemaChangeActionOnDmlError}
shouldRestartOnFailure: ${pipelineProcessOptionsShouldRestartOnFailure}
Create Pipeline Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Pipeline(name: string, args: PipelineArgs, opts?: CustomResourceOptions);
@overload
def Pipeline(resource_name: str,
args: PipelineArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Pipeline(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
license_model: Optional[str] = None,
recipe_type: Optional[str] = None,
source_connection_details: Optional[_goldengate.PipelineSourceConnectionDetailsArgs] = None,
target_connection_details: Optional[_goldengate.PipelineTargetConnectionDetailsArgs] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
locks: Optional[Sequence[_goldengate.PipelineLockArgs]] = None,
process_options: Optional[_goldengate.PipelineProcessOptionsArgs] = None)
func NewPipeline(ctx *Context, name string, args PipelineArgs, opts ...ResourceOption) (*Pipeline, error)
public Pipeline(string name, PipelineArgs args, CustomResourceOptions? opts = null)
public Pipeline(String name, PipelineArgs args)
public Pipeline(String name, PipelineArgs args, CustomResourceOptions options)
type: oci:GoldenGate:Pipeline
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ociPipelineResource = new Oci.GoldenGate.Pipeline("ociPipelineResource", new()
{
CompartmentId = "string",
DisplayName = "string",
LicenseModel = "string",
RecipeType = "string",
SourceConnectionDetails = new Oci.GoldenGate.Inputs.PipelineSourceConnectionDetailsArgs
{
ConnectionId = "string",
},
TargetConnectionDetails = new Oci.GoldenGate.Inputs.PipelineTargetConnectionDetailsArgs
{
ConnectionId = "string",
},
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
FreeformTags =
{
{ "string", "string" },
},
Locks = new[]
{
new Oci.GoldenGate.Inputs.PipelineLockArgs
{
Type = "string",
Message = "string",
},
},
ProcessOptions = new Oci.GoldenGate.Inputs.PipelineProcessOptionsArgs
{
InitialDataLoad = new Oci.GoldenGate.Inputs.PipelineProcessOptionsInitialDataLoadArgs
{
IsInitialLoad = "string",
ActionOnExistingTable = "string",
},
ReplicateSchemaChange = new Oci.GoldenGate.Inputs.PipelineProcessOptionsReplicateSchemaChangeArgs
{
CanReplicateSchemaChange = "string",
ActionOnDdlError = "string",
ActionOnDmlError = "string",
},
ShouldRestartOnFailure = "string",
},
});
example, err := GoldenGate.NewPipeline(ctx, "ociPipelineResource", &GoldenGate.PipelineArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
LicenseModel: pulumi.String("string"),
RecipeType: pulumi.String("string"),
SourceConnectionDetails: &goldengate.PipelineSourceConnectionDetailsArgs{
ConnectionId: pulumi.String("string"),
},
TargetConnectionDetails: &goldengate.PipelineTargetConnectionDetailsArgs{
ConnectionId: pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Locks: goldengate.PipelineLockArray{
&goldengate.PipelineLockArgs{
Type: pulumi.String("string"),
Message: pulumi.String("string"),
},
},
ProcessOptions: &goldengate.PipelineProcessOptionsArgs{
InitialDataLoad: &goldengate.PipelineProcessOptionsInitialDataLoadArgs{
IsInitialLoad: pulumi.String("string"),
ActionOnExistingTable: pulumi.String("string"),
},
ReplicateSchemaChange: &goldengate.PipelineProcessOptionsReplicateSchemaChangeArgs{
CanReplicateSchemaChange: pulumi.String("string"),
ActionOnDdlError: pulumi.String("string"),
ActionOnDmlError: pulumi.String("string"),
},
ShouldRestartOnFailure: pulumi.String("string"),
},
})
var ociPipelineResource = new Pipeline("ociPipelineResource", PipelineArgs.builder()
.compartmentId("string")
.displayName("string")
.licenseModel("string")
.recipeType("string")
.sourceConnectionDetails(PipelineSourceConnectionDetailsArgs.builder()
.connectionId("string")
.build())
.targetConnectionDetails(PipelineTargetConnectionDetailsArgs.builder()
.connectionId("string")
.build())
.definedTags(Map.of("string", "string"))
.description("string")
.freeformTags(Map.of("string", "string"))
.locks(PipelineLockArgs.builder()
.type("string")
.message("string")
.build())
.processOptions(PipelineProcessOptionsArgs.builder()
.initialDataLoad(PipelineProcessOptionsInitialDataLoadArgs.builder()
.isInitialLoad("string")
.actionOnExistingTable("string")
.build())
.replicateSchemaChange(PipelineProcessOptionsReplicateSchemaChangeArgs.builder()
.canReplicateSchemaChange("string")
.actionOnDdlError("string")
.actionOnDmlError("string")
.build())
.shouldRestartOnFailure("string")
.build())
.build());
oci_pipeline_resource = oci.golden_gate.Pipeline("ociPipelineResource",
compartment_id="string",
display_name="string",
license_model="string",
recipe_type="string",
source_connection_details={
"connection_id": "string",
},
target_connection_details={
"connection_id": "string",
},
defined_tags={
"string": "string",
},
description="string",
freeform_tags={
"string": "string",
},
locks=[{
"type": "string",
"message": "string",
}],
process_options={
"initial_data_load": {
"is_initial_load": "string",
"action_on_existing_table": "string",
},
"replicate_schema_change": {
"can_replicate_schema_change": "string",
"action_on_ddl_error": "string",
"action_on_dml_error": "string",
},
"should_restart_on_failure": "string",
})
const ociPipelineResource = new oci.goldengate.Pipeline("ociPipelineResource", {
compartmentId: "string",
displayName: "string",
licenseModel: "string",
recipeType: "string",
sourceConnectionDetails: {
connectionId: "string",
},
targetConnectionDetails: {
connectionId: "string",
},
definedTags: {
string: "string",
},
description: "string",
freeformTags: {
string: "string",
},
locks: [{
type: "string",
message: "string",
}],
processOptions: {
initialDataLoad: {
isInitialLoad: "string",
actionOnExistingTable: "string",
},
replicateSchemaChange: {
canReplicateSchemaChange: "string",
actionOnDdlError: "string",
actionOnDmlError: "string",
},
shouldRestartOnFailure: "string",
},
});
type: oci:GoldenGate:Pipeline
properties:
compartmentId: string
definedTags:
string: string
description: string
displayName: string
freeformTags:
string: string
licenseModel: string
locks:
- message: string
type: string
processOptions:
initialDataLoad:
actionOnExistingTable: string
isInitialLoad: string
replicateSchemaChange:
actionOnDdlError: string
actionOnDmlError: string
canReplicateSchemaChange: string
shouldRestartOnFailure: string
recipeType: string
sourceConnectionDetails:
connectionId: string
targetConnectionDetails:
connectionId: string
Pipeline Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Pipeline resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- Display
Name string - (Updatable) An object's Display Name.
- License
Model string - (Updatable) The Oracle license model that applies to a Deployment.
- Recipe
Type string - (Updatable) The type of the recipe
- Source
Connection PipelineDetails Source Connection Details - The source connection details for creating a pipeline.
- Target
Connection PipelineDetails Target Connection Details - The target connection details for creating a pipeline.
- Dictionary<string, string>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Metadata about this specific object.
- Dictionary<string, string>
- (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"}
- Locks
List<Pipeline
Lock> - Locks associated with this resource.
- Process
Options PipelineProcess Options - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- Compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- Display
Name string - (Updatable) An object's Display Name.
- License
Model string - (Updatable) The Oracle license model that applies to a Deployment.
- Recipe
Type string - (Updatable) The type of the recipe
- Source
Connection PipelineDetails Source Connection Details Args - The source connection details for creating a pipeline.
- Target
Connection PipelineDetails Target Connection Details Args - The target connection details for creating a pipeline.
- map[string]string
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Metadata about this specific object.
- map[string]string
- (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"}
- Locks
[]Pipeline
Lock Args - Locks associated with this resource.
- Process
Options PipelineProcess Options Args - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- compartment
Id String - (Updatable) The OCID of the compartment being referenced.
- display
Name String - (Updatable) An object's Display Name.
- license
Model String - (Updatable) The Oracle license model that applies to a Deployment.
- recipe
Type String - (Updatable) The type of the recipe
- source
Connection PipelineDetails Source Connection Details - The source connection details for creating a pipeline.
- target
Connection PipelineDetails Target Connection Details - The target connection details for creating a pipeline.
- Map<String,String>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Metadata about this specific object.
- Map<String,String>
- (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"}
- locks
List<Pipeline
Lock> - Locks associated with this resource.
- process
Options PipelineProcess Options - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- display
Name string - (Updatable) An object's Display Name.
- license
Model string - (Updatable) The Oracle license model that applies to a Deployment.
- recipe
Type string - (Updatable) The type of the recipe
- source
Connection PipelineDetails Source Connection Details - The source connection details for creating a pipeline.
- target
Connection PipelineDetails Target Connection Details - The target connection details for creating a pipeline.
- {[key: string]: string}
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Metadata about this specific object.
- {[key: string]: string}
- (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"}
- locks
Pipeline
Lock[] - Locks associated with this resource.
- process
Options PipelineProcess Options - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- compartment_
id str - (Updatable) The OCID of the compartment being referenced.
- display_
name str - (Updatable) An object's Display Name.
- license_
model str - (Updatable) The Oracle license model that applies to a Deployment.
- recipe_
type str - (Updatable) The type of the recipe
- source_
connection_ goldengate.details Pipeline Source Connection Details Args - The source connection details for creating a pipeline.
- target_
connection_ goldengate.details Pipeline Target Connection Details Args - The target connection details for creating a pipeline.
- Mapping[str, str]
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Metadata about this specific object.
- Mapping[str, str]
- (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"}
- locks
Sequence[goldengate.
Pipeline Lock Args] - Locks associated with this resource.
- process_
options goldengate.Pipeline Process Options Args - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- compartment
Id String - (Updatable) The OCID of the compartment being referenced.
- display
Name String - (Updatable) An object's Display Name.
- license
Model String - (Updatable) The Oracle license model that applies to a Deployment.
- recipe
Type String - (Updatable) The type of the recipe
- source
Connection Property MapDetails - The source connection details for creating a pipeline.
- target
Connection Property MapDetails - The target connection details for creating a pipeline.
- Map<String>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Metadata about this specific object.
- Map<String>
- (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"}
- locks List<Property Map>
- Locks associated with this resource.
- process
Options Property Map - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
Outputs
All input properties are implicitly available as output properties. Additionally, the Pipeline resource produces the following output properties:
- Cpu
Core intCount - The Minimum number of OCPUs to be made available for this Deployment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Auto boolScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- Lifecycle
Details string - 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.
- Lifecycle
Sub stringState - Possible lifecycle substates when retrieving a pipeline.
- Mapping
Rules List<PipelineMapping Rule> - Mapping for source/target schema/tables for the pipeline data replication.
- State string
- Lifecycle state of the pipeline.
- Dictionary<string, string>
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Time
Last stringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - Time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- Cpu
Core intCount - The Minimum number of OCPUs to be made available for this Deployment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Auto boolScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- Lifecycle
Details string - 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.
- Lifecycle
Sub stringState - Possible lifecycle substates when retrieving a pipeline.
- Mapping
Rules []PipelineMapping Rule - Mapping for source/target schema/tables for the pipeline data replication.
- State string
- Lifecycle state of the pipeline.
- map[string]string
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Time
Last stringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - Time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- cpu
Core IntegerCount - The Minimum number of OCPUs to be made available for this Deployment.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Auto BooleanScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- lifecycle
Details String - 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.
- lifecycle
Sub StringState - Possible lifecycle substates when retrieving a pipeline.
- mapping
Rules List<PipelineMapping Rule> - Mapping for source/target schema/tables for the pipeline data replication.
- state String
- Lifecycle state of the pipeline.
- Map<String,String>
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Last StringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - time
Updated String - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- cpu
Core numberCount - The Minimum number of OCPUs to be made available for this Deployment.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Auto booleanScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- lifecycle
Details string - 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.
- lifecycle
Sub stringState - Possible lifecycle substates when retrieving a pipeline.
- mapping
Rules PipelineMapping Rule[] - Mapping for source/target schema/tables for the pipeline data replication.
- state string
- Lifecycle state of the pipeline.
- {[key: string]: string}
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Last stringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- cpu_
core_ intcount - The Minimum number of OCPUs to be made available for this Deployment.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
auto_ boolscaling_ enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- lifecycle_
details str - 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.
- lifecycle_
sub_ strstate - Possible lifecycle substates when retrieving a pipeline.
- mapping_
rules Sequence[goldengate.Pipeline Mapping Rule] - Mapping for source/target schema/tables for the pipeline data replication.
- state str
- Lifecycle state of the pipeline.
- Mapping[str, str]
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- time_
created str - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time_
last_ strrecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - time_
updated str - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- cpu
Core NumberCount - The Minimum number of OCPUs to be made available for this Deployment.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Auto BooleanScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- lifecycle
Details String - 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.
- lifecycle
Sub StringState - Possible lifecycle substates when retrieving a pipeline.
- mapping
Rules List<Property Map> - Mapping for source/target schema/tables for the pipeline data replication.
- state String
- Lifecycle state of the pipeline.
- Map<String>
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Last StringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - time
Updated String - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
Look up Existing Pipeline Resource
Get an existing Pipeline resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: PipelineState, opts?: CustomResourceOptions): Pipeline
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
cpu_core_count: Optional[int] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_auto_scaling_enabled: Optional[bool] = None,
license_model: Optional[str] = None,
lifecycle_details: Optional[str] = None,
lifecycle_sub_state: Optional[str] = None,
locks: Optional[Sequence[_goldengate.PipelineLockArgs]] = None,
mapping_rules: Optional[Sequence[_goldengate.PipelineMappingRuleArgs]] = None,
process_options: Optional[_goldengate.PipelineProcessOptionsArgs] = None,
recipe_type: Optional[str] = None,
source_connection_details: Optional[_goldengate.PipelineSourceConnectionDetailsArgs] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
target_connection_details: Optional[_goldengate.PipelineTargetConnectionDetailsArgs] = None,
time_created: Optional[str] = None,
time_last_recorded: Optional[str] = None,
time_updated: Optional[str] = None) -> Pipeline
func GetPipeline(ctx *Context, name string, id IDInput, state *PipelineState, opts ...ResourceOption) (*Pipeline, error)
public static Pipeline Get(string name, Input<string> id, PipelineState? state, CustomResourceOptions? opts = null)
public static Pipeline get(String name, Output<String> id, PipelineState state, CustomResourceOptions options)
resources: _: type: oci:GoldenGate:Pipeline get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- Cpu
Core intCount - The Minimum number of OCPUs to be made available for this Deployment.
- Dictionary<string, string>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Metadata about this specific object.
- Display
Name string - (Updatable) An object's Display Name.
- Dictionary<string, string>
- (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"}
- Is
Auto boolScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- License
Model string - (Updatable) The Oracle license model that applies to a Deployment.
- Lifecycle
Details string - 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.
- Lifecycle
Sub stringState - Possible lifecycle substates when retrieving a pipeline.
- Locks
List<Pipeline
Lock> - Locks associated with this resource.
- Mapping
Rules List<PipelineMapping Rule> - Mapping for source/target schema/tables for the pipeline data replication.
- Process
Options PipelineProcess Options - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- Recipe
Type string - (Updatable) The type of the recipe
- Source
Connection PipelineDetails Source Connection Details - The source connection details for creating a pipeline.
- State string
- Lifecycle state of the pipeline.
- Dictionary<string, string>
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- Target
Connection PipelineDetails Target Connection Details - The target connection details for creating a pipeline.
- Time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Time
Last stringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - Time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- Compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- Cpu
Core intCount - The Minimum number of OCPUs to be made available for this Deployment.
- map[string]string
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Metadata about this specific object.
- Display
Name string - (Updatable) An object's Display Name.
- map[string]string
- (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"}
- Is
Auto boolScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- License
Model string - (Updatable) The Oracle license model that applies to a Deployment.
- Lifecycle
Details string - 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.
- Lifecycle
Sub stringState - Possible lifecycle substates when retrieving a pipeline.
- Locks
[]Pipeline
Lock Args - Locks associated with this resource.
- Mapping
Rules []PipelineMapping Rule Args - Mapping for source/target schema/tables for the pipeline data replication.
- Process
Options PipelineProcess Options Args - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- Recipe
Type string - (Updatable) The type of the recipe
- Source
Connection PipelineDetails Source Connection Details Args - The source connection details for creating a pipeline.
- State string
- Lifecycle state of the pipeline.
- map[string]string
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- Target
Connection PipelineDetails Target Connection Details Args - The target connection details for creating a pipeline.
- Time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Time
Last stringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - Time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- compartment
Id String - (Updatable) The OCID of the compartment being referenced.
- cpu
Core IntegerCount - The Minimum number of OCPUs to be made available for this Deployment.
- Map<String,String>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Metadata about this specific object.
- display
Name String - (Updatable) An object's Display Name.
- Map<String,String>
- (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"}
- is
Auto BooleanScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- license
Model String - (Updatable) The Oracle license model that applies to a Deployment.
- lifecycle
Details String - 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.
- lifecycle
Sub StringState - Possible lifecycle substates when retrieving a pipeline.
- locks
List<Pipeline
Lock> - Locks associated with this resource.
- mapping
Rules List<PipelineMapping Rule> - Mapping for source/target schema/tables for the pipeline data replication.
- process
Options PipelineProcess Options - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- recipe
Type String - (Updatable) The type of the recipe
- source
Connection PipelineDetails Source Connection Details - The source connection details for creating a pipeline.
- state String
- Lifecycle state of the pipeline.
- Map<String,String>
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- target
Connection PipelineDetails Target Connection Details - The target connection details for creating a pipeline.
- time
Created String - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Last StringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - time
Updated String - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- cpu
Core numberCount - The Minimum number of OCPUs to be made available for this Deployment.
- {[key: string]: string}
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Metadata about this specific object.
- display
Name string - (Updatable) An object's Display Name.
- {[key: string]: string}
- (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"}
- is
Auto booleanScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- license
Model string - (Updatable) The Oracle license model that applies to a Deployment.
- lifecycle
Details string - 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.
- lifecycle
Sub stringState - Possible lifecycle substates when retrieving a pipeline.
- locks
Pipeline
Lock[] - Locks associated with this resource.
- mapping
Rules PipelineMapping Rule[] - Mapping for source/target schema/tables for the pipeline data replication.
- process
Options PipelineProcess Options - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- recipe
Type string - (Updatable) The type of the recipe
- source
Connection PipelineDetails Source Connection Details - The source connection details for creating a pipeline.
- state string
- Lifecycle state of the pipeline.
- {[key: string]: string}
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- target
Connection PipelineDetails Target Connection Details - The target connection details for creating a pipeline.
- time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Last stringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- compartment_
id str - (Updatable) The OCID of the compartment being referenced.
- cpu_
core_ intcount - The Minimum number of OCPUs to be made available for this Deployment.
- Mapping[str, str]
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Metadata about this specific object.
- display_
name str - (Updatable) An object's Display Name.
- Mapping[str, str]
- (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"}
- is_
auto_ boolscaling_ enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- license_
model str - (Updatable) The Oracle license model that applies to a Deployment.
- lifecycle_
details str - 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.
- lifecycle_
sub_ strstate - Possible lifecycle substates when retrieving a pipeline.
- locks
Sequence[goldengate.
Pipeline Lock Args] - Locks associated with this resource.
- mapping_
rules Sequence[goldengate.Pipeline Mapping Rule Args] - Mapping for source/target schema/tables for the pipeline data replication.
- process_
options goldengate.Pipeline Process Options Args - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- recipe_
type str - (Updatable) The type of the recipe
- source_
connection_ goldengate.details Pipeline Source Connection Details Args - The source connection details for creating a pipeline.
- state str
- Lifecycle state of the pipeline.
- Mapping[str, str]
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- target_
connection_ goldengate.details Pipeline Target Connection Details Args - The target connection details for creating a pipeline.
- time_
created str - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time_
last_ strrecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - time_
updated str - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- compartment
Id String - (Updatable) The OCID of the compartment being referenced.
- cpu
Core NumberCount - The Minimum number of OCPUs to be made available for this Deployment.
- Map<String>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Metadata about this specific object.
- display
Name String - (Updatable) An object's Display Name.
- Map<String>
- (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"}
- is
Auto BooleanScaling Enabled - Indicates if auto scaling is enabled for the Deployment's CPU core count.
- license
Model String - (Updatable) The Oracle license model that applies to a Deployment.
- lifecycle
Details String - 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.
- lifecycle
Sub StringState - Possible lifecycle substates when retrieving a pipeline.
- locks List<Property Map>
- Locks associated with this resource.
- mapping
Rules List<Property Map> - Mapping for source/target schema/tables for the pipeline data replication.
- process
Options Property Map - (Updatable) Required pipeline options to configure the replication process (Extract or Replicat).
- recipe
Type String - (Updatable) The type of the recipe
- source
Connection Property MapDetails - The source connection details for creating a pipeline.
- state String
- Lifecycle state of the pipeline.
- Map<String>
- 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. Example:
{orcl-cloud: {free-tier-retain: true}}
- target
Connection Property MapDetails - The target connection details for creating a pipeline.
- time
Created String - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Last StringRecorded - When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by RFC3339, such as
2024-07-25T21:10:29.600Z
. - time
Updated String - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
Supporting Types
PipelineLock, PipelineLockArgs
PipelineMappingRule, PipelineMappingRuleArgs
- Mapping
Type string - Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
- Source string
- The source schema/table combination for replication to target.
- Target string
- The target schema/table combination for replication from the source.
- Mapping
Type string - Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
- Source string
- The source schema/table combination for replication to target.
- Target string
- The target schema/table combination for replication from the source.
- mapping
Type String - Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
- source String
- The source schema/table combination for replication to target.
- target String
- The target schema/table combination for replication from the source.
- mapping
Type string - Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
- source string
- The source schema/table combination for replication to target.
- target string
- The target schema/table combination for replication from the source.
- mapping_
type str - Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
- source str
- The source schema/table combination for replication to target.
- target str
- The target schema/table combination for replication from the source.
- mapping
Type String - Defines the exclude/include rules of source and target schemas and tables when replicating from source to target. This option applies when creating and updating a pipeline.
- source String
- The source schema/table combination for replication to target.
- target String
- The target schema/table combination for replication from the source.
PipelineProcessOptions, PipelineProcessOptionsArgs
- Initial
Data PipelineLoad Process Options Initial Data Load - (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- Replicate
Schema PipelineChange Process Options Replicate Schema Change - (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- Should
Restart stringOn Failure - (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
- Initial
Data PipelineLoad Process Options Initial Data Load - (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- Replicate
Schema PipelineChange Process Options Replicate Schema Change - (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- Should
Restart stringOn Failure - (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
- initial
Data PipelineLoad Process Options Initial Data Load - (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- replicate
Schema PipelineChange Process Options Replicate Schema Change - (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- should
Restart StringOn Failure - (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
- initial
Data PipelineLoad Process Options Initial Data Load - (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- replicate
Schema PipelineChange Process Options Replicate Schema Change - (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- should
Restart stringOn Failure - (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
- initial_
data_ goldengate.load Pipeline Process Options Initial Data Load - (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- replicate_
schema_ goldengate.change Pipeline Process Options Replicate Schema Change - (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- should_
restart_ stron_ failure - (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
- initial
Data Property MapLoad - (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- replicate
Schema Property MapChange - (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
- should
Restart StringOn Failure - (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
PipelineProcessOptionsInitialDataLoad, PipelineProcessOptionsInitialDataLoadArgs
- Is
Initial stringLoad - (Updatable) If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
- Action
On stringExisting Table - (Updatable) Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
- Is
Initial stringLoad - (Updatable) If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
- Action
On stringExisting Table - (Updatable) Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
- is
Initial StringLoad - (Updatable) If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
- action
On StringExisting Table - (Updatable) Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
- is
Initial stringLoad - (Updatable) If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
- action
On stringExisting Table - (Updatable) Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
- is_
initial_ strload - (Updatable) If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
- action_
on_ strexisting_ table - (Updatable) Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
- is
Initial StringLoad - (Updatable) If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.
- action
On StringExisting Table - (Updatable) Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.
PipelineProcessOptionsReplicateSchemaChange, PipelineProcessOptionsReplicateSchemaChangeArgs
- Can
Replicate stringSchema Change - (Updatable) If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
- Action
On stringDdl Error - (Updatable) Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- Action
On stringDml Error - (Updatable) Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- Can
Replicate stringSchema Change - (Updatable) If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
- Action
On stringDdl Error - (Updatable) Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- Action
On stringDml Error - (Updatable) Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- can
Replicate StringSchema Change - (Updatable) If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
- action
On StringDdl Error - (Updatable) Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- action
On StringDml Error - (Updatable) Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- can
Replicate stringSchema Change - (Updatable) If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
- action
On stringDdl Error - (Updatable) Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- action
On stringDml Error - (Updatable) Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- can_
replicate_ strschema_ change - (Updatable) If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
- action_
on_ strddl_ error - (Updatable) Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- action_
on_ strdml_ error - (Updatable) Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- can
Replicate StringSchema Change - (Updatable) If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.
- action
On StringDdl Error - (Updatable) Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
- action
On StringDml Error - (Updatable) Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true
PipelineSourceConnectionDetails, PipelineSourceConnectionDetailsArgs
- Connection
Id string - The OCID of the connection being referenced.
- Connection
Id string - The OCID of the connection being referenced.
- connection
Id String - The OCID of the connection being referenced.
- connection
Id string - The OCID of the connection being referenced.
- connection_
id str - The OCID of the connection being referenced.
- connection
Id String - The OCID of the connection being referenced.
PipelineTargetConnectionDetails, PipelineTargetConnectionDetailsArgs
- Connection
Id string The OCID of the connection being referenced.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Connection
Id string The OCID of the connection being referenced.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- connection
Id String The OCID of the connection being referenced.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- connection
Id string The OCID of the connection being referenced.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- connection_
id str The OCID of the connection being referenced.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- connection
Id String The OCID of the connection being referenced.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Import
Pipelines can be imported using the id
, e.g.
$ pulumi import oci:GoldenGate/pipeline:Pipeline test_pipeline "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.