1. Packages
  2. Dynatrace
  3. API Docs
  4. CloudappWorkloaddetection
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

dynatrace.CloudappWorkloaddetection

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

    Create CloudappWorkloaddetection Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CloudappWorkloaddetection(name: string, args: CloudappWorkloaddetectionArgs, opts?: CustomResourceOptions);
    @overload
    def CloudappWorkloaddetection(resource_name: str,
                                  args: CloudappWorkloaddetectionArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudappWorkloaddetection(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  cloud_foundry: Optional[CloudappWorkloaddetectionCloudFoundryArgs] = None,
                                  docker: Optional[CloudappWorkloaddetectionDockerArgs] = None,
                                  kubernetes: Optional[CloudappWorkloaddetectionKubernetesArgs] = None)
    func NewCloudappWorkloaddetection(ctx *Context, name string, args CloudappWorkloaddetectionArgs, opts ...ResourceOption) (*CloudappWorkloaddetection, error)
    public CloudappWorkloaddetection(string name, CloudappWorkloaddetectionArgs args, CustomResourceOptions? opts = null)
    public CloudappWorkloaddetection(String name, CloudappWorkloaddetectionArgs args)
    public CloudappWorkloaddetection(String name, CloudappWorkloaddetectionArgs args, CustomResourceOptions options)
    
    type: dynatrace:CloudappWorkloaddetection
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CloudappWorkloaddetectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CloudappWorkloaddetectionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CloudappWorkloaddetectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudappWorkloaddetectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudappWorkloaddetectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var cloudappWorkloaddetectionResource = new Dynatrace.CloudappWorkloaddetection("cloudappWorkloaddetectionResource", new()
    {
        CloudFoundry = new Dynatrace.Inputs.CloudappWorkloaddetectionCloudFoundryArgs
        {
            Enabled = false,
        },
        Docker = new Dynatrace.Inputs.CloudappWorkloaddetectionDockerArgs
        {
            Enabled = false,
        },
        Kubernetes = new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesArgs
        {
            Enabled = false,
            Filters = new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesFiltersArgs
            {
                Filters = new[]
                {
                    new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesFiltersFilterArgs
                    {
                        Enabled = false,
                        InclusionToggles = new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs
                        {
                            IncBasepod = false,
                            IncContainer = false,
                            IncNamespace = false,
                            IncProduct = false,
                            IncStage = false,
                        },
                        MatchFilter = new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs
                        {
                            MatchOperator = "string",
                            Namespace = "string",
                        },
                    },
                },
            },
        },
    });
    
    example, err := dynatrace.NewCloudappWorkloaddetection(ctx, "cloudappWorkloaddetectionResource", &dynatrace.CloudappWorkloaddetectionArgs{
    	CloudFoundry: &dynatrace.CloudappWorkloaddetectionCloudFoundryArgs{
    		Enabled: pulumi.Bool(false),
    	},
    	Docker: &dynatrace.CloudappWorkloaddetectionDockerArgs{
    		Enabled: pulumi.Bool(false),
    	},
    	Kubernetes: &dynatrace.CloudappWorkloaddetectionKubernetesArgs{
    		Enabled: pulumi.Bool(false),
    		Filters: &dynatrace.CloudappWorkloaddetectionKubernetesFiltersArgs{
    			Filters: dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterArray{
    				&dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterArgs{
    					Enabled: pulumi.Bool(false),
    					InclusionToggles: &dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs{
    						IncBasepod:   pulumi.Bool(false),
    						IncContainer: pulumi.Bool(false),
    						IncNamespace: pulumi.Bool(false),
    						IncProduct:   pulumi.Bool(false),
    						IncStage:     pulumi.Bool(false),
    					},
    					MatchFilter: &dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs{
    						MatchOperator: pulumi.String("string"),
    						Namespace:     pulumi.String("string"),
    					},
    				},
    			},
    		},
    	},
    })
    
    var cloudappWorkloaddetectionResource = new CloudappWorkloaddetection("cloudappWorkloaddetectionResource", CloudappWorkloaddetectionArgs.builder()        
        .cloudFoundry(CloudappWorkloaddetectionCloudFoundryArgs.builder()
            .enabled(false)
            .build())
        .docker(CloudappWorkloaddetectionDockerArgs.builder()
            .enabled(false)
            .build())
        .kubernetes(CloudappWorkloaddetectionKubernetesArgs.builder()
            .enabled(false)
            .filters(CloudappWorkloaddetectionKubernetesFiltersArgs.builder()
                .filters(CloudappWorkloaddetectionKubernetesFiltersFilterArgs.builder()
                    .enabled(false)
                    .inclusionToggles(CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs.builder()
                        .incBasepod(false)
                        .incContainer(false)
                        .incNamespace(false)
                        .incProduct(false)
                        .incStage(false)
                        .build())
                    .matchFilter(CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs.builder()
                        .matchOperator("string")
                        .namespace("string")
                        .build())
                    .build())
                .build())
            .build())
        .build());
    
    cloudapp_workloaddetection_resource = dynatrace.CloudappWorkloaddetection("cloudappWorkloaddetectionResource",
        cloud_foundry=dynatrace.CloudappWorkloaddetectionCloudFoundryArgs(
            enabled=False,
        ),
        docker=dynatrace.CloudappWorkloaddetectionDockerArgs(
            enabled=False,
        ),
        kubernetes=dynatrace.CloudappWorkloaddetectionKubernetesArgs(
            enabled=False,
            filters=dynatrace.CloudappWorkloaddetectionKubernetesFiltersArgs(
                filters=[dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterArgs(
                    enabled=False,
                    inclusion_toggles=dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs(
                        inc_basepod=False,
                        inc_container=False,
                        inc_namespace=False,
                        inc_product=False,
                        inc_stage=False,
                    ),
                    match_filter=dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs(
                        match_operator="string",
                        namespace="string",
                    ),
                )],
            ),
        ))
    
    const cloudappWorkloaddetectionResource = new dynatrace.CloudappWorkloaddetection("cloudappWorkloaddetectionResource", {
        cloudFoundry: {
            enabled: false,
        },
        docker: {
            enabled: false,
        },
        kubernetes: {
            enabled: false,
            filters: {
                filters: [{
                    enabled: false,
                    inclusionToggles: {
                        incBasepod: false,
                        incContainer: false,
                        incNamespace: false,
                        incProduct: false,
                        incStage: false,
                    },
                    matchFilter: {
                        matchOperator: "string",
                        namespace: "string",
                    },
                }],
            },
        },
    });
    
    type: dynatrace:CloudappWorkloaddetection
    properties:
        cloudFoundry:
            enabled: false
        docker:
            enabled: false
        kubernetes:
            enabled: false
            filters:
                filters:
                    - enabled: false
                      inclusionToggles:
                        incBasepod: false
                        incContainer: false
                        incNamespace: false
                        incProduct: false
                        incStage: false
                      matchFilter:
                        matchOperator: string
                        namespace: string
    

    CloudappWorkloaddetection Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The CloudappWorkloaddetection resource accepts the following input properties:

    CloudFoundry Lbrlabs.PulumiPackage.Dynatrace.Inputs.CloudappWorkloaddetectionCloudFoundry
    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.
    Docker Lbrlabs.PulumiPackage.Dynatrace.Inputs.CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    Kubernetes Lbrlabs.PulumiPackage.Dynatrace.Inputs.CloudappWorkloaddetectionKubernetes
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    CloudFoundry CloudappWorkloaddetectionCloudFoundryArgs
    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.
    Docker CloudappWorkloaddetectionDockerArgs
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    Kubernetes CloudappWorkloaddetectionKubernetesArgs
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    cloudFoundry CloudappWorkloaddetectionCloudFoundry
    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.
    docker CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetes
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    cloudFoundry CloudappWorkloaddetectionCloudFoundry
    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.
    docker CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetes
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    cloud_foundry CloudappWorkloaddetectionCloudFoundryArgs
    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.
    docker CloudappWorkloaddetectionDockerArgs
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetesArgs
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    cloudFoundry Property Map
    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.
    docker Property Map
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes Property Map
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CloudappWorkloaddetection resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CloudappWorkloaddetection Resource

    Get an existing CloudappWorkloaddetection resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CloudappWorkloaddetectionState, opts?: CustomResourceOptions): CloudappWorkloaddetection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cloud_foundry: Optional[CloudappWorkloaddetectionCloudFoundryArgs] = None,
            docker: Optional[CloudappWorkloaddetectionDockerArgs] = None,
            kubernetes: Optional[CloudappWorkloaddetectionKubernetesArgs] = None) -> CloudappWorkloaddetection
    func GetCloudappWorkloaddetection(ctx *Context, name string, id IDInput, state *CloudappWorkloaddetectionState, opts ...ResourceOption) (*CloudappWorkloaddetection, error)
    public static CloudappWorkloaddetection Get(string name, Input<string> id, CloudappWorkloaddetectionState? state, CustomResourceOptions? opts = null)
    public static CloudappWorkloaddetection get(String name, Output<String> id, CloudappWorkloaddetectionState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CloudFoundry Lbrlabs.PulumiPackage.Dynatrace.Inputs.CloudappWorkloaddetectionCloudFoundry
    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.
    Docker Lbrlabs.PulumiPackage.Dynatrace.Inputs.CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    Kubernetes Lbrlabs.PulumiPackage.Dynatrace.Inputs.CloudappWorkloaddetectionKubernetes
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    CloudFoundry CloudappWorkloaddetectionCloudFoundryArgs
    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.
    Docker CloudappWorkloaddetectionDockerArgs
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    Kubernetes CloudappWorkloaddetectionKubernetesArgs
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    cloudFoundry CloudappWorkloaddetectionCloudFoundry
    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.
    docker CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetes
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    cloudFoundry CloudappWorkloaddetectionCloudFoundry
    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.
    docker CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetes
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    cloud_foundry CloudappWorkloaddetectionCloudFoundryArgs
    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.
    docker CloudappWorkloaddetectionDockerArgs
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetesArgs
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
    cloudFoundry Property Map
    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.
    docker Property Map
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes Property Map
    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. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.

    Supporting Types

    CloudappWorkloaddetectionCloudFoundry, CloudappWorkloaddetectionCloudFoundryArgs

    Enabled bool
    Enabled bool
    enabled Boolean
    enabled boolean
    enabled bool
    enabled Boolean

    CloudappWorkloaddetectionDocker, CloudappWorkloaddetectionDockerArgs

    Enabled bool
    Enabled bool
    enabled Boolean
    enabled boolean
    enabled bool
    enabled Boolean

    CloudappWorkloaddetectionKubernetes, CloudappWorkloaddetectionKubernetesArgs

    CloudappWorkloaddetectionKubernetesFilters, CloudappWorkloaddetectionKubernetesFiltersArgs

    CloudappWorkloaddetectionKubernetesFiltersFilter, CloudappWorkloaddetectionKubernetesFiltersFilterArgs

    CloudappWorkloaddetectionKubernetesFiltersFilterInclusionToggles, CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs

    incBasepod Boolean
    incContainer Boolean
    incNamespace Boolean
    incProduct Boolean
    incStage Boolean
    incBasepod boolean
    incContainer boolean
    incNamespace boolean
    incProduct boolean
    incStage boolean
    incBasepod Boolean
    incContainer Boolean
    incNamespace Boolean
    incProduct Boolean
    incStage Boolean

    CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilter, CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs

    Package Details

    Repository
    dynatrace lbrlabs/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs