1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Jms
  5. getFleetUncorrelatedPackageApplications
Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi

oci.Jms.getFleetUncorrelatedPackageApplications

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi

    This data source provides the list of Fleet Uncorrelated Package Applications in Oracle Cloud Infrastructure Jms service.

    List applications where an uncorrelated package has been detected, filtered by query parameters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testFleetUncorrelatedPackageApplications = oci.Jms.getFleetUncorrelatedPackageApplications({
        fleetId: testFleet.id,
        packageName: fleetUncorrelatedPackageApplicationPackageName,
        applicationId: testApplication.id,
        managedInstanceId: testManagedInstance.id,
        timeEnd: fleetUncorrelatedPackageApplicationTimeEnd,
        timeStart: fleetUncorrelatedPackageApplicationTimeStart,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_fleet_uncorrelated_package_applications = oci.Jms.get_fleet_uncorrelated_package_applications(fleet_id=test_fleet["id"],
        package_name=fleet_uncorrelated_package_application_package_name,
        application_id=test_application["id"],
        managed_instance_id=test_managed_instance["id"],
        time_end=fleet_uncorrelated_package_application_time_end,
        time_start=fleet_uncorrelated_package_application_time_start)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/jms"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := jms.GetFleetUncorrelatedPackageApplications(ctx, &jms.GetFleetUncorrelatedPackageApplicationsArgs{
    			FleetId:           testFleet.Id,
    			PackageName:       fleetUncorrelatedPackageApplicationPackageName,
    			ApplicationId:     pulumi.StringRef(testApplication.Id),
    			ManagedInstanceId: pulumi.StringRef(testManagedInstance.Id),
    			TimeEnd:           pulumi.StringRef(fleetUncorrelatedPackageApplicationTimeEnd),
    			TimeStart:         pulumi.StringRef(fleetUncorrelatedPackageApplicationTimeStart),
    		}, 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 testFleetUncorrelatedPackageApplications = Oci.Jms.GetFleetUncorrelatedPackageApplications.Invoke(new()
        {
            FleetId = testFleet.Id,
            PackageName = fleetUncorrelatedPackageApplicationPackageName,
            ApplicationId = testApplication.Id,
            ManagedInstanceId = testManagedInstance.Id,
            TimeEnd = fleetUncorrelatedPackageApplicationTimeEnd,
            TimeStart = fleetUncorrelatedPackageApplicationTimeStart,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Jms.JmsFunctions;
    import com.pulumi.oci.Jms.inputs.GetFleetUncorrelatedPackageApplicationsArgs;
    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 testFleetUncorrelatedPackageApplications = JmsFunctions.getFleetUncorrelatedPackageApplications(GetFleetUncorrelatedPackageApplicationsArgs.builder()
                .fleetId(testFleet.id())
                .packageName(fleetUncorrelatedPackageApplicationPackageName)
                .applicationId(testApplication.id())
                .managedInstanceId(testManagedInstance.id())
                .timeEnd(fleetUncorrelatedPackageApplicationTimeEnd)
                .timeStart(fleetUncorrelatedPackageApplicationTimeStart)
                .build());
    
        }
    }
    
    variables:
      testFleetUncorrelatedPackageApplications:
        fn::invoke:
          function: oci:Jms:getFleetUncorrelatedPackageApplications
          arguments:
            fleetId: ${testFleet.id}
            packageName: ${fleetUncorrelatedPackageApplicationPackageName}
            applicationId: ${testApplication.id}
            managedInstanceId: ${testManagedInstance.id}
            timeEnd: ${fleetUncorrelatedPackageApplicationTimeEnd}
            timeStart: ${fleetUncorrelatedPackageApplicationTimeStart}
    

    Using getFleetUncorrelatedPackageApplications

    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 getFleetUncorrelatedPackageApplications(args: GetFleetUncorrelatedPackageApplicationsArgs, opts?: InvokeOptions): Promise<GetFleetUncorrelatedPackageApplicationsResult>
    function getFleetUncorrelatedPackageApplicationsOutput(args: GetFleetUncorrelatedPackageApplicationsOutputArgs, opts?: InvokeOptions): Output<GetFleetUncorrelatedPackageApplicationsResult>
    def get_fleet_uncorrelated_package_applications(application_id: Optional[str] = None,
                                                    filters: Optional[Sequence[GetFleetUncorrelatedPackageApplicationsFilter]] = None,
                                                    fleet_id: Optional[str] = None,
                                                    managed_instance_id: Optional[str] = None,
                                                    package_name: Optional[str] = None,
                                                    time_end: Optional[str] = None,
                                                    time_start: Optional[str] = None,
                                                    opts: Optional[InvokeOptions] = None) -> GetFleetUncorrelatedPackageApplicationsResult
    def get_fleet_uncorrelated_package_applications_output(application_id: Optional[pulumi.Input[str]] = None,
                                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFleetUncorrelatedPackageApplicationsFilterArgs]]]] = None,
                                                    fleet_id: Optional[pulumi.Input[str]] = None,
                                                    managed_instance_id: Optional[pulumi.Input[str]] = None,
                                                    package_name: Optional[pulumi.Input[str]] = None,
                                                    time_end: Optional[pulumi.Input[str]] = None,
                                                    time_start: Optional[pulumi.Input[str]] = None,
                                                    opts: Optional[InvokeOptions] = None) -> Output[GetFleetUncorrelatedPackageApplicationsResult]
    func GetFleetUncorrelatedPackageApplications(ctx *Context, args *GetFleetUncorrelatedPackageApplicationsArgs, opts ...InvokeOption) (*GetFleetUncorrelatedPackageApplicationsResult, error)
    func GetFleetUncorrelatedPackageApplicationsOutput(ctx *Context, args *GetFleetUncorrelatedPackageApplicationsOutputArgs, opts ...InvokeOption) GetFleetUncorrelatedPackageApplicationsResultOutput

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

    public static class GetFleetUncorrelatedPackageApplications 
    {
        public static Task<GetFleetUncorrelatedPackageApplicationsResult> InvokeAsync(GetFleetUncorrelatedPackageApplicationsArgs args, InvokeOptions? opts = null)
        public static Output<GetFleetUncorrelatedPackageApplicationsResult> Invoke(GetFleetUncorrelatedPackageApplicationsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetFleetUncorrelatedPackageApplicationsResult> getFleetUncorrelatedPackageApplications(GetFleetUncorrelatedPackageApplicationsArgs args, InvokeOptions options)
    public static Output<GetFleetUncorrelatedPackageApplicationsResult> getFleetUncorrelatedPackageApplications(GetFleetUncorrelatedPackageApplicationsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Jms/getFleetUncorrelatedPackageApplications:getFleetUncorrelatedPackageApplications
      arguments:
        # arguments dictionary

    The following arguments are supported:

    FleetId string
    The OCID of the Fleet.
    PackageName string
    The unique identifier of a Java package.
    ApplicationId string
    The Fleet-unique identifier of the application.
    Filters List<GetFleetUncorrelatedPackageApplicationsFilter>
    ManagedInstanceId string
    The Fleet-unique identifier of the managed instance.
    TimeEnd string
    The end of the time period during which resources are searched (formatted according to RFC3339).
    TimeStart string
    The start of the time period during which resources are searched (formatted according to RFC3339).
    FleetId string
    The OCID of the Fleet.
    PackageName string
    The unique identifier of a Java package.
    ApplicationId string
    The Fleet-unique identifier of the application.
    Filters []GetFleetUncorrelatedPackageApplicationsFilter
    ManagedInstanceId string
    The Fleet-unique identifier of the managed instance.
    TimeEnd string
    The end of the time period during which resources are searched (formatted according to RFC3339).
    TimeStart string
    The start of the time period during which resources are searched (formatted according to RFC3339).
    fleetId String
    The OCID of the Fleet.
    packageName String
    The unique identifier of a Java package.
    applicationId String
    The Fleet-unique identifier of the application.
    filters List<GetFleetUncorrelatedPackageApplicationsFilter>
    managedInstanceId String
    The Fleet-unique identifier of the managed instance.
    timeEnd String
    The end of the time period during which resources are searched (formatted according to RFC3339).
    timeStart String
    The start of the time period during which resources are searched (formatted according to RFC3339).
    fleetId string
    The OCID of the Fleet.
    packageName string
    The unique identifier of a Java package.
    applicationId string
    The Fleet-unique identifier of the application.
    filters GetFleetUncorrelatedPackageApplicationsFilter[]
    managedInstanceId string
    The Fleet-unique identifier of the managed instance.
    timeEnd string
    The end of the time period during which resources are searched (formatted according to RFC3339).
    timeStart string
    The start of the time period during which resources are searched (formatted according to RFC3339).
    fleet_id str
    The OCID of the Fleet.
    package_name str
    The unique identifier of a Java package.
    application_id str
    The Fleet-unique identifier of the application.
    filters Sequence[GetFleetUncorrelatedPackageApplicationsFilter]
    managed_instance_id str
    The Fleet-unique identifier of the managed instance.
    time_end str
    The end of the time period during which resources are searched (formatted according to RFC3339).
    time_start str
    The start of the time period during which resources are searched (formatted according to RFC3339).
    fleetId String
    The OCID of the Fleet.
    packageName String
    The unique identifier of a Java package.
    applicationId String
    The Fleet-unique identifier of the application.
    filters List<Property Map>
    managedInstanceId String
    The Fleet-unique identifier of the managed instance.
    timeEnd String
    The end of the time period during which resources are searched (formatted according to RFC3339).
    timeStart String
    The start of the time period during which resources are searched (formatted according to RFC3339).

    getFleetUncorrelatedPackageApplications Result

    The following output properties are available:

    FleetId string
    Id string
    The provider-assigned unique ID for this managed resource.
    PackageName string
    UncorrelatedPackageApplicationUsageCollections []GetFleetUncorrelatedPackageApplicationsUncorrelatedPackageApplicationUsageCollection
    The list of uncorrelated_package_application_usage_collection.
    ApplicationId string
    Filters []GetFleetUncorrelatedPackageApplicationsFilter
    ManagedInstanceId string
    TimeEnd string
    TimeStart string
    fleetId string
    id string
    The provider-assigned unique ID for this managed resource.
    packageName string
    uncorrelatedPackageApplicationUsageCollections GetFleetUncorrelatedPackageApplicationsUncorrelatedPackageApplicationUsageCollection[]
    The list of uncorrelated_package_application_usage_collection.
    applicationId string
    filters GetFleetUncorrelatedPackageApplicationsFilter[]
    managedInstanceId string
    timeEnd string
    timeStart string
    fleetId String
    id String
    The provider-assigned unique ID for this managed resource.
    packageName String
    uncorrelatedPackageApplicationUsageCollections List<Property Map>
    The list of uncorrelated_package_application_usage_collection.
    applicationId String
    filters List<Property Map>
    managedInstanceId String
    timeEnd String
    timeStart String

    Supporting Types

    GetFleetUncorrelatedPackageApplicationsFilter

    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

    GetFleetUncorrelatedPackageApplicationsUncorrelatedPackageApplicationUsageCollection

    items List<Property Map>
    A list of UncorrelatedPackageApplicationUsageSummaries.

    GetFleetUncorrelatedPackageApplicationsUncorrelatedPackageApplicationUsageCollectionItem

    ApplicationKey string
    The internal identifier of a Java application.
    ApplicationName string
    The displayed name of the Java application.
    LastDetectedDynamically string
    The date and time a library or Java package was last detected in a dynamic library scan.
    ManagedInstanceCount int
    The count of managed instances wherein the specified library was detected.
    ApplicationKey string
    The internal identifier of a Java application.
    ApplicationName string
    The displayed name of the Java application.
    LastDetectedDynamically string
    The date and time a library or Java package was last detected in a dynamic library scan.
    ManagedInstanceCount int
    The count of managed instances wherein the specified library was detected.
    applicationKey String
    The internal identifier of a Java application.
    applicationName String
    The displayed name of the Java application.
    lastDetectedDynamically String
    The date and time a library or Java package was last detected in a dynamic library scan.
    managedInstanceCount Integer
    The count of managed instances wherein the specified library was detected.
    applicationKey string
    The internal identifier of a Java application.
    applicationName string
    The displayed name of the Java application.
    lastDetectedDynamically string
    The date and time a library or Java package was last detected in a dynamic library scan.
    managedInstanceCount number
    The count of managed instances wherein the specified library was detected.
    application_key str
    The internal identifier of a Java application.
    application_name str
    The displayed name of the Java application.
    last_detected_dynamically str
    The date and time a library or Java package was last detected in a dynamic library scan.
    managed_instance_count int
    The count of managed instances wherein the specified library was detected.
    applicationKey String
    The internal identifier of a Java application.
    applicationName String
    The displayed name of the Java application.
    lastDetectedDynamically String
    The date and time a library or Java package was last detected in a dynamic library scan.
    managedInstanceCount Number
    The count of managed instances wherein the specified library was detected.

    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 v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate