import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Catalog Item resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets information about a CatalogItem. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCatalogItem = oci.fleetappsmanagement.getCatalogItem({ * catalogItemId: testCatalogItemOciFleetAppsManagementCatalogItem.id, * }); * ``` */ export declare function getCatalogItem(args: GetCatalogItemArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCatalogItem. */ export interface GetCatalogItemArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the CatalogItem. */ catalogItemId: string; } /** * A collection of values returned by getCatalogItem. */ export interface GetCatalogItemResult { readonly catalogItemId: string; /** * Catalog result payload. */ readonly catalogResultPayloads: outputs.FleetAppsManagement.GetCatalogItemCatalogResultPayload[]; /** * Catalog source payload. */ readonly catalogSourcePayloads: outputs.FleetAppsManagement.GetCatalogItemCatalogSourcePayload[]; readonly cloneCatalogItemTrigger: number; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE. */ readonly configSourceType: 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; }; /** * Description about the catalog item. */ readonly description: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ 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 [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the catalog. */ readonly id: string; /** * The details of lifecycle state CatalogItem. */ readonly lifecycleDetails: string; /** * The catalog listing Id. */ readonly listingId: string; /** * The catalog package version. */ readonly listingVersion: string; /** * Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE. */ readonly packageType: string; /** * Short description about the catalog item. */ readonly shortDescription: string; /** * The indicator to append Public Items from the root compartment to any query, when set to TRUE. */ readonly shouldListPublicItems: boolean; /** * The current state of the CatalogItem. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the CatalogItem was last checked by backfill job, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeBackfillLastChecked: string; /** * The date and time the CatalogItem was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the CatalogItem was last checked, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeLastChecked: string; /** * The date and time the CatalogItem was released, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeReleased: string; /** * The date and time the CatalogItem was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; /** * Version description about the catalog item. */ readonly versionDescription: string; } /** * This data source provides details about a specific Catalog Item resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets information about a CatalogItem. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCatalogItem = oci.fleetappsmanagement.getCatalogItem({ * catalogItemId: testCatalogItemOciFleetAppsManagementCatalogItem.id, * }); * ``` */ export declare function getCatalogItemOutput(args: GetCatalogItemOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCatalogItem. */ export interface GetCatalogItemOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the CatalogItem. */ catalogItemId: pulumi.Input; } //# sourceMappingURL=getCatalogItem.d.ts.map