oci.DatabaseMigration.getMigrations
Explore with Pulumi AI
This data source provides the list of Migrations in Oracle Cloud Infrastructure Database Migration service.
List all Migrations.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testMigrations = Oci.DatabaseMigration.GetMigrations.Invoke(new()
{
CompartmentId = @var.Compartment_id,
DisplayName = @var.Migration_display_name,
LifecycleDetails = @var.Migration_lifecycle_details,
State = @var.Migration_state,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DatabaseMigration"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DatabaseMigration.GetMigrations(ctx, &databasemigration.GetMigrationsArgs{
CompartmentId: _var.Compartment_id,
DisplayName: pulumi.StringRef(_var.Migration_display_name),
LifecycleDetails: pulumi.StringRef(_var.Migration_lifecycle_details),
State: pulumi.StringRef(_var.Migration_state),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseMigration.DatabaseMigrationFunctions;
import com.pulumi.oci.DatabaseMigration.inputs.GetMigrationsArgs;
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) {
final var testMigrations = DatabaseMigrationFunctions.getMigrations(GetMigrationsArgs.builder()
.compartmentId(var_.compartment_id())
.displayName(var_.migration_display_name())
.lifecycleDetails(var_.migration_lifecycle_details())
.state(var_.migration_state())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_migrations = oci.DatabaseMigration.get_migrations(compartment_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
display_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
lifecycle_details=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
state=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testMigrations = oci.DatabaseMigration.getMigrations({
compartmentId: _var.compartment_id,
displayName: _var.migration_display_name,
lifecycleDetails: _var.migration_lifecycle_details,
state: _var.migration_state,
});
variables:
testMigrations:
fn::invoke:
Function: oci:DatabaseMigration:getMigrations
Arguments:
compartmentId: ${var.compartment_id}
displayName: ${var.migration_display_name}
lifecycleDetails: ${var.migration_lifecycle_details}
state: ${var.migration_state}
Using getMigrations
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getMigrations(args: GetMigrationsArgs, opts?: InvokeOptions): Promise<GetMigrationsResult>
function getMigrationsOutput(args: GetMigrationsOutputArgs, opts?: InvokeOptions): Output<GetMigrationsResult>
def get_migrations(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_databasemigration.GetMigrationsFilter]] = None,
lifecycle_details: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetMigrationsResult
def get_migrations_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasemigration.GetMigrationsFilterArgs]]]] = None,
lifecycle_details: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMigrationsResult]
func GetMigrations(ctx *Context, args *GetMigrationsArgs, opts ...InvokeOption) (*GetMigrationsResult, error)
func GetMigrationsOutput(ctx *Context, args *GetMigrationsOutputArgs, opts ...InvokeOption) GetMigrationsResultOutput
> Note: This function is named GetMigrations
in the Go SDK.
public static class GetMigrations
{
public static Task<GetMigrationsResult> InvokeAsync(GetMigrationsArgs args, InvokeOptions? opts = null)
public static Output<GetMigrationsResult> Invoke(GetMigrationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetMigrationsResult> getMigrations(GetMigrationsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DatabaseMigration/getMigrations:getMigrations
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string The ID of the compartment in which to list resources.
- Display
Name string A filter to return only resources that match the entire display name given.
- Filters
List<Get
Migrations Filter> - Lifecycle
Details string The lifecycle detailed status of the Migration.
- State string
The lifecycle state of the Migration.
- Compartment
Id string The ID of the compartment in which to list resources.
- Display
Name string A filter to return only resources that match the entire display name given.
- Filters
[]Get
Migrations Filter - Lifecycle
Details string The lifecycle detailed status of the Migration.
- State string
The lifecycle state of the Migration.
- compartment
Id String The ID of the compartment in which to list resources.
- display
Name String A filter to return only resources that match the entire display name given.
- filters
List<Get
Migrations Filter> - lifecycle
Details String The lifecycle detailed status of the Migration.
- state String
The lifecycle state of the Migration.
- compartment
Id string The ID of the compartment in which to list resources.
- display
Name string A filter to return only resources that match the entire display name given.
- filters
Get
Migrations Filter[] - lifecycle
Details string The lifecycle detailed status of the Migration.
- state string
The lifecycle state of the Migration.
- compartment_
id str The ID of the compartment in which to list resources.
- display_
name str A filter to return only resources that match the entire display name given.
- filters
Get
Migrations Filter] - lifecycle_
details str The lifecycle detailed status of the Migration.
- state str
The lifecycle state of the Migration.
- compartment
Id String The ID of the compartment in which to list resources.
- display
Name String A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- lifecycle
Details String The lifecycle detailed status of the Migration.
- state String
The lifecycle state of the Migration.
getMigrations Result
The following output properties are available:
- Compartment
Id string OCID of the compartment where the secret containing the credentials will be created.
- Id string
The provider-assigned unique ID for this managed resource.
- Migration
Collections List<GetMigrations Migration Collection> The list of migration_collection.
- Display
Name string Migration Display Name
- Filters
List<Get
Migrations Filter> - Lifecycle
Details string Additional status related to the execution and current state of the Migration.
- State string
The current state of the Migration resource.
- Compartment
Id string OCID of the compartment where the secret containing the credentials will be created.
- Id string
The provider-assigned unique ID for this managed resource.
- Migration
Collections []GetMigrations Migration Collection The list of migration_collection.
- Display
Name string Migration Display Name
- Filters
[]Get
Migrations Filter - Lifecycle
Details string Additional status related to the execution and current state of the Migration.
- State string
The current state of the Migration resource.
- compartment
Id String OCID of the compartment where the secret containing the credentials will be created.
- id String
The provider-assigned unique ID for this managed resource.
- migration
Collections List<GetMigrations Migration Collection> The list of migration_collection.
- display
Name String Migration Display Name
- filters
List<Get
Migrations Filter> - lifecycle
Details String Additional status related to the execution and current state of the Migration.
- state String
The current state of the Migration resource.
- compartment
Id string OCID of the compartment where the secret containing the credentials will be created.
- id string
The provider-assigned unique ID for this managed resource.
- migration
Collections GetMigrations Migration Collection[] The list of migration_collection.
- display
Name string Migration Display Name
- filters
Get
Migrations Filter[] - lifecycle
Details string Additional status related to the execution and current state of the Migration.
- state string
The current state of the Migration resource.
- compartment_
id str OCID of the compartment where the secret containing the credentials will be created.
- id str
The provider-assigned unique ID for this managed resource.
- migration_
collections GetMigrations Migration Collection] The list of migration_collection.
- display_
name str Migration Display Name
- filters
Get
Migrations Filter] - lifecycle_
details str Additional status related to the execution and current state of the Migration.
- state str
The current state of the Migration resource.
- compartment
Id String OCID of the compartment where the secret containing the credentials will be created.
- id String
The provider-assigned unique ID for this managed resource.
- migration
Collections List<Property Map> The list of migration_collection.
- display
Name String Migration Display Name
- filters List<Property Map>
- lifecycle
Details String Additional status related to the execution and current state of the Migration.
- state String
The current state of the Migration resource.
Supporting Types
GetMigrationsFilter
GetMigrationsMigrationCollection
GetMigrationsMigrationCollectionItem
- Advisor
Settings List<GetMigrations Migration Collection Item Advisor Setting> Optional Pre-Migration advisor settings.
- Agent
Id string The OCID of the registered on-premises ODMS Agent. Only valid for Offline Migrations.
- Compartment
Id string The ID of the compartment in which to list resources.
- Credentials
Secret stringId OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
- Data
Transfer List<GetMedium Details Migrations Migration Collection Item Data Transfer Medium Detail> Data Transfer Medium details for the Migration.
- Datapump
Settings List<GetMigrations Migration Collection Item Datapump Setting> Optional settings for Data Pump Export and Import jobs
- Dictionary<string, object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string A filter to return only resources that match the entire display name given.
- Dump
Transfer List<GetDetails Migrations Migration Collection Item Dump Transfer Detail> Optional additional properties for dump transfer.
- Exclude
Objects List<GetMigrations Migration Collection Item Exclude Object> Database objects to exclude from migration. If 'includeObjects' are specified, only exclude object types can be specified with general wildcards (.*) for owner and objectName.
- Executing
Job stringId OCID of the current ODMS Job in execution for the Migration, if any.
- Dictionary<string, object>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Golden
Gate List<GetDetails Migrations Migration Collection Item Golden Gate Detail> Details about Oracle GoldenGate Microservices.
- Id string
The OCID of the resource
- Include
Objects List<GetMigrations Migration Collection Item Include Object> Database objects to include from migration.
- Lifecycle
Details string The lifecycle detailed status of the Migration.
- Source
Container stringDatabase Connection Id The OCID of the Source Container Database Connection.
- Source
Database stringConnection Id The OCID of the Source Database Connection.
- State string
The lifecycle state of the Migration.
- Dictionary<string, object>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Database stringConnection Id The OCID of the Target Database Connection.
- Time
Created string The time the Migration was created. An RFC3339 formatted datetime string.
- Time
Last stringMigration The time of last Migration. An RFC3339 formatted datetime string.
- Time
Updated string The time of the last Migration details update. An RFC3339 formatted datetime string.
- Type string
Migration type.
- Vault
Details List<GetMigrations Migration Collection Item Vault Detail> Oracle Cloud Infrastructure Vault details to store migration and connection credentials secrets
- Wait
After string Name of a migration phase. The Job will wait after executing this phase until the Resume Job endpoint is called.
- Advisor
Settings []GetMigrations Migration Collection Item Advisor Setting Optional Pre-Migration advisor settings.
- Agent
Id string The OCID of the registered on-premises ODMS Agent. Only valid for Offline Migrations.
- Compartment
Id string The ID of the compartment in which to list resources.
- Credentials
Secret stringId OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
- Data
Transfer []GetMedium Details Migrations Migration Collection Item Data Transfer Medium Detail Data Transfer Medium details for the Migration.
- Datapump
Settings []GetMigrations Migration Collection Item Datapump Setting Optional settings for Data Pump Export and Import jobs
- map[string]interface{}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string A filter to return only resources that match the entire display name given.
- Dump
Transfer []GetDetails Migrations Migration Collection Item Dump Transfer Detail Optional additional properties for dump transfer.
- Exclude
Objects []GetMigrations Migration Collection Item Exclude Object Database objects to exclude from migration. If 'includeObjects' are specified, only exclude object types can be specified with general wildcards (.*) for owner and objectName.
- Executing
Job stringId OCID of the current ODMS Job in execution for the Migration, if any.
- map[string]interface{}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Golden
Gate []GetDetails Migrations Migration Collection Item Golden Gate Detail Details about Oracle GoldenGate Microservices.
- Id string
The OCID of the resource
- Include
Objects []GetMigrations Migration Collection Item Include Object Database objects to include from migration.
- Lifecycle
Details string The lifecycle detailed status of the Migration.
- Source
Container stringDatabase Connection Id The OCID of the Source Container Database Connection.
- Source
Database stringConnection Id The OCID of the Source Database Connection.
- State string
The lifecycle state of the Migration.
- map[string]interface{}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Database stringConnection Id The OCID of the Target Database Connection.
- Time
Created string The time the Migration was created. An RFC3339 formatted datetime string.
- Time
Last stringMigration The time of last Migration. An RFC3339 formatted datetime string.
- Time
Updated string The time of the last Migration details update. An RFC3339 formatted datetime string.
- Type string
Migration type.
- Vault
Details []GetMigrations Migration Collection Item Vault Detail Oracle Cloud Infrastructure Vault details to store migration and connection credentials secrets
- Wait
After string Name of a migration phase. The Job will wait after executing this phase until the Resume Job endpoint is called.
- advisor
Settings List<GetMigrations Migration Collection Item Advisor Setting> Optional Pre-Migration advisor settings.
- agent
Id String The OCID of the registered on-premises ODMS Agent. Only valid for Offline Migrations.
- compartment
Id String The ID of the compartment in which to list resources.
- credentials
Secret StringId OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
- data
Transfer List<GetMedium Details Migrations Migration Collection Item Data Transfer Medium Detail> Data Transfer Medium details for the Migration.
- datapump
Settings List<GetMigrations Migration Collection Item Datapump Setting> Optional settings for Data Pump Export and Import jobs
- Map<String,Object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String A filter to return only resources that match the entire display name given.
- dump
Transfer List<GetDetails Migrations Migration Collection Item Dump Transfer Detail> Optional additional properties for dump transfer.
- exclude
Objects List<GetMigrations Migration Collection Item Exclude Object> Database objects to exclude from migration. If 'includeObjects' are specified, only exclude object types can be specified with general wildcards (.*) for owner and objectName.
- executing
Job StringId OCID of the current ODMS Job in execution for the Migration, if any.
- Map<String,Object>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- golden
Gate List<GetDetails Migrations Migration Collection Item Golden Gate Detail> Details about Oracle GoldenGate Microservices.
- id String
The OCID of the resource
- include
Objects List<GetMigrations Migration Collection Item Include Object> Database objects to include from migration.
- lifecycle
Details String The lifecycle detailed status of the Migration.
- source
Container StringDatabase Connection Id The OCID of the Source Container Database Connection.
- source
Database StringConnection Id The OCID of the Source Database Connection.
- state String
The lifecycle state of the Migration.
- Map<String,Object>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Database StringConnection Id The OCID of the Target Database Connection.
- time
Created String The time the Migration was created. An RFC3339 formatted datetime string.
- time
Last StringMigration The time of last Migration. An RFC3339 formatted datetime string.
- time
Updated String The time of the last Migration details update. An RFC3339 formatted datetime string.
- type String
Migration type.
- vault
Details List<GetMigrations Migration Collection Item Vault Detail> Oracle Cloud Infrastructure Vault details to store migration and connection credentials secrets
- wait
After String Name of a migration phase. The Job will wait after executing this phase until the Resume Job endpoint is called.
- advisor
Settings GetMigrations Migration Collection Item Advisor Setting[] Optional Pre-Migration advisor settings.
- agent
Id string The OCID of the registered on-premises ODMS Agent. Only valid for Offline Migrations.
- compartment
Id string The ID of the compartment in which to list resources.
- credentials
Secret stringId OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
- data
Transfer GetMedium Details Migrations Migration Collection Item Data Transfer Medium Detail[] Data Transfer Medium details for the Migration.
- datapump
Settings GetMigrations Migration Collection Item Datapump Setting[] Optional settings for Data Pump Export and Import jobs
- {[key: string]: any}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string A filter to return only resources that match the entire display name given.
- dump
Transfer GetDetails Migrations Migration Collection Item Dump Transfer Detail[] Optional additional properties for dump transfer.
- exclude
Objects GetMigrations Migration Collection Item Exclude Object[] Database objects to exclude from migration. If 'includeObjects' are specified, only exclude object types can be specified with general wildcards (.*) for owner and objectName.
- executing
Job stringId OCID of the current ODMS Job in execution for the Migration, if any.
- {[key: string]: any}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- golden
Gate GetDetails Migrations Migration Collection Item Golden Gate Detail[] Details about Oracle GoldenGate Microservices.
- id string
The OCID of the resource
- include
Objects GetMigrations Migration Collection Item Include Object[] Database objects to include from migration.
- lifecycle
Details string The lifecycle detailed status of the Migration.
- source
Container stringDatabase Connection Id The OCID of the Source Container Database Connection.
- source
Database stringConnection Id The OCID of the Source Database Connection.
- state string
The lifecycle state of the Migration.
- {[key: string]: any}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Database stringConnection Id The OCID of the Target Database Connection.
- time
Created string The time the Migration was created. An RFC3339 formatted datetime string.
- time
Last stringMigration The time of last Migration. An RFC3339 formatted datetime string.
- time
Updated string The time of the last Migration details update. An RFC3339 formatted datetime string.
- type string
Migration type.
- vault
Details GetMigrations Migration Collection Item Vault Detail[] Oracle Cloud Infrastructure Vault details to store migration and connection credentials secrets
- wait
After string Name of a migration phase. The Job will wait after executing this phase until the Resume Job endpoint is called.
- advisor_
settings GetMigrations Migration Collection Item Advisor Setting] Optional Pre-Migration advisor settings.
- agent_
id str The OCID of the registered on-premises ODMS Agent. Only valid for Offline Migrations.
- compartment_
id str The ID of the compartment in which to list resources.
- credentials_
secret_ strid OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
- data_
transfer_ Getmedium_ details Migrations Migration Collection Item Data Transfer Medium Detail] Data Transfer Medium details for the Migration.
- datapump_
settings GetMigrations Migration Collection Item Datapump Setting] Optional settings for Data Pump Export and Import jobs
- Mapping[str, Any]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str A filter to return only resources that match the entire display name given.
- dump_
transfer_ Getdetails Migrations Migration Collection Item Dump Transfer Detail] Optional additional properties for dump transfer.
- exclude_
objects GetMigrations Migration Collection Item Exclude Object] Database objects to exclude from migration. If 'includeObjects' are specified, only exclude object types can be specified with general wildcards (.*) for owner and objectName.
- executing_
job_ strid OCID of the current ODMS Job in execution for the Migration, if any.
- Mapping[str, Any]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- golden_
gate_ Getdetails Migrations Migration Collection Item Golden Gate Detail] Details about Oracle GoldenGate Microservices.
- id str
The OCID of the resource
- include_
objects GetMigrations Migration Collection Item Include Object] Database objects to include from migration.
- lifecycle_
details str The lifecycle detailed status of the Migration.
- source_
container_ strdatabase_ connection_ id The OCID of the Source Container Database Connection.
- source_
database_ strconnection_ id The OCID of the Source Database Connection.
- state str
The lifecycle state of the Migration.
- Mapping[str, Any]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target_
database_ strconnection_ id The OCID of the Target Database Connection.
- time_
created str The time the Migration was created. An RFC3339 formatted datetime string.
- time_
last_ strmigration The time of last Migration. An RFC3339 formatted datetime string.
- time_
updated str The time of the last Migration details update. An RFC3339 formatted datetime string.
- type str
Migration type.
- vault_
details GetMigrations Migration Collection Item Vault Detail] Oracle Cloud Infrastructure Vault details to store migration and connection credentials secrets
- wait_
after str Name of a migration phase. The Job will wait after executing this phase until the Resume Job endpoint is called.
- advisor
Settings List<Property Map> Optional Pre-Migration advisor settings.
- agent
Id String The OCID of the registered on-premises ODMS Agent. Only valid for Offline Migrations.
- compartment
Id String The ID of the compartment in which to list resources.
- credentials
Secret StringId OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
- data
Transfer List<Property Map>Medium Details Data Transfer Medium details for the Migration.
- datapump
Settings List<Property Map> Optional settings for Data Pump Export and Import jobs
- Map<Any>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String A filter to return only resources that match the entire display name given.
- dump
Transfer List<Property Map>Details Optional additional properties for dump transfer.
- exclude
Objects List<Property Map> Database objects to exclude from migration. If 'includeObjects' are specified, only exclude object types can be specified with general wildcards (.*) for owner and objectName.
- executing
Job StringId OCID of the current ODMS Job in execution for the Migration, if any.
- Map<Any>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- golden
Gate List<Property Map>Details Details about Oracle GoldenGate Microservices.
- id String
The OCID of the resource
- include
Objects List<Property Map> Database objects to include from migration.
- lifecycle
Details String The lifecycle detailed status of the Migration.
- source
Container StringDatabase Connection Id The OCID of the Source Container Database Connection.
- source
Database StringConnection Id The OCID of the Source Database Connection.
- state String
The lifecycle state of the Migration.
- Map<Any>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Database StringConnection Id The OCID of the Target Database Connection.
- time
Created String The time the Migration was created. An RFC3339 formatted datetime string.
- time
Last StringMigration The time of last Migration. An RFC3339 formatted datetime string.
- time
Updated String The time of the last Migration details update. An RFC3339 formatted datetime string.
- type String
Migration type.
- vault
Details List<Property Map> Oracle Cloud Infrastructure Vault details to store migration and connection credentials secrets
- wait
After String Name of a migration phase. The Job will wait after executing this phase until the Resume Job endpoint is called.
GetMigrationsMigrationCollectionItemAdvisorSetting
- Is
Ignore boolErrors True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
- Is
Skip boolAdvisor True to skip the Pre-Migration Advisor execution. Default is false.
- Is
Ignore boolErrors True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
- Is
Skip boolAdvisor True to skip the Pre-Migration Advisor execution. Default is false.
- is
Ignore BooleanErrors True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
- is
Skip BooleanAdvisor True to skip the Pre-Migration Advisor execution. Default is false.
- is
Ignore booleanErrors True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
- is
Skip booleanAdvisor True to skip the Pre-Migration Advisor execution. Default is false.
- is_
ignore_ boolerrors True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
- is_
skip_ booladvisor True to skip the Pre-Migration Advisor execution. Default is false.
- is
Ignore BooleanErrors True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
- is
Skip BooleanAdvisor True to skip the Pre-Migration Advisor execution. Default is false.
GetMigrationsMigrationCollectionItemDataTransferMediumDetail
- Database
Link List<GetDetails Migrations Migration Collection Item Data Transfer Medium Detail Database Link Detail> Optional details for creating a network database link from Oracle Cloud Infrastructure database to on-premise database.
- Object
Storage List<GetDetails Migrations Migration Collection Item Data Transfer Medium Detail Object Storage Detail> In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- Database
Link []GetDetails Migrations Migration Collection Item Data Transfer Medium Detail Database Link Detail Optional details for creating a network database link from Oracle Cloud Infrastructure database to on-premise database.
- Object
Storage []GetDetails Migrations Migration Collection Item Data Transfer Medium Detail Object Storage Detail In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- database
Link List<GetDetails Migrations Migration Collection Item Data Transfer Medium Detail Database Link Detail> Optional details for creating a network database link from Oracle Cloud Infrastructure database to on-premise database.
- object
Storage List<GetDetails Migrations Migration Collection Item Data Transfer Medium Detail Object Storage Detail> In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- database
Link GetDetails Migrations Migration Collection Item Data Transfer Medium Detail Database Link Detail[] Optional details for creating a network database link from Oracle Cloud Infrastructure database to on-premise database.
- object
Storage GetDetails Migrations Migration Collection Item Data Transfer Medium Detail Object Storage Detail[] In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- database_
link_ Getdetails Migrations Migration Collection Item Data Transfer Medium Detail Database Link Detail] Optional details for creating a network database link from Oracle Cloud Infrastructure database to on-premise database.
- object_
storage_ Getdetails Migrations Migration Collection Item Data Transfer Medium Detail Object Storage Detail] In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- database
Link List<Property Map>Details Optional details for creating a network database link from Oracle Cloud Infrastructure database to on-premise database.
- object
Storage List<Property Map>Details In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
GetMigrationsMigrationCollectionItemDataTransferMediumDetailDatabaseLinkDetail
- Name string
Name of directory object in database
- Wallet
Buckets List<GetMigrations Migration Collection Item Data Transfer Medium Detail Database Link Detail Wallet Bucket> In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- Name string
Name of directory object in database
- Wallet
Buckets []GetMigrations Migration Collection Item Data Transfer Medium Detail Database Link Detail Wallet Bucket In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- name String
Name of directory object in database
- wallet
Buckets List<GetMigrations Migration Collection Item Data Transfer Medium Detail Database Link Detail Wallet Bucket> In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- name string
Name of directory object in database
- wallet
Buckets GetMigrations Migration Collection Item Data Transfer Medium Detail Database Link Detail Wallet Bucket[] In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- name str
Name of directory object in database
- wallet_
buckets GetMigrations Migration Collection Item Data Transfer Medium Detail Database Link Detail Wallet Bucket] In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
- name String
Name of directory object in database
- wallet
Buckets List<Property Map> In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
GetMigrationsMigrationCollectionItemDataTransferMediumDetailDatabaseLinkDetailWalletBucket
GetMigrationsMigrationCollectionItemDataTransferMediumDetailObjectStorageDetail
GetMigrationsMigrationCollectionItemDatapumpSetting
- Data
Pump List<GetParameters Migrations Migration Collection Item Datapump Setting Data Pump Parameter> Optional parameters for Data Pump Export and Import. Refer to Configuring Optional Initial Load Advanced Settings
- Export
Directory List<GetObjects Migrations Migration Collection Item Datapump Setting Export Directory Object> Directory object details, used to define either import or export directory objects in Data Pump Settings.
- Import
Directory List<GetObjects Migrations Migration Collection Item Datapump Setting Import Directory Object> Directory object details, used to define either import or export directory objects in Data Pump Settings.
- Job
Mode string Data Pump job mode. Refer to Data Pump Export Modes
- Metadata
Remaps List<GetMigrations Migration Collection Item Datapump Setting Metadata Remap> Defines remapping to be applied to objects as they are processed. Refer to METADATA_REMAP Procedure
- Data
Pump []GetParameters Migrations Migration Collection Item Datapump Setting Data Pump Parameter Optional parameters for Data Pump Export and Import. Refer to Configuring Optional Initial Load Advanced Settings
- Export
Directory []GetObjects Migrations Migration Collection Item Datapump Setting Export Directory Object Directory object details, used to define either import or export directory objects in Data Pump Settings.
- Import
Directory []GetObjects Migrations Migration Collection Item Datapump Setting Import Directory Object Directory object details, used to define either import or export directory objects in Data Pump Settings.
- Job
Mode string Data Pump job mode. Refer to Data Pump Export Modes
- Metadata
Remaps []GetMigrations Migration Collection Item Datapump Setting Metadata Remap Defines remapping to be applied to objects as they are processed. Refer to METADATA_REMAP Procedure
- data
Pump List<GetParameters Migrations Migration Collection Item Datapump Setting Data Pump Parameter> Optional parameters for Data Pump Export and Import. Refer to Configuring Optional Initial Load Advanced Settings
- export
Directory List<GetObjects Migrations Migration Collection Item Datapump Setting Export Directory Object> Directory object details, used to define either import or export directory objects in Data Pump Settings.
- import
Directory List<GetObjects Migrations Migration Collection Item Datapump Setting Import Directory Object> Directory object details, used to define either import or export directory objects in Data Pump Settings.
- job
Mode String Data Pump job mode. Refer to Data Pump Export Modes
- metadata
Remaps List<GetMigrations Migration Collection Item Datapump Setting Metadata Remap> Defines remapping to be applied to objects as they are processed. Refer to METADATA_REMAP Procedure
- data
Pump GetParameters Migrations Migration Collection Item Datapump Setting Data Pump Parameter[] Optional parameters for Data Pump Export and Import. Refer to Configuring Optional Initial Load Advanced Settings
- export
Directory GetObjects Migrations Migration Collection Item Datapump Setting Export Directory Object[] Directory object details, used to define either import or export directory objects in Data Pump Settings.
- import
Directory GetObjects Migrations Migration Collection Item Datapump Setting Import Directory Object[] Directory object details, used to define either import or export directory objects in Data Pump Settings.
- job
Mode string Data Pump job mode. Refer to Data Pump Export Modes
- metadata
Remaps GetMigrations Migration Collection Item Datapump Setting Metadata Remap[] Defines remapping to be applied to objects as they are processed. Refer to METADATA_REMAP Procedure
- data_
pump_ Getparameters Migrations Migration Collection Item Datapump Setting Data Pump Parameter] Optional parameters for Data Pump Export and Import. Refer to Configuring Optional Initial Load Advanced Settings
- export_
directory_ Getobjects Migrations Migration Collection Item Datapump Setting Export Directory Object] Directory object details, used to define either import or export directory objects in Data Pump Settings.
- import_
directory_ Getobjects Migrations Migration Collection Item Datapump Setting Import Directory Object] Directory object details, used to define either import or export directory objects in Data Pump Settings.
- job_
mode str Data Pump job mode. Refer to Data Pump Export Modes
- metadata_
remaps GetMigrations Migration Collection Item Datapump Setting Metadata Remap] Defines remapping to be applied to objects as they are processed. Refer to METADATA_REMAP Procedure
- data
Pump List<Property Map>Parameters Optional parameters for Data Pump Export and Import. Refer to Configuring Optional Initial Load Advanced Settings
- export
Directory List<Property Map>Objects Directory object details, used to define either import or export directory objects in Data Pump Settings.
- import
Directory List<Property Map>Objects Directory object details, used to define either import or export directory objects in Data Pump Settings.
- job
Mode String Data Pump job mode. Refer to Data Pump Export Modes
- metadata
Remaps List<Property Map> Defines remapping to be applied to objects as they are processed. Refer to METADATA_REMAP Procedure
GetMigrationsMigrationCollectionItemDatapumpSettingDataPumpParameter
- Estimate string
Estimate size of dumps that will be generated.
- Exclude
Parameters List<string> Exclude paratemers for Export and Import.
- Export
Parallelism intDegree Maximum number of worker processes that can be used for a Data Pump Export job.
- Import
Parallelism intDegree Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
- Is
Cluster bool Set to false to force Data Pump worker processes to run on one instance.
- Table
Exists stringAction IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
- Estimate string
Estimate size of dumps that will be generated.
- Exclude
Parameters []string Exclude paratemers for Export and Import.
- Export
Parallelism intDegree Maximum number of worker processes that can be used for a Data Pump Export job.
- Import
Parallelism intDegree Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
- Is
Cluster bool Set to false to force Data Pump worker processes to run on one instance.
- Table
Exists stringAction IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
- estimate String
Estimate size of dumps that will be generated.
- exclude
Parameters List<String> Exclude paratemers for Export and Import.
- export
Parallelism IntegerDegree Maximum number of worker processes that can be used for a Data Pump Export job.
- import
Parallelism IntegerDegree Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
- is
Cluster Boolean Set to false to force Data Pump worker processes to run on one instance.
- table
Exists StringAction IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
- estimate string
Estimate size of dumps that will be generated.
- exclude
Parameters string[] Exclude paratemers for Export and Import.
- export
Parallelism numberDegree Maximum number of worker processes that can be used for a Data Pump Export job.
- import
Parallelism numberDegree Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
- is
Cluster boolean Set to false to force Data Pump worker processes to run on one instance.
- table
Exists stringAction IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
- estimate str
Estimate size of dumps that will be generated.
- exclude_
parameters Sequence[str] Exclude paratemers for Export and Import.
- export_
parallelism_ intdegree Maximum number of worker processes that can be used for a Data Pump Export job.
- import_
parallelism_ intdegree Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
- is_
cluster bool Set to false to force Data Pump worker processes to run on one instance.
- table_
exists_ straction IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
- estimate String
Estimate size of dumps that will be generated.
- exclude
Parameters List<String> Exclude paratemers for Export and Import.
- export
Parallelism NumberDegree Maximum number of worker processes that can be used for a Data Pump Export job.
- import
Parallelism NumberDegree Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
- is
Cluster Boolean Set to false to force Data Pump worker processes to run on one instance.
- table
Exists StringAction IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
GetMigrationsMigrationCollectionItemDatapumpSettingExportDirectoryObject
GetMigrationsMigrationCollectionItemDatapumpSettingImportDirectoryObject
GetMigrationsMigrationCollectionItemDatapumpSettingMetadataRemap
GetMigrationsMigrationCollectionItemDumpTransferDetail
- Sources
List<Get
Migrations Migration Collection Item Dump Transfer Detail Source> Optional additional properties for dump transfer in source or target host. Default kind is CURL
- Targets
List<Get
Migrations Migration Collection Item Dump Transfer Detail Target> Optional additional properties for dump transfer in source or target host. Default kind is CURL
- Sources
[]Get
Migrations Migration Collection Item Dump Transfer Detail Source Optional additional properties for dump transfer in source or target host. Default kind is CURL
- Targets
[]Get
Migrations Migration Collection Item Dump Transfer Detail Target Optional additional properties for dump transfer in source or target host. Default kind is CURL
- sources
List<Get
Migrations Migration Collection Item Dump Transfer Detail Source> Optional additional properties for dump transfer in source or target host. Default kind is CURL
- targets
List<Get
Migrations Migration Collection Item Dump Transfer Detail Target> Optional additional properties for dump transfer in source or target host. Default kind is CURL
- sources
Get
Migrations Migration Collection Item Dump Transfer Detail Source[] Optional additional properties for dump transfer in source or target host. Default kind is CURL
- targets
Get
Migrations Migration Collection Item Dump Transfer Detail Target[] Optional additional properties for dump transfer in source or target host. Default kind is CURL
- sources
Get
Migrations Migration Collection Item Dump Transfer Detail Source] Optional additional properties for dump transfer in source or target host. Default kind is CURL
- targets
Get
Migrations Migration Collection Item Dump Transfer Detail Target] Optional additional properties for dump transfer in source or target host. Default kind is CURL
- sources List<Property Map>
Optional additional properties for dump transfer in source or target host. Default kind is CURL
- targets List<Property Map>
Optional additional properties for dump transfer in source or target host. Default kind is CURL
GetMigrationsMigrationCollectionItemDumpTransferDetailSource
GetMigrationsMigrationCollectionItemDumpTransferDetailTarget
GetMigrationsMigrationCollectionItemExcludeObject
GetMigrationsMigrationCollectionItemGoldenGateDetail
- Hubs
List<Get
Migrations Migration Collection Item Golden Gate Detail Hub> Details about Oracle GoldenGate Microservices.
- Settings
List<Get
Migrations Migration Collection Item Golden Gate Detail Setting> Optional settings for Oracle GoldenGate processes
- Hubs
[]Get
Migrations Migration Collection Item Golden Gate Detail Hub Details about Oracle GoldenGate Microservices.
- Settings
[]Get
Migrations Migration Collection Item Golden Gate Detail Setting Optional settings for Oracle GoldenGate processes
- hubs
List<Get
Migrations Migration Collection Item Golden Gate Detail Hub> Details about Oracle GoldenGate Microservices.
- settings
List<Get
Migrations Migration Collection Item Golden Gate Detail Setting> Optional settings for Oracle GoldenGate processes
- hubs
Get
Migrations Migration Collection Item Golden Gate Detail Hub[] Details about Oracle GoldenGate Microservices.
- settings
Get
Migrations Migration Collection Item Golden Gate Detail Setting[] Optional settings for Oracle GoldenGate processes
- hubs
Get
Migrations Migration Collection Item Golden Gate Detail Hub] Details about Oracle GoldenGate Microservices.
- settings
Get
Migrations Migration Collection Item Golden Gate Detail Setting] Optional settings for Oracle GoldenGate processes
- hubs List<Property Map>
Details about Oracle GoldenGate Microservices.
- settings List<Property Map>
Optional settings for Oracle GoldenGate processes
GetMigrationsMigrationCollectionItemGoldenGateDetailHub
- Compute
Id string OCID of GoldenGate compute instance.
- Rest
Admin List<GetCredentials Migrations Migration Collection Item Golden Gate Detail Hub Rest Admin Credential> Database Administrator Credentials details.
- Source
Container List<GetDb Admin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Container Db Admin Credential> Database Administrator Credentials details.
- Source
Db List<GetAdmin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Db Admin Credential> Database Administrator Credentials details.
- Source
Microservices stringDeployment Name Name of GoldenGate deployment to operate on source database
- Target
Db List<GetAdmin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Target Db Admin Credential> Database Administrator Credentials details.
- Target
Microservices stringDeployment Name Name of GoldenGate deployment to operate on target database
- Url string
Oracle GoldenGate hub's REST endpoint. Refer to https://docs.oracle.com/en/middleware/goldengate/core/19.1/securing/network.html#GUID-A709DA55-111D-455E-8942-C9BDD1E38CAA
- Compute
Id string OCID of GoldenGate compute instance.
- Rest
Admin []GetCredentials Migrations Migration Collection Item Golden Gate Detail Hub Rest Admin Credential Database Administrator Credentials details.
- Source
Container []GetDb Admin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Container Db Admin Credential Database Administrator Credentials details.
- Source
Db []GetAdmin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Db Admin Credential Database Administrator Credentials details.
- Source
Microservices stringDeployment Name Name of GoldenGate deployment to operate on source database
- Target
Db []GetAdmin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Target Db Admin Credential Database Administrator Credentials details.
- Target
Microservices stringDeployment Name Name of GoldenGate deployment to operate on target database
- Url string
Oracle GoldenGate hub's REST endpoint. Refer to https://docs.oracle.com/en/middleware/goldengate/core/19.1/securing/network.html#GUID-A709DA55-111D-455E-8942-C9BDD1E38CAA
- compute
Id String OCID of GoldenGate compute instance.
- rest
Admin List<GetCredentials Migrations Migration Collection Item Golden Gate Detail Hub Rest Admin Credential> Database Administrator Credentials details.
- source
Container List<GetDb Admin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Container Db Admin Credential> Database Administrator Credentials details.
- source
Db List<GetAdmin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Db Admin Credential> Database Administrator Credentials details.
- source
Microservices StringDeployment Name Name of GoldenGate deployment to operate on source database
- target
Db List<GetAdmin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Target Db Admin Credential> Database Administrator Credentials details.
- target
Microservices StringDeployment Name Name of GoldenGate deployment to operate on target database
- url String
Oracle GoldenGate hub's REST endpoint. Refer to https://docs.oracle.com/en/middleware/goldengate/core/19.1/securing/network.html#GUID-A709DA55-111D-455E-8942-C9BDD1E38CAA
- compute
Id string OCID of GoldenGate compute instance.
- rest
Admin GetCredentials Migrations Migration Collection Item Golden Gate Detail Hub Rest Admin Credential[] Database Administrator Credentials details.
- source
Container GetDb Admin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Container Db Admin Credential[] Database Administrator Credentials details.
- source
Db GetAdmin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Db Admin Credential[] Database Administrator Credentials details.
- source
Microservices stringDeployment Name Name of GoldenGate deployment to operate on source database
- target
Db GetAdmin Credentials Migrations Migration Collection Item Golden Gate Detail Hub Target Db Admin Credential[] Database Administrator Credentials details.
- target
Microservices stringDeployment Name Name of GoldenGate deployment to operate on target database
- url string
Oracle GoldenGate hub's REST endpoint. Refer to https://docs.oracle.com/en/middleware/goldengate/core/19.1/securing/network.html#GUID-A709DA55-111D-455E-8942-C9BDD1E38CAA
- compute_
id str OCID of GoldenGate compute instance.
- rest_
admin_ Getcredentials Migrations Migration Collection Item Golden Gate Detail Hub Rest Admin Credential] Database Administrator Credentials details.
- source_
container_ Getdb_ admin_ credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Container Db Admin Credential] Database Administrator Credentials details.
- source_
db_ Getadmin_ credentials Migrations Migration Collection Item Golden Gate Detail Hub Source Db Admin Credential] Database Administrator Credentials details.
- source_
microservices_ strdeployment_ name Name of GoldenGate deployment to operate on source database
- target_
db_ Getadmin_ credentials Migrations Migration Collection Item Golden Gate Detail Hub Target Db Admin Credential] Database Administrator Credentials details.
- target_
microservices_ strdeployment_ name Name of GoldenGate deployment to operate on target database
- url str
Oracle GoldenGate hub's REST endpoint. Refer to https://docs.oracle.com/en/middleware/goldengate/core/19.1/securing/network.html#GUID-A709DA55-111D-455E-8942-C9BDD1E38CAA
- compute
Id String OCID of GoldenGate compute instance.
- rest
Admin List<Property Map>Credentials Database Administrator Credentials details.
- source
Container List<Property Map>Db Admin Credentials Database Administrator Credentials details.
- source
Db List<Property Map>Admin Credentials Database Administrator Credentials details.
- source
Microservices StringDeployment Name Name of GoldenGate deployment to operate on source database
- target
Db List<Property Map>Admin Credentials Database Administrator Credentials details.
- target
Microservices StringDeployment Name Name of GoldenGate deployment to operate on target database
- url String
Oracle GoldenGate hub's REST endpoint. Refer to https://docs.oracle.com/en/middleware/goldengate/core/19.1/securing/network.html#GUID-A709DA55-111D-455E-8942-C9BDD1E38CAA
GetMigrationsMigrationCollectionItemGoldenGateDetailHubRestAdminCredential
GetMigrationsMigrationCollectionItemGoldenGateDetailHubSourceContainerDbAdminCredential
GetMigrationsMigrationCollectionItemGoldenGateDetailHubSourceDbAdminCredential
GetMigrationsMigrationCollectionItemGoldenGateDetailHubTargetDbAdminCredential
GetMigrationsMigrationCollectionItemGoldenGateDetailSetting
- Acceptable
Lag int ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
- Extracts
List<Get
Migrations Migration Collection Item Golden Gate Detail Setting Extract> Parameters for Extract processes.
- Replicats
List<Get
Migrations Migration Collection Item Golden Gate Detail Setting Replicat> Parameters for Replicat processes.
- Acceptable
Lag int ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
- Extracts
[]Get
Migrations Migration Collection Item Golden Gate Detail Setting Extract Parameters for Extract processes.
- Replicats
[]Get
Migrations Migration Collection Item Golden Gate Detail Setting Replicat Parameters for Replicat processes.
- acceptable
Lag Integer ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
- extracts
List<Get
Migrations Migration Collection Item Golden Gate Detail Setting Extract> Parameters for Extract processes.
- replicats
List<Get
Migrations Migration Collection Item Golden Gate Detail Setting Replicat> Parameters for Replicat processes.
- acceptable
Lag number ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
- extracts
Get
Migrations Migration Collection Item Golden Gate Detail Setting Extract[] Parameters for Extract processes.
- replicats
Get
Migrations Migration Collection Item Golden Gate Detail Setting Replicat[] Parameters for Replicat processes.
- acceptable_
lag int ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
- extracts
Get
Migrations Migration Collection Item Golden Gate Detail Setting Extract] Parameters for Extract processes.
- replicats
Get
Migrations Migration Collection Item Golden Gate Detail Setting Replicat] Parameters for Replicat processes.
- acceptable
Lag Number ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
- extracts List<Property Map>
Parameters for Extract processes.
- replicats List<Property Map>
Parameters for Replicat processes.
GetMigrationsMigrationCollectionItemGoldenGateDetailSettingExtract
- Long
Trans intDuration Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
- Performance
Profile string Extract performance.
- Long
Trans intDuration Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
- Performance
Profile string Extract performance.
- long
Trans IntegerDuration Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
- performance
Profile String Extract performance.
- long
Trans numberDuration Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
- performance
Profile string Extract performance.
- long_
trans_ intduration Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
- performance_
profile str Extract performance.
- long
Trans NumberDuration Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
- performance
Profile String Extract performance.
GetMigrationsMigrationCollectionItemGoldenGateDetailSettingReplicat
- Map
Parallelism int Number of threads used to read trail files (valid for Parallel Replicat)
- Max
Apply intParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- Min
Apply intParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- Map
Parallelism int Number of threads used to read trail files (valid for Parallel Replicat)
- Max
Apply intParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- Min
Apply intParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- map
Parallelism Integer Number of threads used to read trail files (valid for Parallel Replicat)
- max
Apply IntegerParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- min
Apply IntegerParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- map
Parallelism number Number of threads used to read trail files (valid for Parallel Replicat)
- max
Apply numberParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- min
Apply numberParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- map_
parallelism int Number of threads used to read trail files (valid for Parallel Replicat)
- max_
apply_ intparallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- min_
apply_ intparallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- map
Parallelism Number Number of threads used to read trail files (valid for Parallel Replicat)
- max
Apply NumberParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
- min
Apply NumberParallelism Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
GetMigrationsMigrationCollectionItemIncludeObject
GetMigrationsMigrationCollectionItemVaultDetail
- Compartment
Id string The ID of the compartment in which to list resources.
- Key
Id string OCID of the vault encryption key
- Vault
Id string OCID of the vault
- Compartment
Id string The ID of the compartment in which to list resources.
- Key
Id string OCID of the vault encryption key
- Vault
Id string OCID of the vault
- compartment
Id String The ID of the compartment in which to list resources.
- key
Id String OCID of the vault encryption key
- vault
Id String OCID of the vault
- compartment
Id string The ID of the compartment in which to list resources.
- key
Id string OCID of the vault encryption key
- vault
Id string OCID of the vault
- compartment_
id str The ID of the compartment in which to list resources.
- key_
id str OCID of the vault encryption key
- vault_
id str OCID of the vault
- compartment
Id String The ID of the compartment in which to list resources.
- key
Id String OCID of the vault encryption key
- vault
Id String OCID of the vault
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.