Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Functions.getFusionEnvironmentRefreshActivities
Explore with Pulumi AI
This data source provides the list of Fusion Environment Refresh Activities in Oracle Cloud Infrastructure Fusion Apps service.
Returns a list of RefreshActivities.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFusionEnvironmentRefreshActivities = oci.Functions.getFusionEnvironmentRefreshActivities({
    fusionEnvironmentId: testFusionEnvironment.id,
    displayName: fusionEnvironmentRefreshActivityDisplayName,
    state: fusionEnvironmentRefreshActivityState,
    timeExpectedFinishLessThanOrEqualTo: fusionEnvironmentRefreshActivityTimeExpectedFinishLessThanOrEqualTo,
    timeScheduledStartGreaterThanOrEqualTo: fusionEnvironmentRefreshActivityTimeScheduledStartGreaterThanOrEqualTo,
});
import pulumi
import pulumi_oci as oci
test_fusion_environment_refresh_activities = oci.Functions.get_fusion_environment_refresh_activities(fusion_environment_id=test_fusion_environment["id"],
    display_name=fusion_environment_refresh_activity_display_name,
    state=fusion_environment_refresh_activity_state,
    time_expected_finish_less_than_or_equal_to=fusion_environment_refresh_activity_time_expected_finish_less_than_or_equal_to,
    time_scheduled_start_greater_than_or_equal_to=fusion_environment_refresh_activity_time_scheduled_start_greater_than_or_equal_to)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/functions"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := functions.GetFusionEnvironmentRefreshActivities(ctx, &functions.GetFusionEnvironmentRefreshActivitiesArgs{
			FusionEnvironmentId:                    testFusionEnvironment.Id,
			DisplayName:                            pulumi.StringRef(fusionEnvironmentRefreshActivityDisplayName),
			State:                                  pulumi.StringRef(fusionEnvironmentRefreshActivityState),
			TimeExpectedFinishLessThanOrEqualTo:    pulumi.StringRef(fusionEnvironmentRefreshActivityTimeExpectedFinishLessThanOrEqualTo),
			TimeScheduledStartGreaterThanOrEqualTo: pulumi.StringRef(fusionEnvironmentRefreshActivityTimeScheduledStartGreaterThanOrEqualTo),
		}, nil)
		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 testFusionEnvironmentRefreshActivities = Oci.Functions.GetFusionEnvironmentRefreshActivities.Invoke(new()
    {
        FusionEnvironmentId = testFusionEnvironment.Id,
        DisplayName = fusionEnvironmentRefreshActivityDisplayName,
        State = fusionEnvironmentRefreshActivityState,
        TimeExpectedFinishLessThanOrEqualTo = fusionEnvironmentRefreshActivityTimeExpectedFinishLessThanOrEqualTo,
        TimeScheduledStartGreaterThanOrEqualTo = fusionEnvironmentRefreshActivityTimeScheduledStartGreaterThanOrEqualTo,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Functions.FunctionsFunctions;
import com.pulumi.oci.Functions.inputs.GetFusionEnvironmentRefreshActivitiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testFusionEnvironmentRefreshActivities = FunctionsFunctions.getFusionEnvironmentRefreshActivities(GetFusionEnvironmentRefreshActivitiesArgs.builder()
            .fusionEnvironmentId(testFusionEnvironment.id())
            .displayName(fusionEnvironmentRefreshActivityDisplayName)
            .state(fusionEnvironmentRefreshActivityState)
            .timeExpectedFinishLessThanOrEqualTo(fusionEnvironmentRefreshActivityTimeExpectedFinishLessThanOrEqualTo)
            .timeScheduledStartGreaterThanOrEqualTo(fusionEnvironmentRefreshActivityTimeScheduledStartGreaterThanOrEqualTo)
            .build());
    }
}
variables:
  testFusionEnvironmentRefreshActivities:
    fn::invoke:
      function: oci:Functions:getFusionEnvironmentRefreshActivities
      arguments:
        fusionEnvironmentId: ${testFusionEnvironment.id}
        displayName: ${fusionEnvironmentRefreshActivityDisplayName}
        state: ${fusionEnvironmentRefreshActivityState}
        timeExpectedFinishLessThanOrEqualTo: ${fusionEnvironmentRefreshActivityTimeExpectedFinishLessThanOrEqualTo}
        timeScheduledStartGreaterThanOrEqualTo: ${fusionEnvironmentRefreshActivityTimeScheduledStartGreaterThanOrEqualTo}
Using getFusionEnvironmentRefreshActivities
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getFusionEnvironmentRefreshActivities(args: GetFusionEnvironmentRefreshActivitiesArgs, opts?: InvokeOptions): Promise<GetFusionEnvironmentRefreshActivitiesResult>
function getFusionEnvironmentRefreshActivitiesOutput(args: GetFusionEnvironmentRefreshActivitiesOutputArgs, opts?: InvokeOptions): Output<GetFusionEnvironmentRefreshActivitiesResult>def get_fusion_environment_refresh_activities(display_name: Optional[str] = None,
                                              filters: Optional[Sequence[GetFusionEnvironmentRefreshActivitiesFilter]] = None,
                                              fusion_environment_id: Optional[str] = None,
                                              state: Optional[str] = None,
                                              time_expected_finish_less_than_or_equal_to: Optional[str] = None,
                                              time_scheduled_start_greater_than_or_equal_to: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetFusionEnvironmentRefreshActivitiesResult
def get_fusion_environment_refresh_activities_output(display_name: Optional[pulumi.Input[str]] = None,
                                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFusionEnvironmentRefreshActivitiesFilterArgs]]]] = None,
                                              fusion_environment_id: Optional[pulumi.Input[str]] = None,
                                              state: Optional[pulumi.Input[str]] = None,
                                              time_expected_finish_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                              time_scheduled_start_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetFusionEnvironmentRefreshActivitiesResult]func GetFusionEnvironmentRefreshActivities(ctx *Context, args *GetFusionEnvironmentRefreshActivitiesArgs, opts ...InvokeOption) (*GetFusionEnvironmentRefreshActivitiesResult, error)
func GetFusionEnvironmentRefreshActivitiesOutput(ctx *Context, args *GetFusionEnvironmentRefreshActivitiesOutputArgs, opts ...InvokeOption) GetFusionEnvironmentRefreshActivitiesResultOutput> Note: This function is named GetFusionEnvironmentRefreshActivities in the Go SDK.
public static class GetFusionEnvironmentRefreshActivities 
{
    public static Task<GetFusionEnvironmentRefreshActivitiesResult> InvokeAsync(GetFusionEnvironmentRefreshActivitiesArgs args, InvokeOptions? opts = null)
    public static Output<GetFusionEnvironmentRefreshActivitiesResult> Invoke(GetFusionEnvironmentRefreshActivitiesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetFusionEnvironmentRefreshActivitiesResult> getFusionEnvironmentRefreshActivities(GetFusionEnvironmentRefreshActivitiesArgs args, InvokeOptions options)
public static Output<GetFusionEnvironmentRefreshActivitiesResult> getFusionEnvironmentRefreshActivities(GetFusionEnvironmentRefreshActivitiesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Functions/getFusionEnvironmentRefreshActivities:getFusionEnvironmentRefreshActivities
  arguments:
    # arguments dictionaryThe following arguments are supported:
- FusionEnvironment stringId 
- unique FusionEnvironment identifier
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
List<GetFusion Environment Refresh Activities Filter> 
- State string
- A filter that returns all resources that match the specified status
- TimeExpected stringFinish Less Than Or Equal To 
- A filter that returns all resources that end before this date
- TimeScheduled stringStart Greater Than Or Equal To 
- A filter that returns all resources that are scheduled after this date
- FusionEnvironment stringId 
- unique FusionEnvironment identifier
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
[]GetFusion Environment Refresh Activities Filter 
- State string
- A filter that returns all resources that match the specified status
- TimeExpected stringFinish Less Than Or Equal To 
- A filter that returns all resources that end before this date
- TimeScheduled stringStart Greater Than Or Equal To 
- A filter that returns all resources that are scheduled after this date
- fusionEnvironment StringId 
- unique FusionEnvironment identifier
- displayName String
- A filter to return only resources that match the entire display name given.
- filters
List<GetFusion Environment Refresh Activities Filter> 
- state String
- A filter that returns all resources that match the specified status
- timeExpected StringFinish Less Than Or Equal To 
- A filter that returns all resources that end before this date
- timeScheduled StringStart Greater Than Or Equal To 
- A filter that returns all resources that are scheduled after this date
- fusionEnvironment stringId 
- unique FusionEnvironment identifier
- displayName string
- A filter to return only resources that match the entire display name given.
- filters
GetFusion Environment Refresh Activities Filter[] 
- state string
- A filter that returns all resources that match the specified status
- timeExpected stringFinish Less Than Or Equal To 
- A filter that returns all resources that end before this date
- timeScheduled stringStart Greater Than Or Equal To 
- A filter that returns all resources that are scheduled after this date
- fusion_environment_ strid 
- unique FusionEnvironment identifier
- display_name str
- A filter to return only resources that match the entire display name given.
- filters
Sequence[GetFusion Environment Refresh Activities Filter] 
- state str
- A filter that returns all resources that match the specified status
- time_expected_ strfinish_ less_ than_ or_ equal_ to 
- A filter that returns all resources that end before this date
- time_scheduled_ strstart_ greater_ than_ or_ equal_ to 
- A filter that returns all resources that are scheduled after this date
- fusionEnvironment StringId 
- unique FusionEnvironment identifier
- displayName String
- A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- state String
- A filter that returns all resources that match the specified status
- timeExpected StringFinish Less Than Or Equal To 
- A filter that returns all resources that end before this date
- timeScheduled StringStart Greater Than Or Equal To 
- A filter that returns all resources that are scheduled after this date
getFusionEnvironmentRefreshActivities Result
The following output properties are available:
- FusionEnvironment stringId 
- Id string
- The provider-assigned unique ID for this managed resource.
- RefreshActivity List<GetCollections Fusion Environment Refresh Activities Refresh Activity Collection> 
- The list of refresh_activity_collection.
- DisplayName string
- A friendly name for the refresh activity. Can be changed later.
- Filters
List<GetFusion Environment Refresh Activities Filter> 
- State string
- The current state of the refreshActivity.
- TimeExpected stringFinish Less Than Or Equal To 
- TimeScheduled stringStart Greater Than Or Equal To 
- FusionEnvironment stringId 
- Id string
- The provider-assigned unique ID for this managed resource.
- RefreshActivity []GetCollections Fusion Environment Refresh Activities Refresh Activity Collection 
- The list of refresh_activity_collection.
- DisplayName string
- A friendly name for the refresh activity. Can be changed later.
- Filters
[]GetFusion Environment Refresh Activities Filter 
- State string
- The current state of the refreshActivity.
- TimeExpected stringFinish Less Than Or Equal To 
- TimeScheduled stringStart Greater Than Or Equal To 
- fusionEnvironment StringId 
- id String
- The provider-assigned unique ID for this managed resource.
- refreshActivity List<GetCollections Fusion Environment Refresh Activities Refresh Activity Collection> 
- The list of refresh_activity_collection.
- displayName String
- A friendly name for the refresh activity. Can be changed later.
- filters
List<GetFusion Environment Refresh Activities Filter> 
- state String
- The current state of the refreshActivity.
- timeExpected StringFinish Less Than Or Equal To 
- timeScheduled StringStart Greater Than Or Equal To 
- fusionEnvironment stringId 
- id string
- The provider-assigned unique ID for this managed resource.
- refreshActivity GetCollections Fusion Environment Refresh Activities Refresh Activity Collection[] 
- The list of refresh_activity_collection.
- displayName string
- A friendly name for the refresh activity. Can be changed later.
- filters
GetFusion Environment Refresh Activities Filter[] 
- state string
- The current state of the refreshActivity.
- timeExpected stringFinish Less Than Or Equal To 
- timeScheduled stringStart Greater Than Or Equal To 
- fusion_environment_ strid 
- id str
- The provider-assigned unique ID for this managed resource.
- refresh_activity_ Sequence[Getcollections Fusion Environment Refresh Activities Refresh Activity Collection] 
- The list of refresh_activity_collection.
- display_name str
- A friendly name for the refresh activity. Can be changed later.
- filters
Sequence[GetFusion Environment Refresh Activities Filter] 
- state str
- The current state of the refreshActivity.
- time_expected_ strfinish_ less_ than_ or_ equal_ to 
- time_scheduled_ strstart_ greater_ than_ or_ equal_ to 
- fusionEnvironment StringId 
- id String
- The provider-assigned unique ID for this managed resource.
- refreshActivity List<Property Map>Collections 
- The list of refresh_activity_collection.
- displayName String
- A friendly name for the refresh activity. Can be changed later.
- filters List<Property Map>
- state String
- The current state of the refreshActivity.
- timeExpected StringFinish Less Than Or Equal To 
- timeScheduled StringStart Greater Than Or Equal To 
Supporting Types
GetFusionEnvironmentRefreshActivitiesFilter     
GetFusionEnvironmentRefreshActivitiesRefreshActivityCollection       
GetFusionEnvironmentRefreshActivitiesRefreshActivityCollectionItem        
- DisplayName string
- A filter to return only resources that match the entire display name given.
- FusionEnvironment stringId 
- unique FusionEnvironment identifier
- Id string
- The unique identifier (OCID) of the refresh activity. Can't be changed after creation.
- IsData boolMasking Opted 
- Represents if the customer opted for Data Masking or not during refreshActivity.
- 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.
- RefreshActivity stringId 
- RefreshIssue List<GetDetails Lists Fusion Environment Refresh Activities Refresh Activity Collection Item Refresh Issue Details List> 
- Details of refresh investigation information, each item represents a different issue.
- ServiceAvailability string
- Service availability / impact during refresh activity execution up down
- SourceFusion stringEnvironment Id 
- The OCID of the Fusion environment that is the source environment for the refresh.
- State string
- A filter that returns all resources that match the specified status
- TimeAccepted string
- The time the refresh activity record was created. An RFC3339 formatted datetime string.
- TimeExpected stringFinish 
- 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.
- TimeOf stringRestoration Point 
- 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 filter to return only resources that match the entire display name given.
- FusionEnvironment stringId 
- unique FusionEnvironment identifier
- Id string
- The unique identifier (OCID) of the refresh activity. Can't be changed after creation.
- IsData boolMasking Opted 
- Represents if the customer opted for Data Masking or not during refreshActivity.
- 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.
- RefreshActivity stringId 
- RefreshIssue []GetDetails Lists Fusion Environment Refresh Activities Refresh Activity Collection Item Refresh Issue Details List 
- Details of refresh investigation information, each item represents a different issue.
- ServiceAvailability string
- Service availability / impact during refresh activity execution up down
- SourceFusion stringEnvironment Id 
- The OCID of the Fusion environment that is the source environment for the refresh.
- State string
- A filter that returns all resources that match the specified status
- TimeAccepted string
- The time the refresh activity record was created. An RFC3339 formatted datetime string.
- TimeExpected stringFinish 
- 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.
- TimeOf stringRestoration Point 
- 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 filter to return only resources that match the entire display name given.
- fusionEnvironment StringId 
- unique FusionEnvironment identifier
- id String
- The unique identifier (OCID) of the refresh activity. Can't be changed after creation.
- isData BooleanMasking Opted 
- Represents if the customer opted for Data Masking or not during refreshActivity.
- 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.
- refreshActivity StringId 
- refreshIssue List<GetDetails Lists Fusion Environment Refresh Activities Refresh Activity Collection Item Refresh Issue Details List> 
- Details of refresh investigation information, each item represents a different issue.
- serviceAvailability String
- Service availability / impact during refresh activity execution up down
- sourceFusion StringEnvironment Id 
- The OCID of the Fusion environment that is the source environment for the refresh.
- state String
- A filter that returns all resources that match the specified status
- timeAccepted String
- The time the refresh activity record was created. An RFC3339 formatted datetime string.
- timeExpected StringFinish 
- 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.
- timeOf StringRestoration Point 
- 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 filter to return only resources that match the entire display name given.
- fusionEnvironment stringId 
- unique FusionEnvironment identifier
- id string
- The unique identifier (OCID) of the refresh activity. Can't be changed after creation.
- isData booleanMasking Opted 
- Represents if the customer opted for Data Masking or not during refreshActivity.
- 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.
- refreshActivity stringId 
- refreshIssue GetDetails Lists Fusion Environment Refresh Activities Refresh Activity Collection Item Refresh Issue Details List[] 
- Details of refresh investigation information, each item represents a different issue.
- serviceAvailability string
- Service availability / impact during refresh activity execution up down
- sourceFusion stringEnvironment Id 
- The OCID of the Fusion environment that is the source environment for the refresh.
- state string
- A filter that returns all resources that match the specified status
- timeAccepted string
- The time the refresh activity record was created. An RFC3339 formatted datetime string.
- timeExpected stringFinish 
- 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.
- timeOf stringRestoration Point 
- 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 filter to return only resources that match the entire display name given.
- fusion_environment_ strid 
- unique FusionEnvironment identifier
- id str
- The unique identifier (OCID) of the refresh activity. Can't be changed after creation.
- is_data_ boolmasking_ opted 
- Represents if the customer opted for Data Masking or not during refreshActivity.
- 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_ strid 
- refresh_issue_ Sequence[Getdetails_ lists Fusion Environment Refresh Activities Refresh Activity Collection Item Refresh Issue Details List] 
- 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_ strenvironment_ id 
- The OCID of the Fusion environment that is the source environment for the refresh.
- state str
- A filter that returns all resources that match the specified status
- time_accepted str
- The time the refresh activity record was created. An RFC3339 formatted datetime string.
- time_expected_ strfinish 
- 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_ strrestoration_ point 
- 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 filter to return only resources that match the entire display name given.
- fusionEnvironment StringId 
- unique FusionEnvironment identifier
- id String
- The unique identifier (OCID) of the refresh activity. Can't be changed after creation.
- isData BooleanMasking Opted 
- Represents if the customer opted for Data Masking or not during refreshActivity.
- 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.
- refreshActivity StringId 
- refreshIssue List<Property Map>Details Lists 
- Details of refresh investigation information, each item represents a different issue.
- serviceAvailability String
- Service availability / impact during refresh activity execution up down
- sourceFusion StringEnvironment Id 
- The OCID of the Fusion environment that is the source environment for the refresh.
- state String
- A filter that returns all resources that match the specified status
- timeAccepted String
- The time the refresh activity record was created. An RFC3339 formatted datetime string.
- timeExpected StringFinish 
- 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.
- timeOf StringRestoration Point 
- 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.
GetFusionEnvironmentRefreshActivitiesRefreshActivityCollectionItemRefreshIssueDetailsList            
- 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.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.