import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource for creating IDP catalog entities. * * ## Import * * The `pulumi import` command can be used, for example: * * Import account level entity * * ```sh * $ pulumi import harness:platform/idpCatalogEntity:IdpCatalogEntity example * ``` * * Import org level entity * * ```sh * $ pulumi import harness:platform/idpCatalogEntity:IdpCatalogEntity example / * ``` * * Import project level entity * * ```sh * $ pulumi import harness:platform/idpCatalogEntity:IdpCatalogEntity example // * ``` */ export declare class IdpCatalogEntity extends pulumi.CustomResource { /** * Get an existing IdpCatalogEntity resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: IdpCatalogEntityState, opts?: pulumi.CustomResourceOptions): IdpCatalogEntity; /** * Returns true if the given object is an instance of IdpCatalogEntity. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is IdpCatalogEntity; /** * Contains Git Information for importing entities from Git */ readonly gitDetails: pulumi.Output; /** * Unique identifier of the resource. */ readonly identifier: pulumi.Output; /** * Flag to set if importing from Git */ readonly importFromGit: pulumi.Output; /** * Kind of the catalog entity */ readonly kind: pulumi.Output; /** * Unique identifier of the organization. */ readonly orgId: pulumi.Output; /** * Unique identifier of the project. */ readonly projectId: pulumi.Output; /** * YAML definition of the catalog entity */ readonly yaml: pulumi.Output; /** * Create a IdpCatalogEntity resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: IdpCatalogEntityArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IdpCatalogEntity resources. */ export interface IdpCatalogEntityState { /** * Contains Git Information for importing entities from Git */ gitDetails?: pulumi.Input; /** * Unique identifier of the resource. */ identifier?: pulumi.Input; /** * Flag to set if importing from Git */ importFromGit?: pulumi.Input; /** * Kind of the catalog entity */ kind?: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; /** * YAML definition of the catalog entity */ yaml?: pulumi.Input; } /** * The set of arguments for constructing a IdpCatalogEntity resource. */ export interface IdpCatalogEntityArgs { /** * Contains Git Information for importing entities from Git */ gitDetails?: pulumi.Input; /** * Unique identifier of the resource. */ identifier: pulumi.Input; /** * Flag to set if importing from Git */ importFromGit?: pulumi.Input; /** * Kind of the catalog entity */ kind?: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; /** * YAML definition of the catalog entity */ yaml?: pulumi.Input; } //# sourceMappingURL=idpCatalogEntity.d.ts.map