oci.DatabaseMigration.Job
Explore with Pulumi AI
Example Usage
Create Job Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Job(name: string, args: JobArgs, opts?: CustomResourceOptions);@overload
def Job(resource_name: str,
        args: JobArgs,
        opts: Optional[ResourceOptions] = None)
@overload
def Job(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        job_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        suspend_trigger: Optional[int] = None)func NewJob(ctx *Context, name string, args JobArgs, opts ...ResourceOption) (*Job, error)public Job(string name, JobArgs args, CustomResourceOptions? opts = null)type: oci:DatabaseMigration:Job
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 JobArgs
- 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 JobArgs
- 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 JobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args JobArgs
- 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 ociJobResource = new Oci.DatabaseMigration.Job("ociJobResource", new()
{
    JobId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    SuspendTrigger = 0,
});
example, err := DatabaseMigration.NewJob(ctx, "ociJobResource", &DatabaseMigration.JobArgs{
	JobId: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	SuspendTrigger: pulumi.Int(0),
})
var ociJobResource = new Job("ociJobResource", JobArgs.builder()
    .jobId("string")
    .definedTags(Map.of("string", "string"))
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .suspendTrigger(0)
    .build());
oci_job_resource = oci.database_migration.Job("ociJobResource",
    job_id="string",
    defined_tags={
        "string": "string",
    },
    display_name="string",
    freeform_tags={
        "string": "string",
    },
    suspend_trigger=0)
const ociJobResource = new oci.databasemigration.Job("ociJobResource", {
    jobId: "string",
    definedTags: {
        string: "string",
    },
    displayName: "string",
    freeformTags: {
        string: "string",
    },
    suspendTrigger: 0,
});
type: oci:DatabaseMigration:Job
properties:
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    jobId: string
    suspendTrigger: 0
Job 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 Job resource accepts the following input properties:
- JobId string
- The OCID of the job
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- (Updatable) Name of the job.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- SuspendTrigger int
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- JobId string
- The OCID of the job
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- (Updatable) Name of the job.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- SuspendTrigger int
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- jobId String
- The OCID of the job
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- (Updatable) Name of the job.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- suspendTrigger Integer
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- jobId string
- The OCID of the job
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName string
- (Updatable) Name of the job.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- suspendTrigger number
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- job_id str
- The OCID of the job
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- display_name str
- (Updatable) Name of the job.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- suspend_trigger int
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- jobId String
- The OCID of the job
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- (Updatable) Name of the job.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- suspendTrigger Number
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
Outputs
All input properties are implicitly available as output properties. Additionally, the Job resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- MigrationId string
- The OCID of the Migration that this job belongs to.
- ParameterFile List<JobVersions Parameter File Version> 
- A list of parameter file versions that can be viewed or edited for the current job.
- Progresses
List<JobProgress> 
- Percent progress of job phase.
- State string
- The current state of the migration job.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the Migration Job was created. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- Type string
- Type of unsupported object
- UnsupportedObjects List<JobUnsupported Object> 
- Database objects not supported.
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- MigrationId string
- The OCID of the Migration that this job belongs to.
- ParameterFile []JobVersions Parameter File Version 
- A list of parameter file versions that can be viewed or edited for the current job.
- Progresses
[]JobProgress 
- Percent progress of job phase.
- State string
- The current state of the migration job.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the Migration Job was created. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- Type string
- Type of unsupported object
- UnsupportedObjects []JobUnsupported Object 
- Database objects not supported.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- migrationId String
- The OCID of the Migration that this job belongs to.
- parameterFile List<JobVersions Parameter File Version> 
- A list of parameter file versions that can be viewed or edited for the current job.
- progresses
List<JobProgress> 
- Percent progress of job phase.
- state String
- The current state of the migration job.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the Migration Job was created. An RFC3339 formatted datetime string
- timeUpdated String
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- type String
- Type of unsupported object
- unsupportedObjects List<JobUnsupported Object> 
- Database objects not supported.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- migrationId string
- The OCID of the Migration that this job belongs to.
- parameterFile JobVersions Parameter File Version[] 
- A list of parameter file versions that can be viewed or edited for the current job.
- progresses
JobProgress[] 
- Percent progress of job phase.
- state string
- The current state of the migration job.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time the Migration Job was created. An RFC3339 formatted datetime string
- timeUpdated string
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- type string
- Type of unsupported object
- unsupportedObjects JobUnsupported Object[] 
- Database objects not supported.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- migration_id str
- The OCID of the Migration that this job belongs to.
- parameter_file_ Sequence[databasemigration.versions Job Parameter File Version] 
- A list of parameter file versions that can be viewed or edited for the current job.
- progresses
Sequence[databasemigration.Job Progress] 
- Percent progress of job phase.
- state str
- The current state of the migration job.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time the Migration Job was created. An RFC3339 formatted datetime string
- time_updated str
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- type str
- Type of unsupported object
- unsupported_objects Sequence[databasemigration.Job Unsupported Object] 
- Database objects not supported.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- migrationId String
- The OCID of the Migration that this job belongs to.
- parameterFile List<Property Map>Versions 
- A list of parameter file versions that can be viewed or edited for the current job.
- progresses List<Property Map>
- Percent progress of job phase.
- state String
- The current state of the migration job.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the Migration Job was created. An RFC3339 formatted datetime string
- timeUpdated String
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- type String
- Type of unsupported object
- unsupportedObjects List<Property Map>
- Database objects not supported.
Look up Existing Job Resource
Get an existing Job 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?: JobState, opts?: CustomResourceOptions): Job@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        job_id: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        migration_id: Optional[str] = None,
        parameter_file_versions: Optional[Sequence[_databasemigration.JobParameterFileVersionArgs]] = None,
        progresses: Optional[Sequence[_databasemigration.JobProgressArgs]] = None,
        state: Optional[str] = None,
        suspend_trigger: Optional[int] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None,
        type: Optional[str] = None,
        unsupported_objects: Optional[Sequence[_databasemigration.JobUnsupportedObjectArgs]] = None) -> Jobfunc GetJob(ctx *Context, name string, id IDInput, state *JobState, opts ...ResourceOption) (*Job, error)public static Job Get(string name, Input<string> id, JobState? state, CustomResourceOptions? opts = null)public static Job get(String name, Output<String> id, JobState state, CustomResourceOptions options)resources:  _:    type: oci:DatabaseMigration:Job    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.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- (Updatable) Name of the job.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- JobId string
- The OCID of the job
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- MigrationId string
- The OCID of the Migration that this job belongs to.
- ParameterFile List<JobVersions Parameter File Version> 
- A list of parameter file versions that can be viewed or edited for the current job.
- Progresses
List<JobProgress> 
- Percent progress of job phase.
- State string
- The current state of the migration job.
- SuspendTrigger int
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the Migration Job was created. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- Type string
- Type of unsupported object
- UnsupportedObjects List<JobUnsupported Object> 
- Database objects not supported.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- (Updatable) Name of the job.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- JobId string
- The OCID of the job
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- MigrationId string
- The OCID of the Migration that this job belongs to.
- ParameterFile []JobVersions Parameter File Version Args 
- A list of parameter file versions that can be viewed or edited for the current job.
- Progresses
[]JobProgress Args 
- Percent progress of job phase.
- State string
- The current state of the migration job.
- SuspendTrigger int
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the Migration Job was created. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- Type string
- Type of unsupported object
- UnsupportedObjects []JobUnsupported Object Args 
- Database objects not supported.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- (Updatable) Name of the job.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- jobId String
- The OCID of the job
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- migrationId String
- The OCID of the Migration that this job belongs to.
- parameterFile List<JobVersions Parameter File Version> 
- A list of parameter file versions that can be viewed or edited for the current job.
- progresses
List<JobProgress> 
- Percent progress of job phase.
- state String
- The current state of the migration job.
- suspendTrigger Integer
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the Migration Job was created. An RFC3339 formatted datetime string
- timeUpdated String
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- type String
- Type of unsupported object
- unsupportedObjects List<JobUnsupported Object> 
- Database objects not supported.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName string
- (Updatable) Name of the job.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- jobId string
- The OCID of the job
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- migrationId string
- The OCID of the Migration that this job belongs to.
- parameterFile JobVersions Parameter File Version[] 
- A list of parameter file versions that can be viewed or edited for the current job.
- progresses
JobProgress[] 
- Percent progress of job phase.
- state string
- The current state of the migration job.
- suspendTrigger number
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time the Migration Job was created. An RFC3339 formatted datetime string
- timeUpdated string
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- type string
- Type of unsupported object
- unsupportedObjects JobUnsupported Object[] 
- Database objects not supported.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- display_name str
- (Updatable) Name of the job.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- job_id str
- The OCID of the job
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- migration_id str
- The OCID of the Migration that this job belongs to.
- parameter_file_ Sequence[databasemigration.versions Job Parameter File Version Args] 
- A list of parameter file versions that can be viewed or edited for the current job.
- progresses
Sequence[databasemigration.Job Progress Args] 
- Percent progress of job phase.
- state str
- The current state of the migration job.
- suspend_trigger int
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time the Migration Job was created. An RFC3339 formatted datetime string
- time_updated str
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- type str
- Type of unsupported object
- unsupported_objects Sequence[databasemigration.Job Unsupported Object Args] 
- Database objects not supported.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- (Updatable) Name of the job.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- jobId String
- The OCID of the job
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- migrationId String
- The OCID of the Migration that this job belongs to.
- parameterFile List<Property Map>Versions 
- A list of parameter file versions that can be viewed or edited for the current job.
- progresses List<Property Map>
- Percent progress of job phase.
- state String
- The current state of the migration job.
- suspendTrigger Number
- (Updatable) An optional property when incremented triggers Suspend. Could be set to any integer value. - ** 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 
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the Migration Job was created. An RFC3339 formatted datetime string
- timeUpdated String
- The time the Migration Job was last updated. An RFC3339 formatted datetime string
- type String
- Type of unsupported object
- unsupportedObjects List<Property Map>
- Database objects not supported.
Supporting Types
JobParameterFileVersion, JobParameterFileVersionArgs        
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- A description to discribe the current parameter file version
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- IsCurrent bool
- Return boolean true/false for the currently in-use parameter file (factory or a versioned file)
- IsFactory bool
- Return true/false for whether the parameter file is oracle provided (Factory)
- Kind string
- Indicator of Parameter File 'kind' (for an EXTRACT or a REPLICAT)
- Name string
- Phase name
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the Migration Job was created. An RFC3339 formatted datetime string
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- A description to discribe the current parameter file version
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- IsCurrent bool
- Return boolean true/false for the currently in-use parameter file (factory or a versioned file)
- IsFactory bool
- Return true/false for whether the parameter file is oracle provided (Factory)
- Kind string
- Indicator of Parameter File 'kind' (for an EXTRACT or a REPLICAT)
- Name string
- Phase name
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the Migration Job was created. An RFC3339 formatted datetime string
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- A description to discribe the current parameter file version
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- isCurrent Boolean
- Return boolean true/false for the currently in-use parameter file (factory or a versioned file)
- isFactory Boolean
- Return true/false for whether the parameter file is oracle provided (Factory)
- kind String
- Indicator of Parameter File 'kind' (for an EXTRACT or a REPLICAT)
- name String
- Phase name
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the Migration Job was created. An RFC3339 formatted datetime string
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- A description to discribe the current parameter file version
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- isCurrent boolean
- Return boolean true/false for the currently in-use parameter file (factory or a versioned file)
- isFactory boolean
- Return true/false for whether the parameter file is oracle provided (Factory)
- kind string
- Indicator of Parameter File 'kind' (for an EXTRACT or a REPLICAT)
- name string
- Phase name
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time the Migration Job was created. An RFC3339 formatted datetime string
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- A description to discribe the current parameter file version
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- is_current bool
- Return boolean true/false for the currently in-use parameter file (factory or a versioned file)
- is_factory bool
- Return true/false for whether the parameter file is oracle provided (Factory)
- kind str
- Indicator of Parameter File 'kind' (for an EXTRACT or a REPLICAT)
- name str
- Phase name
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time the Migration Job was created. An RFC3339 formatted datetime string
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- A description to discribe the current parameter file version
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- isCurrent Boolean
- Return boolean true/false for the currently in-use parameter file (factory or a versioned file)
- isFactory Boolean
- Return true/false for whether the parameter file is oracle provided (Factory)
- kind String
- Indicator of Parameter File 'kind' (for an EXTRACT or a REPLICAT)
- name String
- Phase name
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the Migration Job was created. An RFC3339 formatted datetime string
JobProgress, JobProgressArgs    
- CurrentPhase string
- Current phase of the job.
- CurrentStatus string
- Current status of the job.
- Phases
List<JobProgress Phase> 
- List of phase status for the job.
- CurrentPhase string
- Current phase of the job.
- CurrentStatus string
- Current status of the job.
- Phases
[]JobProgress Phase 
- List of phase status for the job.
- currentPhase String
- Current phase of the job.
- currentStatus String
- Current status of the job.
- phases
List<JobProgress Phase> 
- List of phase status for the job.
- currentPhase string
- Current phase of the job.
- currentStatus string
- Current status of the job.
- phases
JobProgress Phase[] 
- List of phase status for the job.
- current_phase str
- Current phase of the job.
- current_status str
- Current status of the job.
- phases
Sequence[databasemigration.Job Progress Phase] 
- List of phase status for the job.
- currentPhase String
- Current phase of the job.
- currentStatus String
- Current status of the job.
- phases List<Property Map>
- List of phase status for the job.
JobProgressPhase, JobProgressPhaseArgs      
- Action string
- The text describing the action required to fix the issue
- DurationIn intMs 
- Duration of the phase in milliseconds
- EditableParameter List<string>Files 
- Attribute that returns an array of names and types of GoldenGate configuration files that are available for read or update.
- Extracts
List<JobProgress Phase Extract> 
- Summary of phase status results.
- IsAdvisor boolReport Available 
- True if a Pre-Migration Advisor report is available for this phase. False or null if no report is available.
- IsSuspend boolAvailable 
- This is returned as true if the current phase can be suspended.
- Issue string
- The text describing the root cause of the reported issue
- LogLocations List<JobProgress Phase Log Location> 
- Details to access log file in the specified Object Storage bucket, if any.
- Name string
- Phase name
- Progress int
- Percent progress of job phase.
- Status string
- Phase status
- Action string
- The text describing the action required to fix the issue
- DurationIn intMs 
- Duration of the phase in milliseconds
- EditableParameter []stringFiles 
- Attribute that returns an array of names and types of GoldenGate configuration files that are available for read or update.
- Extracts
[]JobProgress Phase Extract 
- Summary of phase status results.
- IsAdvisor boolReport Available 
- True if a Pre-Migration Advisor report is available for this phase. False or null if no report is available.
- IsSuspend boolAvailable 
- This is returned as true if the current phase can be suspended.
- Issue string
- The text describing the root cause of the reported issue
- LogLocations []JobProgress Phase Log Location 
- Details to access log file in the specified Object Storage bucket, if any.
- Name string
- Phase name
- Progress int
- Percent progress of job phase.
- Status string
- Phase status
- action String
- The text describing the action required to fix the issue
- durationIn IntegerMs 
- Duration of the phase in milliseconds
- editableParameter List<String>Files 
- Attribute that returns an array of names and types of GoldenGate configuration files that are available for read or update.
- extracts
List<JobProgress Phase Extract> 
- Summary of phase status results.
- isAdvisor BooleanReport Available 
- True if a Pre-Migration Advisor report is available for this phase. False or null if no report is available.
- isSuspend BooleanAvailable 
- This is returned as true if the current phase can be suspended.
- issue String
- The text describing the root cause of the reported issue
- logLocations List<JobProgress Phase Log Location> 
- Details to access log file in the specified Object Storage bucket, if any.
- name String
- Phase name
- progress Integer
- Percent progress of job phase.
- status String
- Phase status
- action string
- The text describing the action required to fix the issue
- durationIn numberMs 
- Duration of the phase in milliseconds
- editableParameter string[]Files 
- Attribute that returns an array of names and types of GoldenGate configuration files that are available for read or update.
- extracts
JobProgress Phase Extract[] 
- Summary of phase status results.
- isAdvisor booleanReport Available 
- True if a Pre-Migration Advisor report is available for this phase. False or null if no report is available.
- isSuspend booleanAvailable 
- This is returned as true if the current phase can be suspended.
- issue string
- The text describing the root cause of the reported issue
- logLocations JobProgress Phase Log Location[] 
- Details to access log file in the specified Object Storage bucket, if any.
- name string
- Phase name
- progress number
- Percent progress of job phase.
- status string
- Phase status
- action str
- The text describing the action required to fix the issue
- duration_in_ intms 
- Duration of the phase in milliseconds
- editable_parameter_ Sequence[str]files 
- Attribute that returns an array of names and types of GoldenGate configuration files that are available for read or update.
- extracts
Sequence[databasemigration.Job Progress Phase Extract] 
- Summary of phase status results.
- is_advisor_ boolreport_ available 
- True if a Pre-Migration Advisor report is available for this phase. False or null if no report is available.
- is_suspend_ boolavailable 
- This is returned as true if the current phase can be suspended.
- issue str
- The text describing the root cause of the reported issue
- log_locations Sequence[databasemigration.Job Progress Phase Log Location] 
- Details to access log file in the specified Object Storage bucket, if any.
- name str
- Phase name
- progress int
- Percent progress of job phase.
- status str
- Phase status
- action String
- The text describing the action required to fix the issue
- durationIn NumberMs 
- Duration of the phase in milliseconds
- editableParameter List<String>Files 
- Attribute that returns an array of names and types of GoldenGate configuration files that are available for read or update.
- extracts List<Property Map>
- Summary of phase status results.
- isAdvisor BooleanReport Available 
- True if a Pre-Migration Advisor report is available for this phase. False or null if no report is available.
- isSuspend BooleanAvailable 
- This is returned as true if the current phase can be suspended.
- issue String
- The text describing the root cause of the reported issue
- logLocations List<Property Map>
- Details to access log file in the specified Object Storage bucket, if any.
- name String
- Phase name
- progress Number
- Percent progress of job phase.
- status String
- Phase status
JobProgressPhaseExtract, JobProgressPhaseExtractArgs        
JobProgressPhaseLogLocation, JobProgressPhaseLogLocationArgs          
JobUnsupportedObject, JobUnsupportedObjectArgs      
Import
Jobs can be imported using the id, e.g.
$ pulumi import oci:DatabaseMigration/job:Job test_job "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 ociTerraform Provider.