Viewing docs for Dynatrace v0.36.0
published on Tuesday, Jun 9, 2026 by Pulumiverse
published on Tuesday, Jun 9, 2026 by Pulumiverse
Viewing docs for Dynatrace v0.36.0
published on Tuesday, Jun 9, 2026 by Pulumiverse
published on Tuesday, Jun 9, 2026 by Pulumiverse
The data source API endpoint has been deprecated, please use dynatrace.getEntity with entity type
PROCESS_GROUP_INSTANCEinstead.
The process data source allows the process ID to be retrieved by its name and optionally tags / tag-value pairs.
namequeries for all processes with the specified nametags(optional) refers to the tags that need to be present for the process (inclusive)
If multiple processes match the given criteria, the first result will be retrieved.
Using getProcess
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getProcess(args: GetProcessArgs, opts?: InvokeOptions): Promise<GetProcessResult>
function getProcessOutput(args: GetProcessOutputArgs, opts?: InvokeOptions): Output<GetProcessResult>def get_process(name: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetProcessResult
def get_process_output(name: pulumi.Input[Optional[str]] = None,
tags: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProcessResult]func GetProcess(ctx *Context, args *GetProcessArgs, opts ...InvokeOption) (*GetProcessResult, error)
func GetProcessOutput(ctx *Context, args *GetProcessOutputArgs, opts ...InvokeOption) GetProcessResultOutput> Note: This function is named GetProcess in the Go SDK.
public static class GetProcess
{
public static Task<GetProcessResult> InvokeAsync(GetProcessArgs args, InvokeOptions? opts = null)
public static Output<GetProcessResult> Invoke(GetProcessInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetProcessResult> getProcess(GetProcessArgs args, InvokeOptions options)
public static Output<GetProcessResult> getProcess(GetProcessArgs args, InvokeOptions options)
fn::invoke:
function: dynatrace:index/getProcess:getProcess
arguments:
# arguments dictionarydata "dynatrace_getprocess" "name" {
# arguments
}The following arguments are supported:
- Name string
- List<string>
- Required tags of the process to find
- Name string
- []string
- Required tags of the process to find
- name string
- list(string)
- Required tags of the process to find
- name String
- List<String>
- Required tags of the process to find
- name string
- string[]
- Required tags of the process to find
- name str
- Sequence[str]
- Required tags of the process to find
- name String
- List<String>
- Required tags of the process to find
getProcess Result
The following output properties are available:
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatraceTerraform Provider.
Viewing docs for Dynatrace v0.36.0
published on Tuesday, Jun 9, 2026 by Pulumiverse
published on Tuesday, Jun 9, 2026 by Pulumiverse