import * as pulumi from "@pulumi/pulumi"; /** * Resource for managing Feature Flag Targets. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const target = new harness.platform.FeatureFlagTarget("target", { * orgId: "test", * projectId: "test", * identifier: "MY_FEATURE", * environment: "MY_ENVIRONMENT", * name: "MY_FEATURE", * accountId: "MY_ACCOUNT_ID", * attributes: { * foo: "bar", * }, * }); * ``` */ export declare class FeatureFlagTarget extends pulumi.CustomResource { /** * Get an existing FeatureFlagTarget 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?: FeatureFlagTargetState, opts?: pulumi.CustomResourceOptions): FeatureFlagTarget; /** * Returns true if the given object is an instance of FeatureFlagTarget. 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 FeatureFlagTarget; /** * Account Identifier */ readonly accountId: pulumi.Output; /** * Attributes */ readonly attributes: pulumi.Output<{ [key: string]: string; }>; /** * Environment Identifier */ readonly environment: pulumi.Output; /** * Identifier of the Feature Flag Target */ readonly identifier: pulumi.Output; /** * Target Name */ readonly name: pulumi.Output; /** * Organization Identifier */ readonly orgId: pulumi.Output; /** * Project Identifier */ readonly projectId: pulumi.Output; /** * Create a FeatureFlagTarget 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: FeatureFlagTargetArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FeatureFlagTarget resources. */ export interface FeatureFlagTargetState { /** * Account Identifier */ accountId?: pulumi.Input; /** * Attributes */ attributes?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Environment Identifier */ environment?: pulumi.Input; /** * Identifier of the Feature Flag Target */ identifier?: pulumi.Input; /** * Target Name */ name?: pulumi.Input; /** * Organization Identifier */ orgId?: pulumi.Input; /** * Project Identifier */ projectId?: pulumi.Input; } /** * The set of arguments for constructing a FeatureFlagTarget resource. */ export interface FeatureFlagTargetArgs { /** * Account Identifier */ accountId: pulumi.Input; /** * Attributes */ attributes?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Environment Identifier */ environment: pulumi.Input; /** * Identifier of the Feature Flag Target */ identifier: pulumi.Input; /** * Target Name */ name?: pulumi.Input; /** * Organization Identifier */ orgId: pulumi.Input; /** * Project Identifier */ projectId: pulumi.Input; } //# sourceMappingURL=featureFlagTarget.d.ts.map