import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CloudappWorkloaddetection extends pulumi.CustomResource { /** * Get an existing CloudappWorkloaddetection 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?: CloudappWorkloaddetectionState, opts?: pulumi.CustomResourceOptions): CloudappWorkloaddetection; /** * Returns true if the given object is an instance of CloudappWorkloaddetection. 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 CloudappWorkloaddetection; /** * Enable this setting to get * * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). */ readonly cloudFoundry: pulumi.Output; /** * Enable this setting for plain Docker and Podman environments to get * * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). * * Docker support requires OneAgent 1.257+. * * Podman support requires OneAgent 1.267+. */ readonly docker: pulumi.Output; /** * Enable this setting to get * * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * * Container resource metrics (container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). * * Similar workloads merged into process groups based on defined rules (see below). * * Version detection for services that run in Kubernetes workloads. */ readonly kubernetes: pulumi.Output; /** * Enable this setting to * * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, [and many more](https://dt-url.net/2m02q7b). * * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). */ readonly serverless: pulumi.Output; /** * Create a CloudappWorkloaddetection 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: CloudappWorkloaddetectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudappWorkloaddetection resources. */ export interface CloudappWorkloaddetectionState { /** * Enable this setting to get * * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). */ cloudFoundry?: pulumi.Input; /** * Enable this setting for plain Docker and Podman environments to get * * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). * * Docker support requires OneAgent 1.257+. * * Podman support requires OneAgent 1.267+. */ docker?: pulumi.Input; /** * Enable this setting to get * * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * * Container resource metrics (container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). * * Similar workloads merged into process groups based on defined rules (see below). * * Version detection for services that run in Kubernetes workloads. */ kubernetes?: pulumi.Input; /** * Enable this setting to * * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, [and many more](https://dt-url.net/2m02q7b). * * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). */ serverless?: pulumi.Input; } /** * The set of arguments for constructing a CloudappWorkloaddetection resource. */ export interface CloudappWorkloaddetectionArgs { /** * Enable this setting to get * * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). */ cloudFoundry: pulumi.Input; /** * Enable this setting for plain Docker and Podman environments to get * * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). * * Docker support requires OneAgent 1.257+. * * Podman support requires OneAgent 1.267+. */ docker: pulumi.Input; /** * Enable this setting to get * * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * * Container resource metrics (container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). * * Similar workloads merged into process groups based on defined rules (see below). * * Version detection for services that run in Kubernetes workloads. */ kubernetes: pulumi.Input; /** * Enable this setting to * * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, [and many more](https://dt-url.net/2m02q7b). * * Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). */ serverless?: pulumi.Input; }