import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Fusion Environment Refresh Activity resource in Oracle Cloud Infrastructure Fusion Apps service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/fusion-applications/latest/FusionEnvironmentRefreshActivity * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/fusionapps * * Creates a new RefreshActivity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFusionEnvironmentRefreshActivity = new oci.fusionapps.FusionEnvironmentRefreshActivity("test_fusion_environment_refresh_activity", { * fusionEnvironmentId: testFusionEnvironment.id, * sourceFusionEnvironmentId: testFusionEnvironment.id, * isDataMaskingOpted: fusionEnvironmentRefreshActivityIsDataMaskingOpted === "true", * timeScheduledStart: fusionEnvironmentRefreshActivityTimeScheduledStart, * }); * ``` * * ## Import * * FusionEnvironmentRefreshActivities can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:FusionApps/fusionEnvironmentRefreshActivity:FusionEnvironmentRefreshActivity test_fusion_environment_refresh_activity "fusionEnvironments/{fusionEnvironmentId}/refreshActivities/{refreshActivityId}" * ``` */ export declare class FusionEnvironmentRefreshActivity extends pulumi.CustomResource { /** * Get an existing FusionEnvironmentRefreshActivity resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: FusionEnvironmentRefreshActivityState, opts?: pulumi.CustomResourceOptions): FusionEnvironmentRefreshActivity; /** * Returns true if the given object is an instance of FusionEnvironmentRefreshActivity. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FusionEnvironmentRefreshActivity; /** * A friendly name for the refresh activity. Can be changed later. */ readonly displayName: pulumi.Output; /** * unique FusionEnvironment identifier */ readonly fusionEnvironmentId: pulumi.Output; /** * Represents if the customer opted for Data Masking or not during refreshActivity. */ readonly isDataMaskingOpted: pulumi.Output; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: pulumi.Output; readonly refreshActivityId: pulumi.Output; /** * Details of refresh investigation information, each item represents a different issue. */ readonly refreshIssueDetailsLists: pulumi.Output; /** * Service availability / impact during refresh activity execution up down */ readonly serviceAvailability: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment */ readonly sourceFusionEnvironmentId: pulumi.Output; /** * The current state of the refreshActivity. */ readonly state: pulumi.Output; /** * The time the refresh activity record was created. An RFC3339 formatted datetime string. */ readonly timeAccepted: pulumi.Output; /** * The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string. */ readonly timeExpectedFinish: pulumi.Output; /** * The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string. */ readonly timeFinished: pulumi.Output; /** * The date and time of the most recent source environment backup used for the environment refresh. */ readonly timeOfRestorationPoint: pulumi.Output; /** * The time the refresh activity record was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: pulumi.Output; /** * Create a FusionEnvironmentRefreshActivity resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: FusionEnvironmentRefreshActivityArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FusionEnvironmentRefreshActivity resources. */ export interface FusionEnvironmentRefreshActivityState { /** * A friendly name for the refresh activity. Can be changed later. */ displayName?: pulumi.Input; /** * unique FusionEnvironment identifier */ fusionEnvironmentId?: pulumi.Input; /** * Represents if the customer opted for Data Masking or not during refreshActivity. */ isDataMaskingOpted?: pulumi.Input; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ lifecycleDetails?: pulumi.Input; refreshActivityId?: pulumi.Input; /** * Details of refresh investigation information, each item represents a different issue. */ refreshIssueDetailsLists?: pulumi.Input[] | undefined>; /** * Service availability / impact during refresh activity execution up down */ serviceAvailability?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment */ sourceFusionEnvironmentId?: pulumi.Input; /** * The current state of the refreshActivity. */ state?: pulumi.Input; /** * The time the refresh activity record was created. An RFC3339 formatted datetime string. */ timeAccepted?: pulumi.Input; /** * The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string. */ timeExpectedFinish?: pulumi.Input; /** * The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string. */ timeFinished?: pulumi.Input; /** * The date and time of the most recent source environment backup used for the environment refresh. */ timeOfRestorationPoint?: pulumi.Input; /** * The time the refresh activity record was updated. An RFC3339 formatted datetime string. */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a FusionEnvironmentRefreshActivity resource. */ export interface FusionEnvironmentRefreshActivityArgs { /** * unique FusionEnvironment identifier */ fusionEnvironmentId: pulumi.Input; /** * Represents if the customer opted for Data Masking or not during refreshActivity. */ isDataMaskingOpted?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source environment */ sourceFusionEnvironmentId: pulumi.Input; } //# sourceMappingURL=fusionEnvironmentRefreshActivity.d.ts.map