1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudMigrations
  5. ReplicationSchedule
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

oci.CloudMigrations.ReplicationSchedule

Explore with Pulumi AI

This resource provides the Replication Schedule resource in Oracle Cloud Infrastructure Cloud Migrations service.

Creates a replication schedule.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testReplicationSchedule = new oci.cloudmigrations.ReplicationSchedule("test_replication_schedule", {
    compartmentId: compartmentId,
    displayName: replicationScheduleDisplayName,
    executionRecurrences: replicationScheduleExecutionRecurrences,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    freeformTags: {
        "bar-key": "value",
    },
});
Copy
import pulumi
import pulumi_oci as oci

test_replication_schedule = oci.cloud_migrations.ReplicationSchedule("test_replication_schedule",
    compartment_id=compartment_id,
    display_name=replication_schedule_display_name,
    execution_recurrences=replication_schedule_execution_recurrences,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    freeform_tags={
        "bar-key": "value",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/cloudmigrations"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudmigrations.NewReplicationSchedule(ctx, "test_replication_schedule", &cloudmigrations.ReplicationScheduleArgs{
			CompartmentId:        pulumi.Any(compartmentId),
			DisplayName:          pulumi.Any(replicationScheduleDisplayName),
			ExecutionRecurrences: pulumi.Any(replicationScheduleExecutionRecurrences),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testReplicationSchedule = new Oci.CloudMigrations.ReplicationSchedule("test_replication_schedule", new()
    {
        CompartmentId = compartmentId,
        DisplayName = replicationScheduleDisplayName,
        ExecutionRecurrences = replicationScheduleExecutionRecurrences,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.CloudMigrations.ReplicationSchedule;
import com.pulumi.oci.CloudMigrations.ReplicationScheduleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var testReplicationSchedule = new ReplicationSchedule("testReplicationSchedule", ReplicationScheduleArgs.builder()
            .compartmentId(compartmentId)
            .displayName(replicationScheduleDisplayName)
            .executionRecurrences(replicationScheduleExecutionRecurrences)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .freeformTags(Map.of("bar-key", "value"))
            .build());

    }
}
Copy
resources:
  testReplicationSchedule:
    type: oci:CloudMigrations:ReplicationSchedule
    name: test_replication_schedule
    properties:
      compartmentId: ${compartmentId}
      displayName: ${replicationScheduleDisplayName}
      executionRecurrences: ${replicationScheduleExecutionRecurrences}
      definedTags:
        foo-namespace.bar-key: value
      freeformTags:
        bar-key: value
Copy

Create ReplicationSchedule Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ReplicationSchedule(name: string, args: ReplicationScheduleArgs, opts?: CustomResourceOptions);
@overload
def ReplicationSchedule(resource_name: str,
                        args: ReplicationScheduleArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def ReplicationSchedule(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        compartment_id: Optional[str] = None,
                        display_name: Optional[str] = None,
                        execution_recurrences: Optional[str] = None,
                        defined_tags: Optional[Mapping[str, str]] = None,
                        freeform_tags: Optional[Mapping[str, str]] = None)
func NewReplicationSchedule(ctx *Context, name string, args ReplicationScheduleArgs, opts ...ResourceOption) (*ReplicationSchedule, error)
public ReplicationSchedule(string name, ReplicationScheduleArgs args, CustomResourceOptions? opts = null)
public ReplicationSchedule(String name, ReplicationScheduleArgs args)
public ReplicationSchedule(String name, ReplicationScheduleArgs args, CustomResourceOptions options)
type: oci:CloudMigrations:ReplicationSchedule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ReplicationScheduleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ReplicationScheduleArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ReplicationScheduleArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ReplicationScheduleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ReplicationScheduleArgs
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 replicationScheduleResource = new Oci.CloudMigrations.ReplicationSchedule("replicationScheduleResource", new()
{
    CompartmentId = "string",
    DisplayName = "string",
    ExecutionRecurrences = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := cloudmigrations.NewReplicationSchedule(ctx, "replicationScheduleResource", &cloudmigrations.ReplicationScheduleArgs{
	CompartmentId:        pulumi.String("string"),
	DisplayName:          pulumi.String("string"),
	ExecutionRecurrences: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var replicationScheduleResource = new ReplicationSchedule("replicationScheduleResource", ReplicationScheduleArgs.builder()
    .compartmentId("string")
    .displayName("string")
    .executionRecurrences("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .build());
Copy
replication_schedule_resource = oci.cloud_migrations.ReplicationSchedule("replicationScheduleResource",
    compartment_id="string",
    display_name="string",
    execution_recurrences="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    })
Copy
const replicationScheduleResource = new oci.cloudmigrations.ReplicationSchedule("replicationScheduleResource", {
    compartmentId: "string",
    displayName: "string",
    executionRecurrences: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
});
Copy
type: oci:CloudMigrations:ReplicationSchedule
properties:
    compartmentId: string
    definedTags:
        string: string
    displayName: string
    executionRecurrences: string
    freeformTags:
        string: string
Copy

ReplicationSchedule 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 ReplicationSchedule resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) The OCID of the compartment in which the replication schedule should be created.
DisplayName This property is required. string
(Updatable) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
ExecutionRecurrences This property is required. string
(Updatable) Recurrence specification for replication schedule execution.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags Dictionary<string, string>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

CompartmentId This property is required. string
(Updatable) The OCID of the compartment in which the replication schedule should be created.
DisplayName This property is required. string
(Updatable) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
ExecutionRecurrences This property is required. string
(Updatable) Recurrence specification for replication schedule execution.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags map[string]string

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

compartmentId This property is required. String
(Updatable) The OCID of the compartment in which the replication schedule should be created.
displayName This property is required. String
(Updatable) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
executionRecurrences This property is required. String
(Updatable) Recurrence specification for replication schedule execution.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags Map<String,String>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

compartmentId This property is required. string
(Updatable) The OCID of the compartment in which the replication schedule should be created.
displayName This property is required. string
(Updatable) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
executionRecurrences This property is required. string
(Updatable) Recurrence specification for replication schedule execution.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags {[key: string]: string}

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

compartment_id This property is required. str
(Updatable) The OCID of the compartment in which the replication schedule should be created.
display_name This property is required. str
(Updatable) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
execution_recurrences This property is required. str
(Updatable) Recurrence specification for replication schedule execution.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeform_tags Mapping[str, str]

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

compartmentId This property is required. String
(Updatable) The OCID of the compartment in which the replication schedule should be created.
displayName This property is required. String
(Updatable) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
executionRecurrences This property is required. String
(Updatable) Recurrence specification for replication schedule execution.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags Map<String>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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 ReplicationSchedule resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
The detailed state of the replication schedule.
State string
Current state of the replication schedule.
SystemTags 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 when the replication schedule was created in RFC3339 format.
TimeUpdated string
The time when the replication schedule was last updated in RFC3339 format.
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
The detailed state of the replication schedule.
State string
Current state of the replication schedule.
SystemTags 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 when the replication schedule was created in RFC3339 format.
TimeUpdated string
The time when the replication schedule was last updated in RFC3339 format.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
The detailed state of the replication schedule.
state String
Current state of the replication schedule.
systemTags 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 when the replication schedule was created in RFC3339 format.
timeUpdated String
The time when the replication schedule was last updated in RFC3339 format.
id string
The provider-assigned unique ID for this managed resource.
lifecycleDetails string
The detailed state of the replication schedule.
state string
Current state of the replication schedule.
systemTags {[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 when the replication schedule was created in RFC3339 format.
timeUpdated string
The time when the replication schedule was last updated in RFC3339 format.
id str
The provider-assigned unique ID for this managed resource.
lifecycle_details str
The detailed state of the replication schedule.
state str
Current state of the replication schedule.
system_tags 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 when the replication schedule was created in RFC3339 format.
time_updated str
The time when the replication schedule was last updated in RFC3339 format.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
The detailed state of the replication schedule.
state String
Current state of the replication schedule.
systemTags 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 when the replication schedule was created in RFC3339 format.
timeUpdated String
The time when the replication schedule was last updated in RFC3339 format.

Look up Existing ReplicationSchedule Resource

Get an existing ReplicationSchedule 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?: ReplicationScheduleState, opts?: CustomResourceOptions): ReplicationSchedule
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        execution_recurrences: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        lifecycle_details: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> ReplicationSchedule
func GetReplicationSchedule(ctx *Context, name string, id IDInput, state *ReplicationScheduleState, opts ...ResourceOption) (*ReplicationSchedule, error)
public static ReplicationSchedule Get(string name, Input<string> id, ReplicationScheduleState? state, CustomResourceOptions? opts = null)
public static ReplicationSchedule get(String name, Output<String> id, ReplicationScheduleState state, CustomResourceOptions options)
resources:  _:    type: oci:CloudMigrations:ReplicationSchedule    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
CompartmentId string
(Updatable) The OCID of the compartment in which the replication schedule should be created.
DefinedTags 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) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
ExecutionRecurrences string
(Updatable) Recurrence specification for replication schedule execution.
FreeformTags Dictionary<string, string>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

LifecycleDetails string
The detailed state of the replication schedule.
State string
Current state of the replication schedule.
SystemTags 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 when the replication schedule was created in RFC3339 format.
TimeUpdated string
The time when the replication schedule was last updated in RFC3339 format.
CompartmentId string
(Updatable) The OCID of the compartment in which the replication schedule should be created.
DefinedTags 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) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
ExecutionRecurrences string
(Updatable) Recurrence specification for replication schedule execution.
FreeformTags map[string]string

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

LifecycleDetails string
The detailed state of the replication schedule.
State string
Current state of the replication schedule.
SystemTags 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 when the replication schedule was created in RFC3339 format.
TimeUpdated string
The time when the replication schedule was last updated in RFC3339 format.
compartmentId String
(Updatable) The OCID of the compartment in which the replication schedule should be created.
definedTags 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) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
executionRecurrences String
(Updatable) Recurrence specification for replication schedule execution.
freeformTags Map<String,String>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

lifecycleDetails String
The detailed state of the replication schedule.
state String
Current state of the replication schedule.
systemTags 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 when the replication schedule was created in RFC3339 format.
timeUpdated String
The time when the replication schedule was last updated in RFC3339 format.
compartmentId string
(Updatable) The OCID of the compartment in which the replication schedule should be created.
definedTags {[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) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
executionRecurrences string
(Updatable) Recurrence specification for replication schedule execution.
freeformTags {[key: string]: string}

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

lifecycleDetails string
The detailed state of the replication schedule.
state string
Current state of the replication schedule.
systemTags {[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 when the replication schedule was created in RFC3339 format.
timeUpdated string
The time when the replication schedule was last updated in RFC3339 format.
compartment_id str
(Updatable) The OCID of the compartment in which the replication schedule should be created.
defined_tags 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) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
execution_recurrences str
(Updatable) Recurrence specification for replication schedule execution.
freeform_tags Mapping[str, str]

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

lifecycle_details str
The detailed state of the replication schedule.
state str
Current state of the replication schedule.
system_tags 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 when the replication schedule was created in RFC3339 format.
time_updated str
The time when the replication schedule was last updated in RFC3339 format.
compartmentId String
(Updatable) The OCID of the compartment in which the replication schedule should be created.
definedTags 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) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.
executionRecurrences String
(Updatable) Recurrence specification for replication schedule execution.
freeformTags Map<String>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. It exists only for cross-compatibility. Example: {"bar-key": "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

lifecycleDetails String
The detailed state of the replication schedule.
state String
Current state of the replication schedule.
systemTags 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 when the replication schedule was created in RFC3339 format.
timeUpdated String
The time when the replication schedule was last updated in RFC3339 format.

Import

ReplicationSchedules can be imported using the id, e.g.

$ pulumi import oci:CloudMigrations/replicationSchedule:ReplicationSchedule test_replication_schedule "id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.