Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.Functions.getFusionEnvironmentScheduledActivities
This data source provides the list of Fusion Environment Scheduled Activities in Oracle Cloud Infrastructure Fusion Apps service.
Returns a list of ScheduledActivities.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFusionEnvironmentScheduledActivities = oci.Functions.getFusionEnvironmentScheduledActivities({
    fusionEnvironmentId: testFusionEnvironment.id,
    displayName: fusionEnvironmentScheduledActivityDisplayName,
    runCycle: fusionEnvironmentScheduledActivityRunCycle,
    state: fusionEnvironmentScheduledActivityState,
    timeExpectedFinishLessThanOrEqualTo: fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo,
    timeScheduledStartGreaterThanOrEqualTo: fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo,
});
import pulumi
import pulumi_oci as oci
test_fusion_environment_scheduled_activities = oci.Functions.get_fusion_environment_scheduled_activities(fusion_environment_id=test_fusion_environment["id"],
    display_name=fusion_environment_scheduled_activity_display_name,
    run_cycle=fusion_environment_scheduled_activity_run_cycle,
    state=fusion_environment_scheduled_activity_state,
    time_expected_finish_less_than_or_equal_to=fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to,
    time_scheduled_start_greater_than_or_equal_to=fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/functions"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := functions.GetFusionEnvironmentScheduledActivities(ctx, &functions.GetFusionEnvironmentScheduledActivitiesArgs{
			FusionEnvironmentId:                    testFusionEnvironment.Id,
			DisplayName:                            pulumi.StringRef(fusionEnvironmentScheduledActivityDisplayName),
			RunCycle:                               pulumi.StringRef(fusionEnvironmentScheduledActivityRunCycle),
			State:                                  pulumi.StringRef(fusionEnvironmentScheduledActivityState),
			TimeExpectedFinishLessThanOrEqualTo:    pulumi.StringRef(fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo),
			TimeScheduledStartGreaterThanOrEqualTo: pulumi.StringRef(fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo),
		}, 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 testFusionEnvironmentScheduledActivities = Oci.Functions.GetFusionEnvironmentScheduledActivities.Invoke(new()
    {
        FusionEnvironmentId = testFusionEnvironment.Id,
        DisplayName = fusionEnvironmentScheduledActivityDisplayName,
        RunCycle = fusionEnvironmentScheduledActivityRunCycle,
        State = fusionEnvironmentScheduledActivityState,
        TimeExpectedFinishLessThanOrEqualTo = fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo,
        TimeScheduledStartGreaterThanOrEqualTo = fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo,
    });
});
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.GetFusionEnvironmentScheduledActivitiesArgs;
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 testFusionEnvironmentScheduledActivities = FunctionsFunctions.getFusionEnvironmentScheduledActivities(GetFusionEnvironmentScheduledActivitiesArgs.builder()
            .fusionEnvironmentId(testFusionEnvironment.id())
            .displayName(fusionEnvironmentScheduledActivityDisplayName)
            .runCycle(fusionEnvironmentScheduledActivityRunCycle)
            .state(fusionEnvironmentScheduledActivityState)
            .timeExpectedFinishLessThanOrEqualTo(fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo)
            .timeScheduledStartGreaterThanOrEqualTo(fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo)
            .build());
    }
}
variables:
  testFusionEnvironmentScheduledActivities:
    fn::invoke:
      function: oci:Functions:getFusionEnvironmentScheduledActivities
      arguments:
        fusionEnvironmentId: ${testFusionEnvironment.id}
        displayName: ${fusionEnvironmentScheduledActivityDisplayName}
        runCycle: ${fusionEnvironmentScheduledActivityRunCycle}
        state: ${fusionEnvironmentScheduledActivityState}
        timeExpectedFinishLessThanOrEqualTo: ${fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo}
        timeScheduledStartGreaterThanOrEqualTo: ${fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo}
Using getFusionEnvironmentScheduledActivities
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 getFusionEnvironmentScheduledActivities(args: GetFusionEnvironmentScheduledActivitiesArgs, opts?: InvokeOptions): Promise<GetFusionEnvironmentScheduledActivitiesResult>
function getFusionEnvironmentScheduledActivitiesOutput(args: GetFusionEnvironmentScheduledActivitiesOutputArgs, opts?: InvokeOptions): Output<GetFusionEnvironmentScheduledActivitiesResult>def get_fusion_environment_scheduled_activities(display_name: Optional[str] = None,
                                                filters: Optional[Sequence[GetFusionEnvironmentScheduledActivitiesFilter]] = None,
                                                fusion_environment_id: Optional[str] = None,
                                                run_cycle: 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) -> GetFusionEnvironmentScheduledActivitiesResult
def get_fusion_environment_scheduled_activities_output(display_name: Optional[pulumi.Input[str]] = None,
                                                filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFusionEnvironmentScheduledActivitiesFilterArgs]]]] = None,
                                                fusion_environment_id: Optional[pulumi.Input[str]] = None,
                                                run_cycle: 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[GetFusionEnvironmentScheduledActivitiesResult]func GetFusionEnvironmentScheduledActivities(ctx *Context, args *GetFusionEnvironmentScheduledActivitiesArgs, opts ...InvokeOption) (*GetFusionEnvironmentScheduledActivitiesResult, error)
func GetFusionEnvironmentScheduledActivitiesOutput(ctx *Context, args *GetFusionEnvironmentScheduledActivitiesOutputArgs, opts ...InvokeOption) GetFusionEnvironmentScheduledActivitiesResultOutput> Note: This function is named GetFusionEnvironmentScheduledActivities in the Go SDK.
public static class GetFusionEnvironmentScheduledActivities 
{
    public static Task<GetFusionEnvironmentScheduledActivitiesResult> InvokeAsync(GetFusionEnvironmentScheduledActivitiesArgs args, InvokeOptions? opts = null)
    public static Output<GetFusionEnvironmentScheduledActivitiesResult> Invoke(GetFusionEnvironmentScheduledActivitiesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetFusionEnvironmentScheduledActivitiesResult> getFusionEnvironmentScheduledActivities(GetFusionEnvironmentScheduledActivitiesArgs args, InvokeOptions options)
public static Output<GetFusionEnvironmentScheduledActivitiesResult> getFusionEnvironmentScheduledActivities(GetFusionEnvironmentScheduledActivitiesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Functions/getFusionEnvironmentScheduledActivities:getFusionEnvironmentScheduledActivities
  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 Scheduled Activities Filter> 
- RunCycle string
- A filter that returns all resources that match the specified run cycle.
- 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 Scheduled Activities Filter 
- RunCycle string
- A filter that returns all resources that match the specified run cycle.
- 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 Scheduled Activities Filter> 
- runCycle String
- A filter that returns all resources that match the specified run cycle.
- 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 Scheduled Activities Filter[] 
- runCycle string
- A filter that returns all resources that match the specified run cycle.
- 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 Scheduled Activities Filter] 
- run_cycle str
- A filter that returns all resources that match the specified run cycle.
- 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>
- runCycle String
- A filter that returns all resources that match the specified run cycle.
- 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
getFusionEnvironmentScheduledActivities Result
The following output properties are available:
- FusionEnvironment stringId 
- FAaaS Environment Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- ScheduledActivity List<GetCollections Fusion Environment Scheduled Activities Scheduled Activity Collection> 
- The list of scheduled_activity_collection.
- DisplayName string
- scheduled activity display name, can be renamed.
- Filters
List<GetFusion Environment Scheduled Activities Filter> 
- RunCycle string
- run cadence.
- State string
- The current state of the scheduledActivity.
- TimeExpected stringFinish Less Than Or Equal To 
- TimeScheduled stringStart Greater Than Or Equal To 
- FusionEnvironment stringId 
- FAaaS Environment Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- ScheduledActivity []GetCollections Fusion Environment Scheduled Activities Scheduled Activity Collection 
- The list of scheduled_activity_collection.
- DisplayName string
- scheduled activity display name, can be renamed.
- Filters
[]GetFusion Environment Scheduled Activities Filter 
- RunCycle string
- run cadence.
- State string
- The current state of the scheduledActivity.
- TimeExpected stringFinish Less Than Or Equal To 
- TimeScheduled stringStart Greater Than Or Equal To 
- fusionEnvironment StringId 
- FAaaS Environment Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- scheduledActivity List<GetCollections Fusion Environment Scheduled Activities Scheduled Activity Collection> 
- The list of scheduled_activity_collection.
- displayName String
- scheduled activity display name, can be renamed.
- filters
List<GetFusion Environment Scheduled Activities Filter> 
- runCycle String
- run cadence.
- state String
- The current state of the scheduledActivity.
- timeExpected StringFinish Less Than Or Equal To 
- timeScheduled StringStart Greater Than Or Equal To 
- fusionEnvironment stringId 
- FAaaS Environment Identifier.
- id string
- The provider-assigned unique ID for this managed resource.
- scheduledActivity GetCollections Fusion Environment Scheduled Activities Scheduled Activity Collection[] 
- The list of scheduled_activity_collection.
- displayName string
- scheduled activity display name, can be renamed.
- filters
GetFusion Environment Scheduled Activities Filter[] 
- runCycle string
- run cadence.
- state string
- The current state of the scheduledActivity.
- timeExpected stringFinish Less Than Or Equal To 
- timeScheduled stringStart Greater Than Or Equal To 
- fusion_environment_ strid 
- FAaaS Environment Identifier.
- id str
- The provider-assigned unique ID for this managed resource.
- scheduled_activity_ Sequence[Getcollections Fusion Environment Scheduled Activities Scheduled Activity Collection] 
- The list of scheduled_activity_collection.
- display_name str
- scheduled activity display name, can be renamed.
- filters
Sequence[GetFusion Environment Scheduled Activities Filter] 
- run_cycle str
- run cadence.
- state str
- The current state of the scheduledActivity.
- time_expected_ strfinish_ less_ than_ or_ equal_ to 
- time_scheduled_ strstart_ greater_ than_ or_ equal_ to 
- fusionEnvironment StringId 
- FAaaS Environment Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- scheduledActivity List<Property Map>Collections 
- The list of scheduled_activity_collection.
- displayName String
- scheduled activity display name, can be renamed.
- filters List<Property Map>
- runCycle String
- run cadence.
- state String
- The current state of the scheduledActivity.
- timeExpected StringFinish Less Than Or Equal To 
- timeScheduled StringStart Greater Than Or Equal To 
Supporting Types
GetFusionEnvironmentScheduledActivitiesFilter     
GetFusionEnvironmentScheduledActivitiesScheduledActivityCollection       
GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItem        
- Actions
List<GetFusion Environment Scheduled Activities Scheduled Activity Collection Item Action> 
- List of actions
- DelayIn intHours 
- Cumulative delay hours
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- FusionEnvironment stringId 
- unique FusionEnvironment identifier
- Id string
- Unique identifier that is immutable on creation.
- 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.
- RunCycle string
- A filter that returns all resources that match the specified run cycle.
- ServiceAvailability string
- Service availability / impact during scheduled activity execution up down
- State string
- A filter that returns all resources that match the specified status
- TimeAccepted string
- TimeExpected stringFinish 
- Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- TimeFinished string
- The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- TimeScheduled stringStart 
- Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- Actions
[]GetFusion Environment Scheduled Activities Scheduled Activity Collection Item Action 
- List of actions
- DelayIn intHours 
- Cumulative delay hours
- DisplayName string
- A filter to return only resources that match the entire display name given.
- map[string]string
- FusionEnvironment stringId 
- unique FusionEnvironment identifier
- Id string
- Unique identifier that is immutable on creation.
- 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.
- RunCycle string
- A filter that returns all resources that match the specified run cycle.
- ServiceAvailability string
- Service availability / impact during scheduled activity execution up down
- State string
- A filter that returns all resources that match the specified status
- TimeAccepted string
- TimeExpected stringFinish 
- Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- TimeFinished string
- The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- TimeScheduled stringStart 
- Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- actions
List<GetFusion Environment Scheduled Activities Scheduled Activity Collection Item Action> 
- List of actions
- delayIn IntegerHours 
- Cumulative delay hours
- displayName String
- A filter to return only resources that match the entire display name given.
- Map<String,String>
- fusionEnvironment StringId 
- unique FusionEnvironment identifier
- id String
- Unique identifier that is immutable on creation.
- 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.
- runCycle String
- A filter that returns all resources that match the specified run cycle.
- serviceAvailability String
- Service availability / impact during scheduled activity execution up down
- state String
- A filter that returns all resources that match the specified status
- timeAccepted String
- timeExpected StringFinish 
- Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- timeFinished String
- The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- timeScheduled StringStart 
- Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- timeUpdated String
- The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- actions
GetFusion Environment Scheduled Activities Scheduled Activity Collection Item Action[] 
- List of actions
- delayIn numberHours 
- Cumulative delay hours
- displayName string
- A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- fusionEnvironment stringId 
- unique FusionEnvironment identifier
- id string
- Unique identifier that is immutable on creation.
- 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.
- runCycle string
- A filter that returns all resources that match the specified run cycle.
- serviceAvailability string
- Service availability / impact during scheduled activity execution up down
- state string
- A filter that returns all resources that match the specified status
- timeAccepted string
- timeExpected stringFinish 
- Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- timeFinished string
- The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- timeScheduled stringStart 
- Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- timeUpdated string
- The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- actions
Sequence[GetFusion Environment Scheduled Activities Scheduled Activity Collection Item Action] 
- List of actions
- delay_in_ inthours 
- Cumulative delay hours
- display_name str
- A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- fusion_environment_ strid 
- unique FusionEnvironment identifier
- id str
- Unique identifier that is immutable on creation.
- 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.
- run_cycle str
- A filter that returns all resources that match the specified run cycle.
- service_availability str
- Service availability / impact during scheduled activity execution up down
- state str
- A filter that returns all resources that match the specified status
- time_accepted str
- time_expected_ strfinish 
- Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- time_finished str
- The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- time_scheduled_ strstart 
- Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- time_updated str
- The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- actions List<Property Map>
- List of actions
- delayIn NumberHours 
- Cumulative delay hours
- displayName String
- A filter to return only resources that match the entire display name given.
- Map<String>
- fusionEnvironment StringId 
- unique FusionEnvironment identifier
- id String
- Unique identifier that is immutable on creation.
- 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.
- runCycle String
- A filter that returns all resources that match the specified run cycle.
- serviceAvailability String
- Service availability / impact during scheduled activity execution up down
- state String
- A filter that returns all resources that match the specified status
- timeAccepted String
- timeExpected StringFinish 
- Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- timeFinished String
- The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- timeScheduled StringStart 
- Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- timeUpdated String
- The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItemAction         
- ActionType string
- Type of action
- Artifact string
- patch that delivered the vertex update prerequisite
- Category string
- patch artifact category
- Description string
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- Mode string
- A string that describeds whether the change is applied hot or cold
- Qualifier string
- month qualifier
- ReferenceKey string
- Unique identifier of the object that represents the action
- State string
- A filter that returns all resources that match the specified status
- Version string
- name of the repo
- ActionType string
- Type of action
- Artifact string
- patch that delivered the vertex update prerequisite
- Category string
- patch artifact category
- Description string
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- Mode string
- A string that describeds whether the change is applied hot or cold
- Qualifier string
- month qualifier
- ReferenceKey string
- Unique identifier of the object that represents the action
- State string
- A filter that returns all resources that match the specified status
- Version string
- name of the repo
- actionType String
- Type of action
- artifact String
- patch that delivered the vertex update prerequisite
- category String
- patch artifact category
- description String
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- mode String
- A string that describeds whether the change is applied hot or cold
- qualifier String
- month qualifier
- referenceKey String
- Unique identifier of the object that represents the action
- state String
- A filter that returns all resources that match the specified status
- version String
- name of the repo
- actionType string
- Type of action
- artifact string
- patch that delivered the vertex update prerequisite
- category string
- patch artifact category
- description string
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- mode string
- A string that describeds whether the change is applied hot or cold
- qualifier string
- month qualifier
- referenceKey string
- Unique identifier of the object that represents the action
- state string
- A filter that returns all resources that match the specified status
- version string
- name of the repo
- action_type str
- Type of action
- artifact str
- patch that delivered the vertex update prerequisite
- category str
- patch artifact category
- description str
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- mode str
- A string that describeds whether the change is applied hot or cold
- qualifier str
- month qualifier
- reference_key str
- Unique identifier of the object that represents the action
- state str
- A filter that returns all resources that match the specified status
- version str
- name of the repo
- actionType String
- Type of action
- artifact String
- patch that delivered the vertex update prerequisite
- category String
- patch artifact category
- description String
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- mode String
- A string that describeds whether the change is applied hot or cold
- qualifier String
- month qualifier
- referenceKey String
- Unique identifier of the object that represents the action
- state String
- A filter that returns all resources that match the specified status
- version String
- name of the repo
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.
