1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Functions
  5. getFusionEnvironmentScheduledActivities
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

oci.Functions.getFusionEnvironmentScheduledActivities

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

    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: oci_fusion_apps_fusion_environment.test_fusion_environment.id,
        displayName: _var.fusion_environment_scheduled_activity_display_name,
        runCycle: _var.fusion_environment_scheduled_activity_run_cycle,
        state: _var.fusion_environment_scheduled_activity_state,
        timeExpectedFinishLessThanOrEqualTo: _var.fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to,
        timeScheduledStartGreaterThanOrEqualTo: _var.fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_fusion_environment_scheduled_activities = oci.Functions.get_fusion_environment_scheduled_activities(fusion_environment_id=oci_fusion_apps_fusion_environment["test_fusion_environment"]["id"],
        display_name=var["fusion_environment_scheduled_activity_display_name"],
        run_cycle=var["fusion_environment_scheduled_activity_run_cycle"],
        state=var["fusion_environment_scheduled_activity_state"],
        time_expected_finish_less_than_or_equal_to=var["fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to"],
        time_scheduled_start_greater_than_or_equal_to=var["fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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:                    oci_fusion_apps_fusion_environment.Test_fusion_environment.Id,
    			DisplayName:                            pulumi.StringRef(_var.Fusion_environment_scheduled_activity_display_name),
    			RunCycle:                               pulumi.StringRef(_var.Fusion_environment_scheduled_activity_run_cycle),
    			State:                                  pulumi.StringRef(_var.Fusion_environment_scheduled_activity_state),
    			TimeExpectedFinishLessThanOrEqualTo:    pulumi.StringRef(_var.Fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to),
    			TimeScheduledStartGreaterThanOrEqualTo: pulumi.StringRef(_var.Fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to),
    		}, 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 = oci_fusion_apps_fusion_environment.Test_fusion_environment.Id,
            DisplayName = @var.Fusion_environment_scheduled_activity_display_name,
            RunCycle = @var.Fusion_environment_scheduled_activity_run_cycle,
            State = @var.Fusion_environment_scheduled_activity_state,
            TimeExpectedFinishLessThanOrEqualTo = @var.Fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to,
            TimeScheduledStartGreaterThanOrEqualTo = @var.Fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to,
        });
    
    });
    
    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(oci_fusion_apps_fusion_environment.test_fusion_environment().id())
                .displayName(var_.fusion_environment_scheduled_activity_display_name())
                .runCycle(var_.fusion_environment_scheduled_activity_run_cycle())
                .state(var_.fusion_environment_scheduled_activity_state())
                .timeExpectedFinishLessThanOrEqualTo(var_.fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to())
                .timeScheduledStartGreaterThanOrEqualTo(var_.fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to())
                .build());
    
        }
    }
    
    variables:
      testFusionEnvironmentScheduledActivities:
        fn::invoke:
          Function: oci:Functions:getFusionEnvironmentScheduledActivities
          Arguments:
            fusionEnvironmentId: ${oci_fusion_apps_fusion_environment.test_fusion_environment.id}
            displayName: ${var.fusion_environment_scheduled_activity_display_name}
            runCycle: ${var.fusion_environment_scheduled_activity_run_cycle}
            state: ${var.fusion_environment_scheduled_activity_state}
            timeExpectedFinishLessThanOrEqualTo: ${var.fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to}
            timeScheduledStartGreaterThanOrEqualTo: ${var.fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to}
    

    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[_functions.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[_functions.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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Functions/getFusionEnvironmentScheduledActivities:getFusionEnvironmentScheduledActivities
      arguments:
        # arguments dictionary

    The following arguments are supported:

    FusionEnvironmentId string
    unique FusionEnvironment identifier
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetFusionEnvironmentScheduledActivitiesFilter>
    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
    TimeExpectedFinishLessThanOrEqualTo string
    A filter that returns all resources that end before this date
    TimeScheduledStartGreaterThanOrEqualTo string
    A filter that returns all resources that are scheduled after this date
    FusionEnvironmentId string
    unique FusionEnvironment identifier
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetFusionEnvironmentScheduledActivitiesFilter
    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
    TimeExpectedFinishLessThanOrEqualTo string
    A filter that returns all resources that end before this date
    TimeScheduledStartGreaterThanOrEqualTo string
    A filter that returns all resources that are scheduled after this date
    fusionEnvironmentId String
    unique FusionEnvironment identifier
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetFusionEnvironmentScheduledActivitiesFilter>
    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
    timeExpectedFinishLessThanOrEqualTo String
    A filter that returns all resources that end before this date
    timeScheduledStartGreaterThanOrEqualTo String
    A filter that returns all resources that are scheduled after this date
    fusionEnvironmentId string
    unique FusionEnvironment identifier
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetFusionEnvironmentScheduledActivitiesFilter[]
    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
    timeExpectedFinishLessThanOrEqualTo string
    A filter that returns all resources that end before this date
    timeScheduledStartGreaterThanOrEqualTo string
    A filter that returns all resources that are scheduled after this date
    fusion_environment_id str
    unique FusionEnvironment identifier
    display_name str
    A filter to return only resources that match the entire display name given.
    filters GetFusionEnvironmentScheduledActivitiesFilter]
    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_finish_less_than_or_equal_to str
    A filter that returns all resources that end before this date
    time_scheduled_start_greater_than_or_equal_to str
    A filter that returns all resources that are scheduled after this date
    fusionEnvironmentId String
    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
    timeExpectedFinishLessThanOrEqualTo String
    A filter that returns all resources that end before this date
    timeScheduledStartGreaterThanOrEqualTo String
    A filter that returns all resources that are scheduled after this date

    getFusionEnvironmentScheduledActivities Result

    The following output properties are available:

    FusionEnvironmentId string
    FAaaS Environment Identifier.
    Id string
    The provider-assigned unique ID for this managed resource.
    ScheduledActivityCollections List<GetFusionEnvironmentScheduledActivitiesScheduledActivityCollection>
    The list of scheduled_activity_collection.
    DisplayName string
    scheduled activity display name, can be renamed.
    Filters List<GetFusionEnvironmentScheduledActivitiesFilter>
    RunCycle string
    run cadence.
    State string
    The current state of the scheduledActivity.
    TimeExpectedFinishLessThanOrEqualTo string
    TimeScheduledStartGreaterThanOrEqualTo string
    FusionEnvironmentId string
    FAaaS Environment Identifier.
    Id string
    The provider-assigned unique ID for this managed resource.
    ScheduledActivityCollections []GetFusionEnvironmentScheduledActivitiesScheduledActivityCollection
    The list of scheduled_activity_collection.
    DisplayName string
    scheduled activity display name, can be renamed.
    Filters []GetFusionEnvironmentScheduledActivitiesFilter
    RunCycle string
    run cadence.
    State string
    The current state of the scheduledActivity.
    TimeExpectedFinishLessThanOrEqualTo string
    TimeScheduledStartGreaterThanOrEqualTo string
    fusionEnvironmentId String
    FAaaS Environment Identifier.
    id String
    The provider-assigned unique ID for this managed resource.
    scheduledActivityCollections List<GetFusionEnvironmentScheduledActivitiesScheduledActivityCollection>
    The list of scheduled_activity_collection.
    displayName String
    scheduled activity display name, can be renamed.
    filters List<GetFusionEnvironmentScheduledActivitiesFilter>
    runCycle String
    run cadence.
    state String
    The current state of the scheduledActivity.
    timeExpectedFinishLessThanOrEqualTo String
    timeScheduledStartGreaterThanOrEqualTo String
    fusionEnvironmentId string
    FAaaS Environment Identifier.
    id string
    The provider-assigned unique ID for this managed resource.
    scheduledActivityCollections GetFusionEnvironmentScheduledActivitiesScheduledActivityCollection[]
    The list of scheduled_activity_collection.
    displayName string
    scheduled activity display name, can be renamed.
    filters GetFusionEnvironmentScheduledActivitiesFilter[]
    runCycle string
    run cadence.
    state string
    The current state of the scheduledActivity.
    timeExpectedFinishLessThanOrEqualTo string
    timeScheduledStartGreaterThanOrEqualTo string
    fusion_environment_id str
    FAaaS Environment Identifier.
    id str
    The provider-assigned unique ID for this managed resource.
    scheduled_activity_collections GetFusionEnvironmentScheduledActivitiesScheduledActivityCollection]
    The list of scheduled_activity_collection.
    display_name str
    scheduled activity display name, can be renamed.
    filters GetFusionEnvironmentScheduledActivitiesFilter]
    run_cycle str
    run cadence.
    state str
    The current state of the scheduledActivity.
    time_expected_finish_less_than_or_equal_to str
    time_scheduled_start_greater_than_or_equal_to str
    fusionEnvironmentId String
    FAaaS Environment Identifier.
    id String
    The provider-assigned unique ID for this managed resource.
    scheduledActivityCollections List<Property Map>
    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.
    timeExpectedFinishLessThanOrEqualTo String
    timeScheduledStartGreaterThanOrEqualTo String

    Supporting Types

    GetFusionEnvironmentScheduledActivitiesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetFusionEnvironmentScheduledActivitiesScheduledActivityCollection

    GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItem

    Actions List<GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItemAction>
    List of actions
    DelayInHours int
    Cumulative delay hours
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags Dictionary<string, object>
    FusionEnvironmentId string
    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
    TimeExpectedFinish string
    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.
    TimeScheduledStart string
    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 []GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItemAction
    List of actions
    DelayInHours int
    Cumulative delay hours
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags map[string]interface{}
    FusionEnvironmentId string
    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
    TimeExpectedFinish string
    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.
    TimeScheduledStart string
    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<GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItemAction>
    List of actions
    delayInHours Integer
    Cumulative delay hours
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<String,Object>
    fusionEnvironmentId String
    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
    timeExpectedFinish String
    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.
    timeScheduledStart String
    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 GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItemAction[]
    List of actions
    delayInHours number
    Cumulative delay hours
    displayName string
    A filter to return only resources that match the entire display name given.
    freeformTags {[key: string]: any}
    fusionEnvironmentId string
    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
    timeExpectedFinish string
    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.
    timeScheduledStart string
    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 GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItemAction]
    List of actions
    delay_in_hours int
    Cumulative delay hours
    display_name str
    A filter to return only resources that match the entire display name given.
    freeform_tags Mapping[str, Any]
    fusion_environment_id str
    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_finish str
    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_start str
    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
    delayInHours Number
    Cumulative delay hours
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<Any>
    fusionEnvironmentId String
    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
    timeExpectedFinish String
    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.
    timeScheduledStart String
    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi