import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * !> This resource API endpoint has been deprecated. * * > This resource requires the API token scopes **Read settings** (`settings.read`) and **Write settings** (`settings.write`) * * ## Dynatrace Documentation * * - DDU Pools - https://www.dynatrace.com/support/help/monitoring-consumption/davis-data-units#ddu-pools * * - Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: `builtin:accounting.ddu.limit`) * * ## Resource Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as dynatrace from "@pulumiverse/dynatrace"; * * const _name_ = new dynatrace.DduPool("#name#", { * events: { * enabled: true, * type: "MONTHLY", * value: 125, * }, * logMonitoring: { * enabled: true, * type: "MONTHLY", * value: 124, * }, * metrics: { * enabled: true, * type: "MONTHLY", * value: 123, * }, * serverless: { * enabled: true, * type: "MONTHLY", * value: 126, * }, * traces: { * enabled: true, * type: "MONTHLY", * value: 127, * }, * }); * ``` */ export declare class DduPool extends pulumi.CustomResource { /** * Get an existing DduPool 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?: DduPoolState, opts?: pulumi.CustomResourceOptions): DduPool; /** * Returns true if the given object is an instance of DduPool. 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 DduPool; /** * DDU pool settings for Events */ readonly events: pulumi.Output; /** * DDU pool settings for Log Monitoring */ readonly logMonitoring: pulumi.Output; /** * DDU pool settings for Metrics */ readonly metrics: pulumi.Output; /** * DDU pool settings for Serverless */ readonly serverless: pulumi.Output; /** * DDU pool settings for Traces */ readonly traces: pulumi.Output; /** * Create a DduPool 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?: DduPoolArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DduPool resources. */ export interface DduPoolState { /** * DDU pool settings for Events */ events?: pulumi.Input; /** * DDU pool settings for Log Monitoring */ logMonitoring?: pulumi.Input; /** * DDU pool settings for Metrics */ metrics?: pulumi.Input; /** * DDU pool settings for Serverless */ serverless?: pulumi.Input; /** * DDU pool settings for Traces */ traces?: pulumi.Input; } /** * The set of arguments for constructing a DduPool resource. */ export interface DduPoolArgs { /** * DDU pool settings for Events */ events?: pulumi.Input; /** * DDU pool settings for Log Monitoring */ logMonitoring?: pulumi.Input; /** * DDU pool settings for Metrics */ metrics?: pulumi.Input; /** * DDU pool settings for Serverless */ serverless?: pulumi.Input; /** * DDU pool settings for Traces */ traces?: pulumi.Input; }