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 Fleet Installation Sites in Oracle Cloud Infrastructure Jms service. * * List Java installation sites in a Fleet filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetInstallationSites = oci.jms.getInstallationSites({ * fleetId: testFleet.id, * applicationId: fleetInstallationSiteApplicationId, * installationPath: fleetInstallationSiteInstallationPath, * jreDistribution: fleetInstallationSiteJreDistribution, * jreSecurityStatus: fleetInstallationSiteJreSecurityStatus, * jreVendor: fleetInstallationSiteJreVendor, * jreVersion: fleetInstallationSiteJreVersion, * managedInstanceId: fleetInstallationSiteManagedInstanceId, * osFamilies: fleetInstallationSiteOsFamily, * pathContains: fleetInstallationSitePathContains, * timeEnd: fleetInstallationSiteTimeEnd, * timeStart: fleetInstallationSiteTimeStart, * }); * ``` */ export declare function getInstallationSites(args: GetInstallationSitesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInstallationSites. */ export interface GetInstallationSitesArgs { /** * The Fleet-unique identifier of the related application. */ applicationId?: string; filters?: inputs.Jms.GetInstallationSitesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: string; /** * The file system path of the installation. */ installationPath?: string; /** * The distribution of the related Java Runtime. */ jreDistribution?: string; /** * The security status of the Java Runtime. */ jreSecurityStatus?: string; /** * The vendor of the related Java Runtime. */ jreVendor?: string; /** * The version of the related Java Runtime. */ jreVersion?: string; /** * The Fleet-unique identifier of the related managed instance. */ managedInstanceId?: string; /** * The operating system type. */ osFamilies?: string[]; /** * Filter the list with path contains the given value. */ pathContains?: string; /** * The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: string; /** * The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeStart?: string; } /** * A collection of values returned by getInstallationSites. */ export interface GetInstallationSitesResult { readonly applicationId?: string; readonly filters?: outputs.Jms.GetInstallationSitesFilter[]; readonly fleetId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly installationPath?: string; /** * The list of installation_site_collection. */ readonly installationSiteCollections: outputs.Jms.GetInstallationSitesInstallationSiteCollection[]; readonly jreDistribution?: string; readonly jreSecurityStatus?: string; readonly jreVendor?: string; readonly jreVersion?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related managed instance. */ readonly managedInstanceId?: string; readonly osFamilies?: string[]; readonly pathContains?: string; readonly timeEnd?: string; readonly timeStart?: string; } /** * This data source provides the list of Fleet Installation Sites in Oracle Cloud Infrastructure Jms service. * * List Java installation sites in a Fleet filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetInstallationSites = oci.jms.getInstallationSites({ * fleetId: testFleet.id, * applicationId: fleetInstallationSiteApplicationId, * installationPath: fleetInstallationSiteInstallationPath, * jreDistribution: fleetInstallationSiteJreDistribution, * jreSecurityStatus: fleetInstallationSiteJreSecurityStatus, * jreVendor: fleetInstallationSiteJreVendor, * jreVersion: fleetInstallationSiteJreVersion, * managedInstanceId: fleetInstallationSiteManagedInstanceId, * osFamilies: fleetInstallationSiteOsFamily, * pathContains: fleetInstallationSitePathContains, * timeEnd: fleetInstallationSiteTimeEnd, * timeStart: fleetInstallationSiteTimeStart, * }); * ``` */ export declare function getInstallationSitesOutput(args: GetInstallationSitesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInstallationSites. */ export interface GetInstallationSitesOutputArgs { /** * The Fleet-unique identifier of the related application. */ applicationId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: pulumi.Input; /** * The file system path of the installation. */ installationPath?: pulumi.Input; /** * The distribution of the related Java Runtime. */ jreDistribution?: pulumi.Input; /** * The security status of the Java Runtime. */ jreSecurityStatus?: pulumi.Input; /** * The vendor of the related Java Runtime. */ jreVendor?: pulumi.Input; /** * The version of the related Java Runtime. */ jreVersion?: pulumi.Input; /** * The Fleet-unique identifier of the related managed instance. */ managedInstanceId?: pulumi.Input; /** * The operating system type. */ osFamilies?: pulumi.Input[] | undefined>; /** * Filter the list with path contains the given value. */ pathContains?: pulumi.Input; /** * The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: pulumi.Input; /** * The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeStart?: pulumi.Input; } //# sourceMappingURL=getInstallationSites.d.ts.map