1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudMigrations
  5. ReplicationSchedule
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.CloudMigrations.ReplicationSchedule

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    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",
        },
    });
    
    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",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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" },
            },
        });
    
    });
    
    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());
    
        }
    }
    
    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
    

    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, Any]] = None,
                            freeform_tags: Optional[Mapping[str, Any]] = 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 string
    The unique name of the resource.
    args ReplicationScheduleArgs
    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 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 string
    The unique name of the resource.
    args ReplicationScheduleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReplicationScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReplicationScheduleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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", "any" },
        },
        FreeformTags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := CloudMigrations.NewReplicationSchedule(ctx, "replicationScheduleResource", &CloudMigrations.ReplicationScheduleArgs{
    	CompartmentId:        pulumi.String("string"),
    	DisplayName:          pulumi.String("string"),
    	ExecutionRecurrences: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var replicationScheduleResource = new ReplicationSchedule("replicationScheduleResource", ReplicationScheduleArgs.builder()        
        .compartmentId("string")
        .displayName("string")
        .executionRecurrences("string")
        .definedTags(Map.of("string", "any"))
        .freeformTags(Map.of("string", "any"))
        .build());
    
    replication_schedule_resource = oci.cloud_migrations.ReplicationSchedule("replicationScheduleResource",
        compartment_id="string",
        display_name="string",
        execution_recurrences="string",
        defined_tags={
            "string": "any",
        },
        freeform_tags={
            "string": "any",
        })
    
    const replicationScheduleResource = new oci.cloudmigrations.ReplicationSchedule("replicationScheduleResource", {
        compartmentId: "string",
        displayName: "string",
        executionRecurrences: "string",
        definedTags: {
            string: "any",
        },
        freeformTags: {
            string: "any",
        },
    });
    
    type: oci:CloudMigrations:ReplicationSchedule
    properties:
        compartmentId: string
        definedTags:
            string: any
        displayName: string
        executionRecurrences: string
        freeformTags:
            string: any
    

    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

    The ReplicationSchedule resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment in which the replication schedule should be created.
    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.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, object>

    (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 string
    (Updatable) The OCID of the compartment in which the replication schedule should be created.
    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.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]interface{}

    (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 String
    (Updatable) The OCID of the compartment in which the replication schedule should be created.
    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.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,Object>

    (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 string
    (Updatable) The OCID of the compartment in which the replication schedule should be created.
    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.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: any}

    (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 str
    (Updatable) The OCID of the compartment in which the replication schedule should be created.
    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.
    defined_tags Mapping[str, Any]
    (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, Any]

    (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 String
    (Updatable) The OCID of the compartment in which the replication schedule should be created.
    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.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<Any>

    (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, object>
    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]interface{}
    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,Object>
    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]: any}
    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, Any]
    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<Any>
    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, Any]] = None,
            display_name: Optional[str] = None,
            execution_recurrences: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            lifecycle_details: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = 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)
    Resource lookup is not supported in YAML
    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.
    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, object>
    (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, object>

    (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, object>
    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]interface{}
    (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]interface{}

    (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]interface{}
    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,Object>
    (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,Object>

    (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,Object>
    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]: any}
    (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]: any}

    (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]: any}
    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, Any]
    (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, Any]

    (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, Any]
    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<Any>
    (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<Any>

    (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<Any>
    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"
    

    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.
    oci logo
    Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi