import * as pulumi from "@pulumi/pulumi"; export declare class EntitlementsFeature extends pulumi.CustomResource { /** * Get an existing EntitlementsFeature 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?: EntitlementsFeatureState, opts?: pulumi.CustomResourceOptions): EntitlementsFeature; /** * Returns true if the given object is an instance of EntitlementsFeature. 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 EntitlementsFeature; /** * Inactive features cannot be attached to new products and will not be returned from the features list endpoint. */ readonly active: 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; /** * A unique key you provide as your own system identifier. This may be up to 80 characters. */ readonly lookupKey: pulumi.Output; /** * Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the * object in a structured format. */ readonly metadata: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The feature’s name, for your own purpose, not meant to be displayable to the customer. */ readonly name: pulumi.Output; /** * String representing the object’s type. Objects of the same type share the same value. */ readonly object: pulumi.Output; /** * Create a EntitlementsFeature 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: EntitlementsFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EntitlementsFeature resources. */ export interface EntitlementsFeatureState { /** * Inactive features cannot be attached to new products and will not be returned from the features list endpoint. */ active?: 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; /** * A unique key you provide as your own system identifier. This may be up to 80 characters. */ lookupKey?: pulumi.Input; /** * Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the * object in a structured format. */ metadata?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The feature’s name, for your own purpose, not meant to be displayable to the customer. */ name?: pulumi.Input; /** * String representing the object’s type. Objects of the same type share the same value. */ object?: pulumi.Input; } /** * The set of arguments for constructing a EntitlementsFeature resource. */ export interface EntitlementsFeatureArgs { /** * A unique key you provide as your own system identifier. This may be up to 80 characters. */ lookupKey: pulumi.Input; /** * Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the * object in a structured format. */ metadata?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The feature’s name, for your own purpose, not meant to be displayable to the customer. */ name?: pulumi.Input; }