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 Agent Installers in Oracle Cloud Infrastructure Jms service. * * Returns a list of the agent installer information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentInstallers = oci.jms.getAgentInstallers({ * compartmentId: compartmentId, * fleetId: testFleet.id, * osFamily: agentInstallerOsFamily, * platformArchitecture: agentInstallerPlatformArchitecture, * }); * ``` */ export declare function getAgentInstallers(args?: GetAgentInstallersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAgentInstallers. */ export interface GetAgentInstallersArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; filters?: inputs.Jms.GetAgentInstallersFilter[]; /** * The ID of the Fleet. */ fleetId?: string; /** * The OS family for the agent installer. */ osFamily?: string; /** * The platform architecture for the agent installer. */ platformArchitecture?: string; } /** * A collection of values returned by getAgentInstallers. */ export interface GetAgentInstallersResult { /** * The list of agent_installer_collection. */ readonly agentInstallerCollections: outputs.Jms.GetAgentInstallersAgentInstallerCollection[]; readonly compartmentId?: string; readonly filters?: outputs.Jms.GetAgentInstallersFilter[]; readonly fleetId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The target operating system family for the agent installer. */ readonly osFamily?: string; /** * The target operating system architecture for the installer. */ readonly platformArchitecture?: string; } /** * This data source provides the list of Agent Installers in Oracle Cloud Infrastructure Jms service. * * Returns a list of the agent installer information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentInstallers = oci.jms.getAgentInstallers({ * compartmentId: compartmentId, * fleetId: testFleet.id, * osFamily: agentInstallerOsFamily, * platformArchitecture: agentInstallerPlatformArchitecture, * }); * ``` */ export declare function getAgentInstallersOutput(args?: GetAgentInstallersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAgentInstallers. */ export interface GetAgentInstallersOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The ID of the Fleet. */ fleetId?: pulumi.Input; /** * The OS family for the agent installer. */ osFamily?: pulumi.Input; /** * The platform architecture for the agent installer. */ platformArchitecture?: pulumi.Input; } //# sourceMappingURL=getAgentInstallers.d.ts.map