import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Scheduler Job Job Activity Resources in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of resources for an Activity Execution. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSchedulerJobJobActivityResources = oci.fleetappsmanagement.getSchedulerJobJobActivityResources({ * jobActivityId: testJobActivity.id, * schedulerJobId: testJob.id, * resourceTaskId: testResourceTask.id, * sequence: schedulerJobJobActivityResourceSequence, * stepName: schedulerJobJobActivityResourceStepName, * targetName: testTarget.name, * }); * ``` */ export declare function getSchedulerJobJobActivityResources(args: GetSchedulerJobJobActivityResourcesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSchedulerJobJobActivityResources. */ export interface GetSchedulerJobJobActivityResourcesArgs { filters?: inputs.FleetAppsManagement.GetSchedulerJobJobActivityResourcesFilter[]; /** * unique jobActivity identifier */ jobActivityId: string; /** * Task Id */ resourceTaskId?: string; /** * unique SchedulerJob identifier */ schedulerJobId: string; /** * Task Order Sequence */ sequence?: string; /** * Unique step name */ stepName?: string; /** * Unique target name */ targetName?: string; } /** * A collection of values returned by getSchedulerJobJobActivityResources. */ export interface GetSchedulerJobJobActivityResourcesResult { readonly filters?: outputs.FleetAppsManagement.GetSchedulerJobJobActivityResourcesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly jobActivityId: string; /** * The list of resource_collection. */ readonly resourceCollections: outputs.FleetAppsManagement.GetSchedulerJobJobActivityResourcesResourceCollection[]; readonly resourceTaskId?: string; readonly schedulerJobId: string; /** * The sequence of the Resource. */ readonly sequence?: string; readonly stepName?: string; /** * Target Name. */ readonly targetName?: string; } /** * This data source provides the list of Scheduler Job Job Activity Resources in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of resources for an Activity Execution. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSchedulerJobJobActivityResources = oci.fleetappsmanagement.getSchedulerJobJobActivityResources({ * jobActivityId: testJobActivity.id, * schedulerJobId: testJob.id, * resourceTaskId: testResourceTask.id, * sequence: schedulerJobJobActivityResourceSequence, * stepName: schedulerJobJobActivityResourceStepName, * targetName: testTarget.name, * }); * ``` */ export declare function getSchedulerJobJobActivityResourcesOutput(args: GetSchedulerJobJobActivityResourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSchedulerJobJobActivityResources. */ export interface GetSchedulerJobJobActivityResourcesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * unique jobActivity identifier */ jobActivityId: pulumi.Input; /** * Task Id */ resourceTaskId?: pulumi.Input; /** * unique SchedulerJob identifier */ schedulerJobId: pulumi.Input; /** * Task Order Sequence */ sequence?: pulumi.Input; /** * Unique step name */ stepName?: pulumi.Input; /** * Unique target name */ targetName?: pulumi.Input; } //# sourceMappingURL=getSchedulerJobJobActivityResources.d.ts.map