import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource for creating a Harness Feature Flag Target Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const target = new harness.platform.FeatureFlagTargetGroup("target", { * orgId: "test", * projectId: "test", * identifier: "MY_FEATURE", * environment: "MY_ENVIRONMENT", * name: "MY_FEATURE", * accountId: "MY_ACCOUNT_ID", * includeds: ["target_id_1"], * excludeds: ["target_id_2"], * rules: { * attribute: "MY_ATTRIBUTE", * operator: "equal", * value: "MY_VALUE", * }, * }); * ``` */ export declare class FeatureFlagTargetGroup extends pulumi.CustomResource { /** * Get an existing FeatureFlagTargetGroup 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?: FeatureFlagTargetGroupState, opts?: pulumi.CustomResourceOptions): FeatureFlagTargetGroup; /** * Returns true if the given object is an instance of FeatureFlagTargetGroup. 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 FeatureFlagTargetGroup; /** * Account Identifier */ readonly accountId: pulumi.Output; /** * Environment Identifier */ readonly environment: pulumi.Output; /** * A list of targets to exclude from the target group */ readonly excludeds: pulumi.Output; /** * The unique identifier of the feature flag target group. */ readonly identifier: pulumi.Output; /** * A list of targets to include in the target group */ readonly includeds: pulumi.Output; /** * The name of the feature flag target group. */ readonly name: pulumi.Output; /** * Organization Identifier */ readonly orgId: pulumi.Output; /** * Project Identifier */ readonly projectId: pulumi.Output; /** * The list of rules used to include targets in the target group. */ readonly rules: pulumi.Output; /** * Create a FeatureFlagTargetGroup 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: FeatureFlagTargetGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FeatureFlagTargetGroup resources. */ export interface FeatureFlagTargetGroupState { /** * Account Identifier */ accountId?: pulumi.Input; /** * Environment Identifier */ environment?: pulumi.Input; /** * A list of targets to exclude from the target group */ excludeds?: pulumi.Input[] | undefined>; /** * The unique identifier of the feature flag target group. */ identifier?: pulumi.Input; /** * A list of targets to include in the target group */ includeds?: pulumi.Input[] | undefined>; /** * The name of the feature flag target group. */ name?: pulumi.Input; /** * Organization Identifier */ orgId?: pulumi.Input; /** * Project Identifier */ projectId?: pulumi.Input; /** * The list of rules used to include targets in the target group. */ rules?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a FeatureFlagTargetGroup resource. */ export interface FeatureFlagTargetGroupArgs { /** * Account Identifier */ accountId: pulumi.Input; /** * Environment Identifier */ environment: pulumi.Input; /** * A list of targets to exclude from the target group */ excludeds?: pulumi.Input[] | undefined>; /** * The unique identifier of the feature flag target group. */ identifier: pulumi.Input; /** * A list of targets to include in the target group */ includeds?: pulumi.Input[] | undefined>; /** * The name of the feature flag target group. */ name?: pulumi.Input; /** * Organization Identifier */ orgId: pulumi.Input; /** * Project Identifier */ projectId: pulumi.Input; /** * The list of rules used to include targets in the target group. */ rules?: pulumi.Input[] | undefined>; } //# sourceMappingURL=featureFlagTargetGroup.d.ts.map