import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Service Catalog resource in Oracle Cloud Infrastructure Service Catalog service. * * Gets detailed information about the service catalog including name, compartmentId * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServiceCatalog = oci.servicecatalog.getServiceCatalog({ * serviceCatalogId: testServiceCatalogOciServiceCatalogServiceCatalog.id, * }); * ``` */ export declare function getServiceCatalog(args: GetServiceCatalogArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServiceCatalog. */ export interface GetServiceCatalogArgs { /** * The unique identifier for the service catalog. */ serviceCatalogId: string; } /** * A collection of values returned by getServiceCatalog. */ export interface GetServiceCatalogResult { /** * The Compartment id where the service catalog exists */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The name of the service catalog. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The unique identifier for the Service catalog. */ readonly id: string; readonly serviceCatalogId: string; /** * The lifecycle state of the service catalog. */ readonly state: string; /** * The status of a service catalog. */ readonly status: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the service catalog was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2021-05-26T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the service catalog was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2021-12-10T05:10:29.721Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Service Catalog resource in Oracle Cloud Infrastructure Service Catalog service. * * Gets detailed information about the service catalog including name, compartmentId * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServiceCatalog = oci.servicecatalog.getServiceCatalog({ * serviceCatalogId: testServiceCatalogOciServiceCatalogServiceCatalog.id, * }); * ``` */ export declare function getServiceCatalogOutput(args: GetServiceCatalogOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServiceCatalog. */ export interface GetServiceCatalogOutputArgs { /** * The unique identifier for the service catalog. */ serviceCatalogId: pulumi.Input; } //# sourceMappingURL=getServiceCatalog.d.ts.map