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 Service Catalogs in Oracle Cloud Infrastructure Service Catalog service. * * Lists all the service catalogs in the given compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServiceCatalogs = oci.servicecatalog.getServiceCatalogs({ * compartmentId: compartmentId, * displayName: serviceCatalogDisplayName, * serviceCatalogId: testServiceCatalog.id, * status: serviceCatalogStatus, * }); * ``` */ export declare function getServiceCatalogs(args: GetServiceCatalogsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServiceCatalogs. */ export interface GetServiceCatalogsArgs { /** * The unique identifier for the compartment. */ compartmentId: string; /** * Exact match name filter. */ displayName?: string; filters?: inputs.ServiceCatalog.GetServiceCatalogsFilter[]; /** * The unique identifier for the service catalog. */ serviceCatalogId?: string; /** * Status of the service catalog, use as a filter to filter out all active catalogs. */ status?: string; } /** * A collection of values returned by getServiceCatalogs. */ export interface GetServiceCatalogsResult { /** * The Compartment id where the service catalog exists */ readonly compartmentId: string; /** * The name of the service catalog. */ readonly displayName?: string; readonly filters?: outputs.ServiceCatalog.GetServiceCatalogsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of service_catalog_collection. */ readonly serviceCatalogCollections: outputs.ServiceCatalog.GetServiceCatalogsServiceCatalogCollection[]; readonly serviceCatalogId?: string; /** * The status of a service catalog. */ readonly status?: string; } /** * This data source provides the list of Service Catalogs in Oracle Cloud Infrastructure Service Catalog service. * * Lists all the service catalogs in the given compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServiceCatalogs = oci.servicecatalog.getServiceCatalogs({ * compartmentId: compartmentId, * displayName: serviceCatalogDisplayName, * serviceCatalogId: testServiceCatalog.id, * status: serviceCatalogStatus, * }); * ``` */ export declare function getServiceCatalogsOutput(args: GetServiceCatalogsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServiceCatalogs. */ export interface GetServiceCatalogsOutputArgs { /** * The unique identifier for the compartment. */ compartmentId: pulumi.Input; /** * Exact match name filter. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The unique identifier for the service catalog. */ serviceCatalogId?: pulumi.Input; /** * Status of the service catalog, use as a filter to filter out all active catalogs. */ status?: pulumi.Input; } //# sourceMappingURL=getServiceCatalogs.d.ts.map