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 App Catalog Subscriptions in Oracle Cloud Infrastructure Core service. * * Lists subscriptions for a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAppCatalogSubscriptions = oci.core.getAppCatalogSubscriptions({ * compartmentId: compartmentId, * listingId: testListing.id, * }); * ``` */ export declare function getAppCatalogSubscriptions(args: GetAppCatalogSubscriptionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAppCatalogSubscriptions. */ export interface GetAppCatalogSubscriptionsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.Core.GetAppCatalogSubscriptionsFilter[]; /** * A filter to return only the listings that matches the given listing id. */ listingId?: string; } /** * A collection of values returned by getAppCatalogSubscriptions. */ export interface GetAppCatalogSubscriptionsResult { /** * The list of app_catalog_subscriptions. */ readonly appCatalogSubscriptions: outputs.Core.GetAppCatalogSubscriptionsAppCatalogSubscription[]; /** * The compartmentID of the subscription. */ readonly compartmentId: string; readonly filters?: outputs.Core.GetAppCatalogSubscriptionsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The ocid of the listing resource. */ readonly listingId?: string; } /** * This data source provides the list of App Catalog Subscriptions in Oracle Cloud Infrastructure Core service. * * Lists subscriptions for a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAppCatalogSubscriptions = oci.core.getAppCatalogSubscriptions({ * compartmentId: compartmentId, * listingId: testListing.id, * }); * ``` */ export declare function getAppCatalogSubscriptionsOutput(args: GetAppCatalogSubscriptionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAppCatalogSubscriptions. */ export interface GetAppCatalogSubscriptionsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only the listings that matches the given listing id. */ listingId?: pulumi.Input; } //# sourceMappingURL=getAppCatalogSubscriptions.d.ts.map