import * as pulumi from "@pulumi/pulumi"; export declare class ProductFeature extends pulumi.CustomResource { /** * Get an existing ProductFeature 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?: ProductFeatureState, opts?: pulumi.CustomResourceOptions): ProductFeature; /** * Returns true if the given object is an instance of ProductFeature. 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 ProductFeature; /** * The ID of the Entitlements Feature the product will be attached to */ readonly entitlementsFeature: pulumi.Output; /** * Has the value true if the object exists in live mode or the value false if the object exists in test mode */ readonly livemode: pulumi.Output; /** * String representing the object’s type. Objects of the same type share the same value. */ readonly object: pulumi.Output; /** * The ID of the product that this Entitlements Feature will be attached to. */ readonly product: pulumi.Output; /** * Create a ProductFeature 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: ProductFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ProductFeature resources. */ export interface ProductFeatureState { /** * The ID of the Entitlements Feature the product will be attached to */ entitlementsFeature?: pulumi.Input; /** * Has the value true if the object exists in live mode or the value false if the object exists in test mode */ livemode?: pulumi.Input; /** * String representing the object’s type. Objects of the same type share the same value. */ object?: pulumi.Input; /** * The ID of the product that this Entitlements Feature will be attached to. */ product?: pulumi.Input; } /** * The set of arguments for constructing a ProductFeature resource. */ export interface ProductFeatureArgs { /** * The ID of the Entitlements Feature the product will be attached to */ entitlementsFeature: pulumi.Input; /** * The ID of the product that this Entitlements Feature will be attached to. */ product: pulumi.Input; }