Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.Jms.getFleetLibraryApplications
Start a Neo task
Explain and create an oci.Jms.getFleetLibraryApplications resource
This data source provides the list of Fleet Library Applications in Oracle Cloud Infrastructure Jms service.
List applications where a library has been detected filtered by query parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFleetLibraryApplications = oci.Jms.getFleetLibraryApplications({
fleetId: testFleet.id,
libraryKey: fleetLibraryApplicationLibraryKey,
applicationId: testApplication.id,
applicationName: testApplication.name,
applicationNameContains: fleetLibraryApplicationApplicationNameContains,
managedInstanceId: testManagedInstance.id,
timeEnd: fleetLibraryApplicationTimeEnd,
timeStart: fleetLibraryApplicationTimeStart,
});
import pulumi
import pulumi_oci as oci
test_fleet_library_applications = oci.Jms.get_fleet_library_applications(fleet_id=test_fleet["id"],
library_key=fleet_library_application_library_key,
application_id=test_application["id"],
application_name=test_application["name"],
application_name_contains=fleet_library_application_application_name_contains,
managed_instance_id=test_managed_instance["id"],
time_end=fleet_library_application_time_end,
time_start=fleet_library_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.GetFleetLibraryApplications(ctx, &jms.GetFleetLibraryApplicationsArgs{
FleetId: testFleet.Id,
LibraryKey: fleetLibraryApplicationLibraryKey,
ApplicationId: pulumi.StringRef(testApplication.Id),
ApplicationName: pulumi.StringRef(testApplication.Name),
ApplicationNameContains: pulumi.StringRef(fleetLibraryApplicationApplicationNameContains),
ManagedInstanceId: pulumi.StringRef(testManagedInstance.Id),
TimeEnd: pulumi.StringRef(fleetLibraryApplicationTimeEnd),
TimeStart: pulumi.StringRef(fleetLibraryApplicationTimeStart),
}, 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 testFleetLibraryApplications = Oci.Jms.GetFleetLibraryApplications.Invoke(new()
{
FleetId = testFleet.Id,
LibraryKey = fleetLibraryApplicationLibraryKey,
ApplicationId = testApplication.Id,
ApplicationName = testApplication.Name,
ApplicationNameContains = fleetLibraryApplicationApplicationNameContains,
ManagedInstanceId = testManagedInstance.Id,
TimeEnd = fleetLibraryApplicationTimeEnd,
TimeStart = fleetLibraryApplicationTimeStart,
});
});
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.GetFleetLibraryApplicationsArgs;
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 testFleetLibraryApplications = JmsFunctions.getFleetLibraryApplications(GetFleetLibraryApplicationsArgs.builder()
.fleetId(testFleet.id())
.libraryKey(fleetLibraryApplicationLibraryKey)
.applicationId(testApplication.id())
.applicationName(testApplication.name())
.applicationNameContains(fleetLibraryApplicationApplicationNameContains)
.managedInstanceId(testManagedInstance.id())
.timeEnd(fleetLibraryApplicationTimeEnd)
.timeStart(fleetLibraryApplicationTimeStart)
.build());
}
}
variables:
testFleetLibraryApplications:
fn::invoke:
function: oci:Jms:getFleetLibraryApplications
arguments:
fleetId: ${testFleet.id}
libraryKey: ${fleetLibraryApplicationLibraryKey}
applicationId: ${testApplication.id}
applicationName: ${testApplication.name}
applicationNameContains: ${fleetLibraryApplicationApplicationNameContains}
managedInstanceId: ${testManagedInstance.id}
timeEnd: ${fleetLibraryApplicationTimeEnd}
timeStart: ${fleetLibraryApplicationTimeStart}
Using getFleetLibraryApplications
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 getFleetLibraryApplications(args: GetFleetLibraryApplicationsArgs, opts?: InvokeOptions): Promise<GetFleetLibraryApplicationsResult>
function getFleetLibraryApplicationsOutput(args: GetFleetLibraryApplicationsOutputArgs, opts?: InvokeOptions): Output<GetFleetLibraryApplicationsResult>def get_fleet_library_applications(application_id: Optional[str] = None,
application_name: Optional[str] = None,
application_name_contains: Optional[str] = None,
filters: Optional[Sequence[GetFleetLibraryApplicationsFilter]] = None,
fleet_id: Optional[str] = None,
library_key: Optional[str] = None,
managed_instance_id: Optional[str] = None,
time_end: Optional[str] = None,
time_start: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetFleetLibraryApplicationsResult
def get_fleet_library_applications_output(application_id: Optional[pulumi.Input[str]] = None,
application_name: Optional[pulumi.Input[str]] = None,
application_name_contains: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFleetLibraryApplicationsFilterArgs]]]] = None,
fleet_id: Optional[pulumi.Input[str]] = None,
library_key: Optional[pulumi.Input[str]] = None,
managed_instance_id: Optional[pulumi.Input[str]] = None,
time_end: Optional[pulumi.Input[str]] = None,
time_start: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetFleetLibraryApplicationsResult]func GetFleetLibraryApplications(ctx *Context, args *GetFleetLibraryApplicationsArgs, opts ...InvokeOption) (*GetFleetLibraryApplicationsResult, error)
func GetFleetLibraryApplicationsOutput(ctx *Context, args *GetFleetLibraryApplicationsOutputArgs, opts ...InvokeOption) GetFleetLibraryApplicationsResultOutput> Note: This function is named GetFleetLibraryApplications in the Go SDK.
public static class GetFleetLibraryApplications
{
public static Task<GetFleetLibraryApplicationsResult> InvokeAsync(GetFleetLibraryApplicationsArgs args, InvokeOptions? opts = null)
public static Output<GetFleetLibraryApplicationsResult> Invoke(GetFleetLibraryApplicationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetFleetLibraryApplicationsResult> getFleetLibraryApplications(GetFleetLibraryApplicationsArgs args, InvokeOptions options)
public static Output<GetFleetLibraryApplicationsResult> getFleetLibraryApplications(GetFleetLibraryApplicationsArgs args, InvokeOptions options)
fn::invoke:
function: oci:Jms/getFleetLibraryApplications:getFleetLibraryApplications
arguments:
# arguments dictionaryThe following arguments are supported:
- Fleet
Id string - The OCID of the Fleet.
- Library
Key string - The unique identifier of a Java library.
- Application
Id string - The Fleet-unique identifier of the application.
- Application
Name string - The name of the application.
- Application
Name stringContains - Filter the list with application name contains the given value.
- Filters
List<Get
Fleet Library 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.
- Library
Key string - The unique identifier of a Java library.
- Application
Id string - The Fleet-unique identifier of the application.
- Application
Name string - The name of the application.
- Application
Name stringContains - Filter the list with application name contains the given value.
- Filters
[]Get
Fleet Library 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.
- library
Key String - The unique identifier of a Java library.
- application
Id String - The Fleet-unique identifier of the application.
- application
Name String - The name of the application.
- application
Name StringContains - Filter the list with application name contains the given value.
- filters
List<Get
Fleet Library 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.
- library
Key string - The unique identifier of a Java library.
- application
Id string - The Fleet-unique identifier of the application.
- application
Name string - The name of the application.
- application
Name stringContains - Filter the list with application name contains the given value.
- filters
Get
Fleet Library 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.
- library_
key str - The unique identifier of a Java library.
- application_
id str - The Fleet-unique identifier of the application.
- application_
name str - The name of the application.
- application_
name_ strcontains - Filter the list with application name contains the given value.
- filters
Sequence[Get
Fleet Library 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.
- library
Key String - The unique identifier of a Java library.
- application
Id String - The Fleet-unique identifier of the application.
- application
Name String - The name of the application.
- application
Name StringContains - Filter the list with application name contains the given value.
- 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).
getFleetLibraryApplications Result
The following output properties are available:
- Fleet
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Library
Application List<GetUsage Collections Fleet Library Applications Library Application Usage Collection> - The list of library_application_usage_collection.
- Library
Key string - Application
Id string - Application
Name string - The displayed name of the Java application.
- Application
Name stringContains - Filters
List<Get
Fleet Library 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.
- Library
Application []GetUsage Collections Fleet Library Applications Library Application Usage Collection - The list of library_application_usage_collection.
- Library
Key string - Application
Id string - Application
Name string - The displayed name of the Java application.
- Application
Name stringContains - Filters
[]Get
Fleet Library 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.
- library
Application List<GetUsage Collections Fleet Library Applications Library Application Usage Collection> - The list of library_application_usage_collection.
- library
Key String - application
Id String - application
Name String - The displayed name of the Java application.
- application
Name StringContains - filters
List<Get
Fleet Library 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.
- library
Application GetUsage Collections Fleet Library Applications Library Application Usage Collection[] - The list of library_application_usage_collection.
- library
Key string - application
Id string - application
Name string - The displayed name of the Java application.
- application
Name stringContains - filters
Get
Fleet Library 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.
- library_
application_ Sequence[Getusage_ collections Fleet Library Applications Library Application Usage Collection] - The list of library_application_usage_collection.
- library_
key str - application_
id str - application_
name str - The displayed name of the Java application.
- application_
name_ strcontains - filters
Sequence[Get
Fleet Library 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.
- library
Application List<Property Map>Usage Collections - The list of library_application_usage_collection.
- library
Key String - application
Id String - application
Name String - The displayed name of the Java application.
- application
Name StringContains - filters List<Property Map>
- managed
Instance StringId - time
End String - time
Start String
Supporting Types
GetFleetLibraryApplicationsFilter
GetFleetLibraryApplicationsLibraryApplicationUsageCollection
- Items
List<Get
Fleet Library Applications Library Application Usage Collection Item> - A list of LibraryApplicationUsageSummaries.
- Items
[]Get
Fleet Library Applications Library Application Usage Collection Item - A list of LibraryApplicationUsageSummaries.
- items
List<Get
Fleet Library Applications Library Application Usage Collection Item> - A list of LibraryApplicationUsageSummaries.
- items
Get
Fleet Library Applications Library Application Usage Collection Item[] - A list of LibraryApplicationUsageSummaries.
- items
Sequence[Get
Fleet Library Applications Library Application Usage Collection Item] - A list of LibraryApplicationUsageSummaries.
- items List<Property Map>
- A list of LibraryApplicationUsageSummaries.
GetFleetLibraryApplicationsLibraryApplicationUsageCollectionItem
- Application
Key string - The internal identifier of a Java application.
- Application
Name string - The name of the application.
- First
Seen stringIn Classpath - The timestamp of the first time the specified library was detected in classpath.
- Last
Detected stringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- Last
Seen stringIn Classpath - The timestamp of the last time the specified library was detected in classpath.
- 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 name of the application.
- First
Seen stringIn Classpath - The timestamp of the first time the specified library was detected in classpath.
- Last
Detected stringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- Last
Seen stringIn Classpath - The timestamp of the last time the specified library was detected in classpath.
- 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 name of the application.
- first
Seen StringIn Classpath - The timestamp of the first time the specified library was detected in classpath.
- last
Detected StringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- last
Seen StringIn Classpath - The timestamp of the last time the specified library was detected in classpath.
- 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 name of the application.
- first
Seen stringIn Classpath - The timestamp of the first time the specified library was detected in classpath.
- last
Detected stringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- last
Seen stringIn Classpath - The timestamp of the last time the specified library was detected in classpath.
- 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 name of the application.
- first_
seen_ strin_ classpath - The timestamp of the first time the specified library was detected in classpath.
- last_
detected_ strdynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- last_
seen_ strin_ classpath - The timestamp of the last time the specified library was detected in classpath.
- 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 name of the application.
- first
Seen StringIn Classpath - The timestamp of the first time the specified library was detected in classpath.
- last
Detected StringDynamically - The date and time a library or Java package was last detected in a dynamic library scan.
- last
Seen StringIn Classpath - The timestamp of the last time the specified library was detected in classpath.
- 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
ociTerraform Provider.
