import * as pulumi from "@pulumi/pulumi"; /** * !> The data source API endpoint has been deprecated, please use dynatrace.getEntity with entity type `PROCESS_GROUP` instead. * * The process group data source allows the process group ID to be retrieved by its name and optionally tags / tag-value pairs. * * - `name` queries for all process groups with the specified name * - `tags` (optional) refers to the tags that need to be present for the process group (inclusive) * * If multiple process groups match the given criteria, the first result will be retrieved. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as dynatrace from "@pulumiverse/dynatrace"; * * const test = dynatrace.getProcessGroup({ * name: "Example", * tags: [ * "TerraformKeyTest", * "TerraformKeyValueTest=TestValue", * ], * }); * const _name_ = new dynatrace.ManagementZone("#name#", {entitySelectorBasedRules: [{ * enabled: true, * selector: test.then(test => `type("process_group"),entityId("${test.id}")`), * }]}); * ``` */ export declare function getProcessGroup(args: GetProcessGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProcessGroup. */ export interface GetProcessGroupArgs { name: string; /** * Required tags of the process group to find */ tags?: string[]; } /** * A collection of values returned by getProcessGroup. */ export interface GetProcessGroupResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; /** * Required tags of the process group to find */ readonly tags?: string[]; } /** * !> The data source API endpoint has been deprecated, please use dynatrace.getEntity with entity type `PROCESS_GROUP` instead. * * The process group data source allows the process group ID to be retrieved by its name and optionally tags / tag-value pairs. * * - `name` queries for all process groups with the specified name * - `tags` (optional) refers to the tags that need to be present for the process group (inclusive) * * If multiple process groups match the given criteria, the first result will be retrieved. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as dynatrace from "@pulumiverse/dynatrace"; * * const test = dynatrace.getProcessGroup({ * name: "Example", * tags: [ * "TerraformKeyTest", * "TerraformKeyValueTest=TestValue", * ], * }); * const _name_ = new dynatrace.ManagementZone("#name#", {entitySelectorBasedRules: [{ * enabled: true, * selector: test.then(test => `type("process_group"),entityId("${test.id}")`), * }]}); * ``` */ export declare function getProcessGroupOutput(args: GetProcessGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProcessGroup. */ export interface GetProcessGroupOutputArgs { name: pulumi.Input; /** * Required tags of the process group to find */ tags?: pulumi.Input[]>; }