Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.Jms.getFleetUncorrelatedPackages
Explore with Pulumi AI
This data source provides the list of Fleet Uncorrelated Packages in Oracle Cloud Infrastructure Jms service.
List uncorrelated package summaries in a fleet, filtered by query parameters. Uncorrelated packages are Java packages which can’t be accurately correlated to a library during a library scan.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFleetUncorrelatedPackages = oci.Jms.getFleetUncorrelatedPackages({
fleetId: testFleet.id,
applicationId: testApplication.id,
managedInstanceId: testManagedInstance.id,
packageName: fleetUncorrelatedPackagePackageName,
timeEnd: fleetUncorrelatedPackageTimeEnd,
timeStart: fleetUncorrelatedPackageTimeStart,
});
import pulumi
import pulumi_oci as oci
test_fleet_uncorrelated_packages = oci.Jms.get_fleet_uncorrelated_packages(fleet_id=test_fleet["id"],
application_id=test_application["id"],
managed_instance_id=test_managed_instance["id"],
package_name=fleet_uncorrelated_package_package_name,
time_end=fleet_uncorrelated_package_time_end,
time_start=fleet_uncorrelated_package_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.GetFleetUncorrelatedPackages(ctx, &jms.GetFleetUncorrelatedPackagesArgs{
FleetId: testFleet.Id,
ApplicationId: pulumi.StringRef(testApplication.Id),
ManagedInstanceId: pulumi.StringRef(testManagedInstance.Id),
PackageName: pulumi.StringRef(fleetUncorrelatedPackagePackageName),
TimeEnd: pulumi.StringRef(fleetUncorrelatedPackageTimeEnd),
TimeStart: pulumi.StringRef(fleetUncorrelatedPackageTimeStart),
}, 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 testFleetUncorrelatedPackages = Oci.Jms.GetFleetUncorrelatedPackages.Invoke(new()
{
FleetId = testFleet.Id,
ApplicationId = testApplication.Id,
ManagedInstanceId = testManagedInstance.Id,
PackageName = fleetUncorrelatedPackagePackageName,
TimeEnd = fleetUncorrelatedPackageTimeEnd,
TimeStart = fleetUncorrelatedPackageTimeStart,
});
});
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.GetFleetUncorrelatedPackagesArgs;
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 testFleetUncorrelatedPackages = JmsFunctions.getFleetUncorrelatedPackages(GetFleetUncorrelatedPackagesArgs.builder()
.fleetId(testFleet.id())
.applicationId(testApplication.id())
.managedInstanceId(testManagedInstance.id())
.packageName(fleetUncorrelatedPackagePackageName)
.timeEnd(fleetUncorrelatedPackageTimeEnd)
.timeStart(fleetUncorrelatedPackageTimeStart)
.build());
}
}
variables:
testFleetUncorrelatedPackages:
fn::invoke:
function: oci:Jms:getFleetUncorrelatedPackages
arguments:
fleetId: ${testFleet.id}
applicationId: ${testApplication.id}
managedInstanceId: ${testManagedInstance.id}
packageName: ${fleetUncorrelatedPackagePackageName}
timeEnd: ${fleetUncorrelatedPackageTimeEnd}
timeStart: ${fleetUncorrelatedPackageTimeStart}
Using getFleetUncorrelatedPackages
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 getFleetUncorrelatedPackages(args: GetFleetUncorrelatedPackagesArgs, opts?: InvokeOptions): Promise<GetFleetUncorrelatedPackagesResult>
function getFleetUncorrelatedPackagesOutput(args: GetFleetUncorrelatedPackagesOutputArgs, opts?: InvokeOptions): Output<GetFleetUncorrelatedPackagesResult>
def get_fleet_uncorrelated_packages(application_id: Optional[str] = None,
filters: Optional[Sequence[GetFleetUncorrelatedPackagesFilter]] = 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) -> GetFleetUncorrelatedPackagesResult
def get_fleet_uncorrelated_packages_output(application_id: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFleetUncorrelatedPackagesFilterArgs]]]] = 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[GetFleetUncorrelatedPackagesResult]
func GetFleetUncorrelatedPackages(ctx *Context, args *GetFleetUncorrelatedPackagesArgs, opts ...InvokeOption) (*GetFleetUncorrelatedPackagesResult, error)
func GetFleetUncorrelatedPackagesOutput(ctx *Context, args *GetFleetUncorrelatedPackagesOutputArgs, opts ...InvokeOption) GetFleetUncorrelatedPackagesResultOutput
> Note: This function is named GetFleetUncorrelatedPackages
in the Go SDK.
public static class GetFleetUncorrelatedPackages
{
public static Task<GetFleetUncorrelatedPackagesResult> InvokeAsync(GetFleetUncorrelatedPackagesArgs args, InvokeOptions? opts = null)
public static Output<GetFleetUncorrelatedPackagesResult> Invoke(GetFleetUncorrelatedPackagesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetFleetUncorrelatedPackagesResult> getFleetUncorrelatedPackages(GetFleetUncorrelatedPackagesArgs args, InvokeOptions options)
public static Output<GetFleetUncorrelatedPackagesResult> getFleetUncorrelatedPackages(GetFleetUncorrelatedPackagesArgs args, InvokeOptions options)
fn::invoke:
function: oci:Jms/getFleetUncorrelatedPackages:getFleetUncorrelatedPackages
arguments:
# arguments dictionary
The following arguments are supported:
- Fleet
Id string - The OCID of the Fleet.
- Application
Id string - The Fleet-unique identifier of the application.
- Filters
List<Get
Fleet Uncorrelated Packages Filter> - Managed
Instance stringId - The Fleet-unique identifier of the managed instance.
- Package
Name string - The unique identifier of a Java package.
- Time
End string - The end of the time period during which resources are searched (formatted according to RFC3339).
- Time
Start string - The start of the time period during which resources are searched (formatted according to RFC3339).
- Fleet
Id string - The OCID of the Fleet.
- Application
Id string - The Fleet-unique identifier of the application.
- Filters
[]Get
Fleet Uncorrelated Packages Filter - Managed
Instance stringId - The Fleet-unique identifier of the managed instance.
- Package
Name string - The unique identifier of a Java package.
- Time
End string - The end of the time period during which resources are searched (formatted according to RFC3339).
- Time
Start string - The start of the time period during which resources are searched (formatted according to RFC3339).
- fleet
Id String - The OCID of the Fleet.
- application
Id String - The Fleet-unique identifier of the application.
- filters
List<Get
Fleet Uncorrelated Packages Filter> - managed
Instance StringId - The Fleet-unique identifier of the managed instance.
- package
Name String - The unique identifier of a Java package.
- time
End String - The end of the time period during which resources are searched (formatted according to RFC3339).
- time
Start String - The start of the time period during which resources are searched (formatted according to RFC3339).
- fleet
Id string - The OCID of the Fleet.
- application
Id string - The Fleet-unique identifier of the application.
- filters
Get
Fleet Uncorrelated Packages Filter[] - managed
Instance stringId - The Fleet-unique identifier of the managed instance.
- package
Name string - The unique identifier of a Java package.
- time
End string - The end of the time period during which resources are searched (formatted according to RFC3339).
- time
Start string - The start of the time period during which resources are searched (formatted according to RFC3339).
- fleet_
id str - The OCID of the Fleet.
- application_
id str - The Fleet-unique identifier of the application.
- filters
Sequence[Get
Fleet Uncorrelated Packages Filter] - managed_
instance_ strid - The Fleet-unique identifier of the managed instance.
- package_
name str - The unique identifier of a Java package.
- 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).
- fleet
Id String - The OCID of the Fleet.
- application
Id String - The Fleet-unique identifier of the application.
- filters List<Property Map>
- managed
Instance StringId - The Fleet-unique identifier of the managed instance.
- package
Name String - The unique identifier of a Java package.
- time
End String - The end of the time period during which resources are searched (formatted according to RFC3339).
- time
Start String - The start of the time period during which resources are searched (formatted according to RFC3339).
getFleetUncorrelatedPackages Result
The following output properties are available:
- Fleet
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- List<Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection> - The list of uncorrelated_package_usage_collection.
- Application
Id string - Filters
List<Get
Fleet Uncorrelated Packages Filter> - Managed
Instance stringId - Package
Name string - The name of the package.
- Time
End string - Time
Start string
- Fleet
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- []Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection - The list of uncorrelated_package_usage_collection.
- Application
Id string - Filters
[]Get
Fleet Uncorrelated Packages Filter - Managed
Instance stringId - Package
Name string - The name of the package.
- Time
End string - Time
Start string
- fleet
Id String - id String
- The provider-assigned unique ID for this managed resource.
- List<Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection> - The list of uncorrelated_package_usage_collection.
- application
Id String - filters
List<Get
Fleet Uncorrelated Packages Filter> - managed
Instance StringId - package
Name String - The name of the package.
- time
End String - time
Start String
- fleet
Id string - id string
- The provider-assigned unique ID for this managed resource.
- Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection[] - The list of uncorrelated_package_usage_collection.
- application
Id string - filters
Get
Fleet Uncorrelated Packages Filter[] - managed
Instance stringId - package
Name string - The name of the package.
- time
End string - time
Start string
- fleet_
id str - id str
- The provider-assigned unique ID for this managed resource.
- Sequence[Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection] - The list of uncorrelated_package_usage_collection.
- application_
id str - filters
Sequence[Get
Fleet Uncorrelated Packages Filter] - managed_
instance_ strid - package_
name str - The name of the package.
- time_
end str - time_
start str
- fleet
Id String - id String
- The provider-assigned unique ID for this managed resource.
- List<Property Map>
- The list of uncorrelated_package_usage_collection.
- application
Id String - filters List<Property Map>
- managed
Instance StringId - package
Name String - The name of the package.
- time
End String - time
Start String
Supporting Types
GetFleetUncorrelatedPackagesFilter
GetFleetUncorrelatedPackagesUncorrelatedPackageUsageCollection
- Items
List<Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection Item> - A list of uncorrelated package summaries.
- Items
[]Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection Item - A list of uncorrelated package summaries.
- items
List<Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection Item> - A list of uncorrelated package summaries.
- items
Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection Item[] - A list of uncorrelated package summaries.
- items
Sequence[Get
Fleet Uncorrelated Packages Uncorrelated Package Usage Collection Item] - A list of uncorrelated package summaries.
- items List<Property Map>
- A list of uncorrelated package summaries.
GetFleetUncorrelatedPackagesUncorrelatedPackageUsageCollectionItem
- Application
Count int - The count of applications wherein the specified package was detected.
- Last
Detected stringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- Managed
Instance intCount - The count of managed instances wherein the specified package was detected.
- Package
Name string - The unique identifier of a Java package.
- Application
Count int - The count of applications wherein the specified package was detected.
- Last
Detected stringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- Managed
Instance intCount - The count of managed instances wherein the specified package was detected.
- Package
Name string - The unique identifier of a Java package.
- application
Count Integer - The count of applications wherein the specified package was detected.
- last
Detected StringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- managed
Instance IntegerCount - The count of managed instances wherein the specified package was detected.
- package
Name String - The unique identifier of a Java package.
- application
Count number - The count of applications wherein the specified package was detected.
- last
Detected stringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- managed
Instance numberCount - The count of managed instances wherein the specified package was detected.
- package
Name string - The unique identifier of a Java package.
- application_
count int - The count of applications wherein the specified package was detected.
- last_
detected_ strdynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- managed_
instance_ intcount - The count of managed instances wherein the specified package was detected.
- package_
name str - The unique identifier of a Java package.
- application
Count Number - The count of applications wherein the specified package was detected.
- last
Detected StringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- managed
Instance NumberCount - The count of managed instances wherein the specified package was detected.
- package
Name String - The unique identifier of a Java package.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.