import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * This resource provides a way to create a catalog item entitlement in VMware vRealize Automation. * * ## Example Usage * ### S * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * const _this = new vra.catalog.ItemEntitlement("this", { * catalogItemId: _var.catalog_item_id, * projectId: _var.project_id, * }); * ``` * * ## Import * * Catalog item entitlement can be imported using the id, e.g. * * ```sh * $ pulumi import vra:catalog/itemEntitlement:ItemEntitlement this 05956583-6488-4e7d-84c9-92a7b7219a15` * ``` */ export declare class ItemEntitlement extends pulumi.CustomResource { /** * Get an existing ItemEntitlement 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?: ItemEntitlementState, opts?: pulumi.CustomResourceOptions): ItemEntitlement; /** * Returns true if the given object is an instance of ItemEntitlement. 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 ItemEntitlement; /** * The id of the catalog item to create the entitlement. */ readonly catalogItemId: pulumi.Output; /** * Represents a catalog item that is linked to a project via an entitlement. */ readonly definitions: pulumi.Output; /** * The id of the project this entity belongs to. */ readonly projectId: pulumi.Output; /** * Create a ItemEntitlement 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: ItemEntitlementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ItemEntitlement resources. */ export interface ItemEntitlementState { /** * The id of the catalog item to create the entitlement. */ catalogItemId?: pulumi.Input; /** * Represents a catalog item that is linked to a project via an entitlement. */ definitions?: pulumi.Input[]>; /** * The id of the project this entity belongs to. */ projectId?: pulumi.Input; } /** * The set of arguments for constructing a ItemEntitlement resource. */ export interface ItemEntitlementArgs { /** * The id of the catalog item to create the entitlement. */ catalogItemId: pulumi.Input; /** * The id of the project this entity belongs to. */ projectId: pulumi.Input; }