Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.Jms.getFleetUncorrelatedPackageApplications
Explore with Pulumi AI
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:
- Fleet
Id string - The OCID of the Fleet.
- Package
Name string - The unique identifier of a Java package.
- Application
Id string - The Fleet-unique identifier of the application.
- Filters
List<Get
Fleet Uncorrelated Package Applications Filter> - Managed
Instance stringId - The Fleet-unique identifier of the managed instance.
- 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.
- Package
Name string - The unique identifier of a Java package.
- Application
Id string - The Fleet-unique identifier of the application.
- Filters
[]Get
Fleet Uncorrelated Package Applications Filter - Managed
Instance stringId - The Fleet-unique identifier of the managed instance.
- 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.
- package
Name String - The unique identifier of a Java package.
- application
Id String - The Fleet-unique identifier of the application.
- filters
List<Get
Fleet Uncorrelated Package Applications Filter> - managed
Instance StringId - The Fleet-unique identifier of the managed instance.
- 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.
- package
Name string - The unique identifier of a Java package.
- application
Id string - The Fleet-unique identifier of the application.
- filters
Get
Fleet Uncorrelated Package Applications Filter[] - managed
Instance stringId - The Fleet-unique identifier of the managed instance.
- 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.
- package_
name str - The unique identifier of a Java package.
- application_
id str - The Fleet-unique identifier of the application.
- filters
Sequence[Get
Fleet Uncorrelated Package Applications Filter] - managed_
instance_ strid - 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).
- fleet
Id String - The OCID of the Fleet.
- package
Name String - The unique identifier of a Java package.
- 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.
- 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).
getFleetUncorrelatedPackageApplications Result
The following output properties are available:
- Fleet
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Package
Name string - List<Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection> - The list of uncorrelated_package_application_usage_collection.
- Application
Id string - Filters
List<Get
Fleet Uncorrelated Package Applications Filter> - Managed
Instance stringId - Time
End string - Time
Start string
- Fleet
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Package
Name string - []Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection - The list of uncorrelated_package_application_usage_collection.
- Application
Id string - Filters
[]Get
Fleet Uncorrelated Package Applications Filter - Managed
Instance stringId - Time
End string - Time
Start string
- fleet
Id String - id String
- The provider-assigned unique ID for this managed resource.
- package
Name String - List<Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection> - The list of uncorrelated_package_application_usage_collection.
- application
Id String - filters
List<Get
Fleet Uncorrelated Package Applications Filter> - managed
Instance StringId - time
End String - time
Start String
- fleet
Id string - id string
- The provider-assigned unique ID for this managed resource.
- package
Name string - Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection[] - The list of uncorrelated_package_application_usage_collection.
- application
Id string - filters
Get
Fleet Uncorrelated Package Applications Filter[] - managed
Instance stringId - time
End string - time
Start string
- fleet_
id str - id str
- The provider-assigned unique ID for this managed resource.
- package_
name str - Sequence[Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection] - The list of uncorrelated_package_application_usage_collection.
- application_
id str - filters
Sequence[Get
Fleet Uncorrelated Package Applications Filter] - managed_
instance_ strid - time_
end str - time_
start str
- fleet
Id String - id String
- The provider-assigned unique ID for this managed resource.
- package
Name String - List<Property Map>
- The list of uncorrelated_package_application_usage_collection.
- application
Id String - filters List<Property Map>
- managed
Instance StringId - time
End String - time
Start String
Supporting Types
GetFleetUncorrelatedPackageApplicationsFilter
GetFleetUncorrelatedPackageApplicationsUncorrelatedPackageApplicationUsageCollection
- Items
List<Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection Item> - A list of UncorrelatedPackageApplicationUsageSummaries.
- Items
[]Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection Item - A list of UncorrelatedPackageApplicationUsageSummaries.
- items
List<Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection Item> - A list of UncorrelatedPackageApplicationUsageSummaries.
- items
Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection Item[] - A list of UncorrelatedPackageApplicationUsageSummaries.
- items
Sequence[Get
Fleet Uncorrelated Package Applications Uncorrelated Package Application Usage Collection Item] - A list of UncorrelatedPackageApplicationUsageSummaries.
- items List<Property Map>
- A list of UncorrelatedPackageApplicationUsageSummaries.
GetFleetUncorrelatedPackageApplicationsUncorrelatedPackageApplicationUsageCollectionItem
- Application
Key string - The internal identifier of a Java application.
- Application
Name string - The displayed name of the Java application.
- 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 library was detected.
- Application
Key string - The internal identifier of a Java application.
- Application
Name string - The displayed name of the Java application.
- 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 library was detected.
- application
Key String - The internal identifier of a Java application.
- application
Name String - The displayed name of the Java application.
- 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 library was detected.
- application
Key string - The internal identifier of a Java application.
- application
Name string - The displayed name of the Java application.
- 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 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_ 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 library was detected.
- application
Key String - The internal identifier of a Java application.
- application
Name String - The displayed name of the Java application.
- 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 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.