1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FusionApps
  5. FusionEnvironmentRefreshActivity
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.FusionApps.FusionEnvironmentRefreshActivity

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This resource provides the Fusion Environment Refresh Activity resource in Oracle Cloud Infrastructure Fusion Apps service.

    Creates a new RefreshActivity.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testFusionEnvironmentRefreshActivity = new oci.fusionapps.FusionEnvironmentRefreshActivity("testFusionEnvironmentRefreshActivity", {
        fusionEnvironmentId: oci_fusion_apps_fusion_environment.test_fusion_environment.id,
        sourceFusionEnvironmentId: oci_fusion_apps_fusion_environment.test_fusion_environment.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_fusion_environment_refresh_activity = oci.fusion_apps.FusionEnvironmentRefreshActivity("testFusionEnvironmentRefreshActivity",
        fusion_environment_id=oci_fusion_apps_fusion_environment["test_fusion_environment"]["id"],
        source_fusion_environment_id=oci_fusion_apps_fusion_environment["test_fusion_environment"]["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/FusionApps"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := FusionApps.NewFusionEnvironmentRefreshActivity(ctx, "testFusionEnvironmentRefreshActivity", &FusionApps.FusionEnvironmentRefreshActivityArgs{
    			FusionEnvironmentId:       pulumi.Any(oci_fusion_apps_fusion_environment.Test_fusion_environment.Id),
    			SourceFusionEnvironmentId: pulumi.Any(oci_fusion_apps_fusion_environment.Test_fusion_environment.Id),
    		})
    		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 testFusionEnvironmentRefreshActivity = new Oci.FusionApps.FusionEnvironmentRefreshActivity("testFusionEnvironmentRefreshActivity", new()
        {
            FusionEnvironmentId = oci_fusion_apps_fusion_environment.Test_fusion_environment.Id,
            SourceFusionEnvironmentId = oci_fusion_apps_fusion_environment.Test_fusion_environment.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.FusionApps.FusionEnvironmentRefreshActivity;
    import com.pulumi.oci.FusionApps.FusionEnvironmentRefreshActivityArgs;
    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 testFusionEnvironmentRefreshActivity = new FusionEnvironmentRefreshActivity("testFusionEnvironmentRefreshActivity", FusionEnvironmentRefreshActivityArgs.builder()        
                .fusionEnvironmentId(oci_fusion_apps_fusion_environment.test_fusion_environment().id())
                .sourceFusionEnvironmentId(oci_fusion_apps_fusion_environment.test_fusion_environment().id())
                .build());
    
        }
    }
    
    resources:
      testFusionEnvironmentRefreshActivity:
        type: oci:FusionApps:FusionEnvironmentRefreshActivity
        properties:
          #Required
          fusionEnvironmentId: ${oci_fusion_apps_fusion_environment.test_fusion_environment.id}
          sourceFusionEnvironmentId: ${oci_fusion_apps_fusion_environment.test_fusion_environment.id}
    

    Create FusionEnvironmentRefreshActivity Resource

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

    Constructor syntax

    new FusionEnvironmentRefreshActivity(name: string, args: FusionEnvironmentRefreshActivityArgs, opts?: CustomResourceOptions);
    @overload
    def FusionEnvironmentRefreshActivity(resource_name: str,
                                         args: FusionEnvironmentRefreshActivityArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def FusionEnvironmentRefreshActivity(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         fusion_environment_id: Optional[str] = None,
                                         source_fusion_environment_id: Optional[str] = None)
    func NewFusionEnvironmentRefreshActivity(ctx *Context, name string, args FusionEnvironmentRefreshActivityArgs, opts ...ResourceOption) (*FusionEnvironmentRefreshActivity, error)
    public FusionEnvironmentRefreshActivity(string name, FusionEnvironmentRefreshActivityArgs args, CustomResourceOptions? opts = null)
    public FusionEnvironmentRefreshActivity(String name, FusionEnvironmentRefreshActivityArgs args)
    public FusionEnvironmentRefreshActivity(String name, FusionEnvironmentRefreshActivityArgs args, CustomResourceOptions options)
    
    type: oci:FusionApps:FusionEnvironmentRefreshActivity
    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 FusionEnvironmentRefreshActivityArgs
    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 FusionEnvironmentRefreshActivityArgs
    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 FusionEnvironmentRefreshActivityArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FusionEnvironmentRefreshActivityArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FusionEnvironmentRefreshActivityArgs
    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 fusionEnvironmentRefreshActivityResource = new Oci.FusionApps.FusionEnvironmentRefreshActivity("fusionEnvironmentRefreshActivityResource", new()
    {
        FusionEnvironmentId = "string",
        SourceFusionEnvironmentId = "string",
    });
    
    example, err := FusionApps.NewFusionEnvironmentRefreshActivity(ctx, "fusionEnvironmentRefreshActivityResource", &FusionApps.FusionEnvironmentRefreshActivityArgs{
    	FusionEnvironmentId:       pulumi.String("string"),
    	SourceFusionEnvironmentId: pulumi.String("string"),
    })
    
    var fusionEnvironmentRefreshActivityResource = new FusionEnvironmentRefreshActivity("fusionEnvironmentRefreshActivityResource", FusionEnvironmentRefreshActivityArgs.builder()        
        .fusionEnvironmentId("string")
        .sourceFusionEnvironmentId("string")
        .build());
    
    fusion_environment_refresh_activity_resource = oci.fusion_apps.FusionEnvironmentRefreshActivity("fusionEnvironmentRefreshActivityResource",
        fusion_environment_id="string",
        source_fusion_environment_id="string")
    
    const fusionEnvironmentRefreshActivityResource = new oci.fusionapps.FusionEnvironmentRefreshActivity("fusionEnvironmentRefreshActivityResource", {
        fusionEnvironmentId: "string",
        sourceFusionEnvironmentId: "string",
    });
    
    type: oci:FusionApps:FusionEnvironmentRefreshActivity
    properties:
        fusionEnvironmentId: string
        sourceFusionEnvironmentId: string
    

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

    FusionEnvironmentId string
    unique FusionEnvironment identifier
    SourceFusionEnvironmentId string

    The OCID of the source environment

    ** 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

    FusionEnvironmentId string
    unique FusionEnvironment identifier
    SourceFusionEnvironmentId string

    The OCID of the source environment

    ** 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

    fusionEnvironmentId String
    unique FusionEnvironment identifier
    sourceFusionEnvironmentId String

    The OCID of the source environment

    ** 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

    fusionEnvironmentId string
    unique FusionEnvironment identifier
    sourceFusionEnvironmentId string

    The OCID of the source environment

    ** 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

    fusion_environment_id str
    unique FusionEnvironment identifier
    source_fusion_environment_id str

    The OCID of the source environment

    ** 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

    fusionEnvironmentId String
    unique FusionEnvironment identifier
    sourceFusionEnvironmentId String

    The OCID of the source environment

    ** 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 FusionEnvironmentRefreshActivity resource produces the following output properties:

    DisplayName string
    A friendly name for the refresh activity. Can be changed later.
    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.
    RefreshActivityId string
    RefreshIssueDetailsLists List<FusionEnvironmentRefreshActivityRefreshIssueDetailsList>
    Details of refresh investigation information, each item represents a different issue.
    ServiceAvailability string
    Service availability / impact during refresh activity execution up down
    State string
    The current state of the refreshActivity.
    TimeAccepted string
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    TimeExpectedFinish string
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    TimeFinished string
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    TimeOfRestorationPoint string
    The date and time of the most recent source environment backup used for the environment refresh.
    TimeUpdated string
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    DisplayName string
    A friendly name for the refresh activity. Can be changed later.
    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.
    RefreshActivityId string
    RefreshIssueDetailsLists []FusionEnvironmentRefreshActivityRefreshIssueDetailsList
    Details of refresh investigation information, each item represents a different issue.
    ServiceAvailability string
    Service availability / impact during refresh activity execution up down
    State string
    The current state of the refreshActivity.
    TimeAccepted string
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    TimeExpectedFinish string
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    TimeFinished string
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    TimeOfRestorationPoint string
    The date and time of the most recent source environment backup used for the environment refresh.
    TimeUpdated string
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    displayName String
    A friendly name for the refresh activity. Can be changed later.
    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.
    refreshActivityId String
    refreshIssueDetailsLists List<FusionEnvironmentRefreshActivityRefreshIssueDetailsList>
    Details of refresh investigation information, each item represents a different issue.
    serviceAvailability String
    Service availability / impact during refresh activity execution up down
    state String
    The current state of the refreshActivity.
    timeAccepted String
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    timeExpectedFinish String
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    timeFinished String
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    timeOfRestorationPoint String
    The date and time of the most recent source environment backup used for the environment refresh.
    timeUpdated String
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    displayName string
    A friendly name for the refresh activity. Can be changed later.
    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.
    refreshActivityId string
    refreshIssueDetailsLists FusionEnvironmentRefreshActivityRefreshIssueDetailsList[]
    Details of refresh investigation information, each item represents a different issue.
    serviceAvailability string
    Service availability / impact during refresh activity execution up down
    state string
    The current state of the refreshActivity.
    timeAccepted string
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    timeExpectedFinish string
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    timeFinished string
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    timeOfRestorationPoint string
    The date and time of the most recent source environment backup used for the environment refresh.
    timeUpdated string
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    display_name str
    A friendly name for the refresh activity. Can be changed later.
    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.
    refresh_activity_id str
    refresh_issue_details_lists Sequence[fusionapps.FusionEnvironmentRefreshActivityRefreshIssueDetailsList]
    Details of refresh investigation information, each item represents a different issue.
    service_availability str
    Service availability / impact during refresh activity execution up down
    state str
    The current state of the refreshActivity.
    time_accepted str
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    time_expected_finish str
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    time_finished str
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    time_of_restoration_point str
    The date and time of the most recent source environment backup used for the environment refresh.
    time_updated str
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    displayName String
    A friendly name for the refresh activity. Can be changed later.
    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.
    refreshActivityId String
    refreshIssueDetailsLists List<Property Map>
    Details of refresh investigation information, each item represents a different issue.
    serviceAvailability String
    Service availability / impact during refresh activity execution up down
    state String
    The current state of the refreshActivity.
    timeAccepted String
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    timeExpectedFinish String
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    timeFinished String
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    timeOfRestorationPoint String
    The date and time of the most recent source environment backup used for the environment refresh.
    timeUpdated String
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.

    Look up Existing FusionEnvironmentRefreshActivity Resource

    Get an existing FusionEnvironmentRefreshActivity 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?: FusionEnvironmentRefreshActivityState, opts?: CustomResourceOptions): FusionEnvironmentRefreshActivity
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            display_name: Optional[str] = None,
            fusion_environment_id: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            refresh_activity_id: Optional[str] = None,
            refresh_issue_details_lists: Optional[Sequence[_fusionapps.FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgs]] = None,
            service_availability: Optional[str] = None,
            source_fusion_environment_id: Optional[str] = None,
            state: Optional[str] = None,
            time_accepted: Optional[str] = None,
            time_expected_finish: Optional[str] = None,
            time_finished: Optional[str] = None,
            time_of_restoration_point: Optional[str] = None,
            time_updated: Optional[str] = None) -> FusionEnvironmentRefreshActivity
    func GetFusionEnvironmentRefreshActivity(ctx *Context, name string, id IDInput, state *FusionEnvironmentRefreshActivityState, opts ...ResourceOption) (*FusionEnvironmentRefreshActivity, error)
    public static FusionEnvironmentRefreshActivity Get(string name, Input<string> id, FusionEnvironmentRefreshActivityState? state, CustomResourceOptions? opts = null)
    public static FusionEnvironmentRefreshActivity get(String name, Output<String> id, FusionEnvironmentRefreshActivityState 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:
    DisplayName string
    A friendly name for the refresh activity. Can be changed later.
    FusionEnvironmentId string
    unique FusionEnvironment identifier
    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.
    RefreshActivityId string
    RefreshIssueDetailsLists List<FusionEnvironmentRefreshActivityRefreshIssueDetailsList>
    Details of refresh investigation information, each item represents a different issue.
    ServiceAvailability string
    Service availability / impact during refresh activity execution up down
    SourceFusionEnvironmentId string

    The OCID of the source environment

    ** 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

    State string
    The current state of the refreshActivity.
    TimeAccepted string
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    TimeExpectedFinish string
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    TimeFinished string
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    TimeOfRestorationPoint string
    The date and time of the most recent source environment backup used for the environment refresh.
    TimeUpdated string
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    DisplayName string
    A friendly name for the refresh activity. Can be changed later.
    FusionEnvironmentId string
    unique FusionEnvironment identifier
    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.
    RefreshActivityId string
    RefreshIssueDetailsLists []FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgs
    Details of refresh investigation information, each item represents a different issue.
    ServiceAvailability string
    Service availability / impact during refresh activity execution up down
    SourceFusionEnvironmentId string

    The OCID of the source environment

    ** 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

    State string
    The current state of the refreshActivity.
    TimeAccepted string
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    TimeExpectedFinish string
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    TimeFinished string
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    TimeOfRestorationPoint string
    The date and time of the most recent source environment backup used for the environment refresh.
    TimeUpdated string
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    displayName String
    A friendly name for the refresh activity. Can be changed later.
    fusionEnvironmentId String
    unique FusionEnvironment identifier
    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.
    refreshActivityId String
    refreshIssueDetailsLists List<FusionEnvironmentRefreshActivityRefreshIssueDetailsList>
    Details of refresh investigation information, each item represents a different issue.
    serviceAvailability String
    Service availability / impact during refresh activity execution up down
    sourceFusionEnvironmentId String

    The OCID of the source environment

    ** 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

    state String
    The current state of the refreshActivity.
    timeAccepted String
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    timeExpectedFinish String
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    timeFinished String
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    timeOfRestorationPoint String
    The date and time of the most recent source environment backup used for the environment refresh.
    timeUpdated String
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    displayName string
    A friendly name for the refresh activity. Can be changed later.
    fusionEnvironmentId string
    unique FusionEnvironment identifier
    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.
    refreshActivityId string
    refreshIssueDetailsLists FusionEnvironmentRefreshActivityRefreshIssueDetailsList[]
    Details of refresh investigation information, each item represents a different issue.
    serviceAvailability string
    Service availability / impact during refresh activity execution up down
    sourceFusionEnvironmentId string

    The OCID of the source environment

    ** 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

    state string
    The current state of the refreshActivity.
    timeAccepted string
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    timeExpectedFinish string
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    timeFinished string
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    timeOfRestorationPoint string
    The date and time of the most recent source environment backup used for the environment refresh.
    timeUpdated string
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    display_name str
    A friendly name for the refresh activity. Can be changed later.
    fusion_environment_id str
    unique FusionEnvironment identifier
    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.
    refresh_activity_id str
    refresh_issue_details_lists Sequence[fusionapps.FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgs]
    Details of refresh investigation information, each item represents a different issue.
    service_availability str
    Service availability / impact during refresh activity execution up down
    source_fusion_environment_id str

    The OCID of the source environment

    ** 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

    state str
    The current state of the refreshActivity.
    time_accepted str
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    time_expected_finish str
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    time_finished str
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    time_of_restoration_point str
    The date and time of the most recent source environment backup used for the environment refresh.
    time_updated str
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.
    displayName String
    A friendly name for the refresh activity. Can be changed later.
    fusionEnvironmentId String
    unique FusionEnvironment identifier
    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.
    refreshActivityId String
    refreshIssueDetailsLists List<Property Map>
    Details of refresh investigation information, each item represents a different issue.
    serviceAvailability String
    Service availability / impact during refresh activity execution up down
    sourceFusionEnvironmentId String

    The OCID of the source environment

    ** 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

    state String
    The current state of the refreshActivity.
    timeAccepted String
    The time the refresh activity record was created. An RFC3339 formatted datetime string.
    timeExpectedFinish String
    The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.
    timeFinished String
    The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
    timeOfRestorationPoint String
    The date and time of the most recent source environment backup used for the environment refresh.
    timeUpdated String
    The time the refresh activity record was updated. An RFC3339 formatted datetime string.

    Supporting Types

    FusionEnvironmentRefreshActivityRefreshIssueDetailsList, FusionEnvironmentRefreshActivityRefreshIssueDetailsListArgs

    RefreshIssues string
    Detail reasons of refresh failure or validation failure that needs to be shown to customer.
    RefreshIssues string
    Detail reasons of refresh failure or validation failure that needs to be shown to customer.
    refreshIssues String
    Detail reasons of refresh failure or validation failure that needs to be shown to customer.
    refreshIssues string
    Detail reasons of refresh failure or validation failure that needs to be shown to customer.
    refresh_issues str
    Detail reasons of refresh failure or validation failure that needs to be shown to customer.
    refreshIssues String
    Detail reasons of refresh failure or validation failure that needs to be shown to customer.

    Import

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

    $ pulumi import oci:FusionApps/fusionEnvironmentRefreshActivity:FusionEnvironmentRefreshActivity test_fusion_environment_refresh_activity "fusionEnvironments/{fusionEnvironmentId}/refreshActivities/{refreshActivityId}"
    

    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.32.0 published on Thursday, Apr 18, 2024 by Pulumi