import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog Custom Allocation Rule Order API resource. This can be used to manage the order of Datadog Custom Allocation Rules. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * const rule1 = new datadog.CustomAllocationRule("rule_1", { * costsToAllocates: [{ * condition: "is", * tag: "aws_product", * value: "AmazonEC2", * }], * enabled: true, * providernames: ["aws"], * ruleName: "my-custom-rule-1", * strategy: [{ * allocatedByTagKeys: ["team"], * basedOnCosts: [{ * condition: "is", * tag: "aws_product", * value: "AmazonEC2", * }], * method: "even", * }], * }); * const rule2 = new datadog.CustomAllocationRule("rule_2", { * costsToAllocates: [{ * condition: "is", * tag: "aws_product", * value: "AmazonS3", * }], * enabled: true, * providernames: ["aws"], * ruleName: "my-custom-rule-2", * strategy: [{ * allocatedByTagKeys: ["team"], * basedOnCosts: [{ * condition: "is", * tag: "aws_product", * value: "AmazonS3", * }], * method: "even", * }], * }); * const rule3 = new datadog.CustomAllocationRule("rule_3", { * costsToAllocates: [{ * condition: "is", * tag: "aws_product", * value: "AmazonRDS", * }], * enabled: true, * providernames: ["aws"], * ruleName: "my-custom-rule-3", * strategy: [{ * allocatedByTagKeys: ["team"], * basedOnCosts: [{ * condition: "is", * tag: "aws_product", * value: "AmazonRDS", * }], * method: "even", * }], * }); * // Example 1: Preserve mode (default) - allows unmanaged rules to exist at the end * // This will preserve any existing rules created outside of Terraform as long as they are at the end * const preserveOrder = new datadog.CustomAllocationRules("preserve_order", {ruleIds: [ * rule1.id, * rule2.id, * rule3.id, * ]}); * // Example 2: Override mode - deletes all unmanaged rules and maintains strict order * // This will delete any rules not defined in Terraform and enforce the exact order specified * const overrideOrder = new datadog.CustomAllocationRules("override_order", { * overrideUiDefinedResources: true, * ruleIds: [ * rule1.id, * rule2.id, * rule3.id, * ], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import datadog:index/customAllocationRules:CustomAllocationRules order order * ``` */ export declare class CustomAllocationRules extends pulumi.CustomResource { /** * Get an existing CustomAllocationRules 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?: CustomAllocationRulesState, opts?: pulumi.CustomResourceOptions): CustomAllocationRules; /** * Returns true if the given object is an instance of CustomAllocationRules. 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 CustomAllocationRules; /** * Whether to override UI-defined rules. When set to true, any rules created via the UI that are not defined in Terraform will be deleted and Terraform will be used as the source of truth for rules and their ordering. When set to false, any rules created via the UI that are at the end of order will be kept but will be warned, otherwise an error will be thrown in pulumi preview phase. Default is false */ readonly overrideUiDefinedResources: pulumi.Output; /** * The list of Custom Allocation Rule IDs, in order. Rules are executed in the order specified in this list. Comes from the `id` field on a `datadog.CustomAllocationRule` resource. */ readonly ruleIds: pulumi.Output; /** * Create a CustomAllocationRules 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: CustomAllocationRulesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CustomAllocationRules resources. */ export interface CustomAllocationRulesState { /** * Whether to override UI-defined rules. When set to true, any rules created via the UI that are not defined in Terraform will be deleted and Terraform will be used as the source of truth for rules and their ordering. When set to false, any rules created via the UI that are at the end of order will be kept but will be warned, otherwise an error will be thrown in pulumi preview phase. Default is false */ overrideUiDefinedResources?: pulumi.Input; /** * The list of Custom Allocation Rule IDs, in order. Rules are executed in the order specified in this list. Comes from the `id` field on a `datadog.CustomAllocationRule` resource. */ ruleIds?: pulumi.Input[]>; } /** * The set of arguments for constructing a CustomAllocationRules resource. */ export interface CustomAllocationRulesArgs { /** * Whether to override UI-defined rules. When set to true, any rules created via the UI that are not defined in Terraform will be deleted and Terraform will be used as the source of truth for rules and their ordering. When set to false, any rules created via the UI that are at the end of order will be kept but will be warned, otherwise an error will be thrown in pulumi preview phase. Default is false */ overrideUiDefinedResources?: pulumi.Input; /** * The list of Custom Allocation Rule IDs, in order. Rules are executed in the order specified in this list. Comes from the `id` field on a `datadog.CustomAllocationRule` resource. */ ruleIds: pulumi.Input[]>; }