1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetAppsManagement
  5. getSchedulerJobJobActivitySteps
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.FleetAppsManagement.getSchedulerJobJobActivitySteps

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

    This data source provides the list of Scheduler Job Job Activity Steps in Oracle Cloud Infrastructure Fleet Apps Management service.

    Returns a list of Steps for an Activity Execution.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSchedulerJobJobActivitySteps = oci.FleetAppsManagement.getSchedulerJobJobActivitySteps({
        jobActivityId: testJobActivity.id,
        schedulerJobId: testJob.id,
        resourceTaskId: testResourceTask.id,
        sequence: schedulerJobJobActivityStepSequence,
        stepName: schedulerJobJobActivityStepStepName,
        targetName: testTarget.name,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_scheduler_job_job_activity_steps = oci.FleetAppsManagement.get_scheduler_job_job_activity_steps(job_activity_id=test_job_activity["id"],
        scheduler_job_id=test_job["id"],
        resource_task_id=test_resource_task["id"],
        sequence=scheduler_job_job_activity_step_sequence,
        step_name=scheduler_job_job_activity_step_step_name,
        target_name=test_target["name"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/fleetappsmanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fleetappsmanagement.GetSchedulerJobJobActivitySteps(ctx, &fleetappsmanagement.GetSchedulerJobJobActivityStepsArgs{
    			JobActivityId:  testJobActivity.Id,
    			SchedulerJobId: testJob.Id,
    			ResourceTaskId: pulumi.StringRef(testResourceTask.Id),
    			Sequence:       pulumi.StringRef(schedulerJobJobActivityStepSequence),
    			StepName:       pulumi.StringRef(schedulerJobJobActivityStepStepName),
    			TargetName:     pulumi.StringRef(testTarget.Name),
    		}, 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 testSchedulerJobJobActivitySteps = Oci.FleetAppsManagement.GetSchedulerJobJobActivitySteps.Invoke(new()
        {
            JobActivityId = testJobActivity.Id,
            SchedulerJobId = testJob.Id,
            ResourceTaskId = testResourceTask.Id,
            Sequence = schedulerJobJobActivityStepSequence,
            StepName = schedulerJobJobActivityStepStepName,
            TargetName = testTarget.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.FleetAppsManagement.FleetAppsManagementFunctions;
    import com.pulumi.oci.FleetAppsManagement.inputs.GetSchedulerJobJobActivityStepsArgs;
    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 testSchedulerJobJobActivitySteps = FleetAppsManagementFunctions.getSchedulerJobJobActivitySteps(GetSchedulerJobJobActivityStepsArgs.builder()
                .jobActivityId(testJobActivity.id())
                .schedulerJobId(testJob.id())
                .resourceTaskId(testResourceTask.id())
                .sequence(schedulerJobJobActivityStepSequence)
                .stepName(schedulerJobJobActivityStepStepName)
                .targetName(testTarget.name())
                .build());
    
        }
    }
    
    variables:
      testSchedulerJobJobActivitySteps:
        fn::invoke:
          function: oci:FleetAppsManagement:getSchedulerJobJobActivitySteps
          arguments:
            jobActivityId: ${testJobActivity.id}
            schedulerJobId: ${testJob.id}
            resourceTaskId: ${testResourceTask.id}
            sequence: ${schedulerJobJobActivityStepSequence}
            stepName: ${schedulerJobJobActivityStepStepName}
            targetName: ${testTarget.name}
    

    Using getSchedulerJobJobActivitySteps

    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 getSchedulerJobJobActivitySteps(args: GetSchedulerJobJobActivityStepsArgs, opts?: InvokeOptions): Promise<GetSchedulerJobJobActivityStepsResult>
    function getSchedulerJobJobActivityStepsOutput(args: GetSchedulerJobJobActivityStepsOutputArgs, opts?: InvokeOptions): Output<GetSchedulerJobJobActivityStepsResult>
    def get_scheduler_job_job_activity_steps(filters: Optional[Sequence[_fleetappsmanagement.GetSchedulerJobJobActivityStepsFilter]] = None,
                                             job_activity_id: Optional[str] = None,
                                             resource_task_id: Optional[str] = None,
                                             scheduler_job_id: Optional[str] = None,
                                             sequence: Optional[str] = None,
                                             step_name: Optional[str] = None,
                                             target_name: Optional[str] = None,
                                             opts: Optional[InvokeOptions] = None) -> GetSchedulerJobJobActivityStepsResult
    def get_scheduler_job_job_activity_steps_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[_fleetappsmanagement.GetSchedulerJobJobActivityStepsFilterArgs]]]] = None,
                                             job_activity_id: Optional[pulumi.Input[str]] = None,
                                             resource_task_id: Optional[pulumi.Input[str]] = None,
                                             scheduler_job_id: Optional[pulumi.Input[str]] = None,
                                             sequence: Optional[pulumi.Input[str]] = None,
                                             step_name: Optional[pulumi.Input[str]] = None,
                                             target_name: Optional[pulumi.Input[str]] = None,
                                             opts: Optional[InvokeOptions] = None) -> Output[GetSchedulerJobJobActivityStepsResult]
    func GetSchedulerJobJobActivitySteps(ctx *Context, args *GetSchedulerJobJobActivityStepsArgs, opts ...InvokeOption) (*GetSchedulerJobJobActivityStepsResult, error)
    func GetSchedulerJobJobActivityStepsOutput(ctx *Context, args *GetSchedulerJobJobActivityStepsOutputArgs, opts ...InvokeOption) GetSchedulerJobJobActivityStepsResultOutput

    > Note: This function is named GetSchedulerJobJobActivitySteps in the Go SDK.

    public static class GetSchedulerJobJobActivitySteps 
    {
        public static Task<GetSchedulerJobJobActivityStepsResult> InvokeAsync(GetSchedulerJobJobActivityStepsArgs args, InvokeOptions? opts = null)
        public static Output<GetSchedulerJobJobActivityStepsResult> Invoke(GetSchedulerJobJobActivityStepsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSchedulerJobJobActivityStepsResult> getSchedulerJobJobActivitySteps(GetSchedulerJobJobActivityStepsArgs args, InvokeOptions options)
    public static Output<GetSchedulerJobJobActivityStepsResult> getSchedulerJobJobActivitySteps(GetSchedulerJobJobActivityStepsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:FleetAppsManagement/getSchedulerJobJobActivitySteps:getSchedulerJobJobActivitySteps
      arguments:
        # arguments dictionary

    The following arguments are supported:

    JobActivityId string
    unique jobActivity identifier
    SchedulerJobId string
    unique SchedulerJob identifier
    Filters List<GetSchedulerJobJobActivityStepsFilter>
    ResourceTaskId string
    Task Id
    Sequence string
    Task Order Sequence
    StepName string
    Unique step name
    TargetName string
    Unique target name
    JobActivityId string
    unique jobActivity identifier
    SchedulerJobId string
    unique SchedulerJob identifier
    Filters []GetSchedulerJobJobActivityStepsFilter
    ResourceTaskId string
    Task Id
    Sequence string
    Task Order Sequence
    StepName string
    Unique step name
    TargetName string
    Unique target name
    jobActivityId String
    unique jobActivity identifier
    schedulerJobId String
    unique SchedulerJob identifier
    filters List<GetSchedulerJobJobActivityStepsFilter>
    resourceTaskId String
    Task Id
    sequence String
    Task Order Sequence
    stepName String
    Unique step name
    targetName String
    Unique target name
    jobActivityId string
    unique jobActivity identifier
    schedulerJobId string
    unique SchedulerJob identifier
    filters GetSchedulerJobJobActivityStepsFilter[]
    resourceTaskId string
    Task Id
    sequence string
    Task Order Sequence
    stepName string
    Unique step name
    targetName string
    Unique target name
    job_activity_id str
    unique jobActivity identifier
    scheduler_job_id str
    unique SchedulerJob identifier
    filters Sequence[fleetappsmanagement.GetSchedulerJobJobActivityStepsFilter]
    resource_task_id str
    Task Id
    sequence str
    Task Order Sequence
    step_name str
    Unique step name
    target_name str
    Unique target name
    jobActivityId String
    unique jobActivity identifier
    schedulerJobId String
    unique SchedulerJob identifier
    filters List<Property Map>
    resourceTaskId String
    Task Id
    sequence String
    Task Order Sequence
    stepName String
    Unique step name
    targetName String
    Unique target name

    getSchedulerJobJobActivitySteps Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    JobActivityId string
    SchedulerJobId string
    StepCollections List<GetSchedulerJobJobActivityStepsStepCollection>
    The list of step_collection.
    Filters List<GetSchedulerJobJobActivityStepsFilter>
    ResourceTaskId string
    Sequence string
    The sequence of the step
    StepName string
    Name of the Step
    TargetName string
    Id string
    The provider-assigned unique ID for this managed resource.
    JobActivityId string
    SchedulerJobId string
    StepCollections []GetSchedulerJobJobActivityStepsStepCollection
    The list of step_collection.
    Filters []GetSchedulerJobJobActivityStepsFilter
    ResourceTaskId string
    Sequence string
    The sequence of the step
    StepName string
    Name of the Step
    TargetName string
    id String
    The provider-assigned unique ID for this managed resource.
    jobActivityId String
    schedulerJobId String
    stepCollections List<GetSchedulerJobJobActivityStepsStepCollection>
    The list of step_collection.
    filters List<GetSchedulerJobJobActivityStepsFilter>
    resourceTaskId String
    sequence String
    The sequence of the step
    stepName String
    Name of the Step
    targetName String
    id string
    The provider-assigned unique ID for this managed resource.
    jobActivityId string
    schedulerJobId string
    stepCollections GetSchedulerJobJobActivityStepsStepCollection[]
    The list of step_collection.
    filters GetSchedulerJobJobActivityStepsFilter[]
    resourceTaskId string
    sequence string
    The sequence of the step
    stepName string
    Name of the Step
    targetName string
    id String
    The provider-assigned unique ID for this managed resource.
    jobActivityId String
    schedulerJobId String
    stepCollections List<Property Map>
    The list of step_collection.
    filters List<Property Map>
    resourceTaskId String
    sequence String
    The sequence of the step
    stepName String
    Name of the Step
    targetName String

    Supporting Types

    GetSchedulerJobJobActivityStepsFilter

    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

    GetSchedulerJobJobActivityStepsStepCollection

    items List<Property Map>
    List of Execution steps.

    GetSchedulerJobJobActivityStepsStepCollectionItem

    Description string
    Description of the step Execution
    IsRollbackTask bool
    Is this a rollback task?
    Sequence string
    Task Order Sequence
    Status string
    Status of the Task
    StepName string
    Unique step name
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TaskRecordId string
    The OCID of taskRecord assocaited with the step
    TimeEnded string
    The time the task ended. An RFC3339 formatted datetime string
    TimeStarted string
    The time the task started. An RFC3339 formatted datetime string
    Description string
    Description of the step Execution
    IsRollbackTask bool
    Is this a rollback task?
    Sequence string
    Task Order Sequence
    Status string
    Status of the Task
    StepName string
    Unique step name
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TaskRecordId string
    The OCID of taskRecord assocaited with the step
    TimeEnded string
    The time the task ended. An RFC3339 formatted datetime string
    TimeStarted string
    The time the task started. An RFC3339 formatted datetime string
    description String
    Description of the step Execution
    isRollbackTask Boolean
    Is this a rollback task?
    sequence String
    Task Order Sequence
    status String
    Status of the Task
    stepName String
    Unique step name
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    taskRecordId String
    The OCID of taskRecord assocaited with the step
    timeEnded String
    The time the task ended. An RFC3339 formatted datetime string
    timeStarted String
    The time the task started. An RFC3339 formatted datetime string
    description string
    Description of the step Execution
    isRollbackTask boolean
    Is this a rollback task?
    sequence string
    Task Order Sequence
    status string
    Status of the Task
    stepName string
    Unique step name
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    taskRecordId string
    The OCID of taskRecord assocaited with the step
    timeEnded string
    The time the task ended. An RFC3339 formatted datetime string
    timeStarted string
    The time the task started. An RFC3339 formatted datetime string
    description str
    Description of the step Execution
    is_rollback_task bool
    Is this a rollback task?
    sequence str
    Task Order Sequence
    status str
    Status of the Task
    step_name str
    Unique step name
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    task_record_id str
    The OCID of taskRecord assocaited with the step
    time_ended str
    The time the task ended. An RFC3339 formatted datetime string
    time_started str
    The time the task started. An RFC3339 formatted datetime string
    description String
    Description of the step Execution
    isRollbackTask Boolean
    Is this a rollback task?
    sequence String
    Task Order Sequence
    status String
    Status of the Task
    stepName String
    Unique step name
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    taskRecordId String
    The OCID of taskRecord assocaited with the step
    timeEnded String
    The time the task ended. An RFC3339 formatted datetime string
    timeStarted String
    The time the task started. An RFC3339 formatted datetime string

    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 v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi