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 Products in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of products associated with the confirmed targets. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetProducts = oci.fleetappsmanagement.getFleetProducts({ * fleetId: testFleet.id, * compartmentId: compartmentId, * displayName: fleetProductDisplayName, * resourceDisplayName: fleetProductResourceDisplayName, * resourceId: testResource.id, * }); * ``` */ export declare function getFleetProducts(args: GetFleetProductsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetProducts. */ export interface GetFleetProductsArgs { /** * The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified. */ compartmentId?: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.FleetAppsManagement.GetFleetProductsFilter[]; /** * Unique Fleet identifier. */ fleetId: string; /** * Resource Display Name. */ resourceDisplayName?: string; /** * Resource Identifier */ resourceId?: string; } /** * A collection of values returned by getFleetProducts. */ export interface GetFleetProductsResult { /** * Root Compartment Id. */ readonly compartmentId?: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource` */ readonly displayName?: string; readonly filters?: outputs.FleetAppsManagement.GetFleetProductsFilter[]; readonly fleetId: string; /** * The list of fleet_product_collection. */ readonly fleetProductCollections: outputs.FleetAppsManagement.GetFleetProductsFleetProductCollection[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource` */ readonly resourceDisplayName?: string; /** * The OCID of the resource. */ readonly resourceId?: string; } /** * This data source provides the list of Fleet Products in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of products associated with the confirmed targets. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetProducts = oci.fleetappsmanagement.getFleetProducts({ * fleetId: testFleet.id, * compartmentId: compartmentId, * displayName: fleetProductDisplayName, * resourceDisplayName: fleetProductResourceDisplayName, * resourceId: testResource.id, * }); * ``` */ export declare function getFleetProductsOutput(args: GetFleetProductsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetProducts. */ export interface GetFleetProductsOutputArgs { /** * The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique Fleet identifier. */ fleetId: pulumi.Input; /** * Resource Display Name. */ resourceDisplayName?: pulumi.Input; /** * Resource Identifier */ resourceId?: pulumi.Input; } //# sourceMappingURL=getFleetProducts.d.ts.map