dynatrace.CloudappWorkloaddetection
Explore with Pulumi AI
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.
Constructor 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:
- Cloud
Foundry Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Cloud Foundry - 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
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Docker - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- Kubernetes
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes - 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 CloudappWorkloaddetection Cloud Foundry Args - 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
Cloudapp
Workloaddetection Docker Args - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- Kubernetes
Cloudapp
Workloaddetection Kubernetes Args - 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 CloudappWorkloaddetection Cloud Foundry - 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
Cloudapp
Workloaddetection Docker - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- kubernetes
Cloudapp
Workloaddetection Kubernetes - 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 CloudappWorkloaddetection Cloud Foundry - 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
Cloudapp
Workloaddetection Docker - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- kubernetes
Cloudapp
Workloaddetection Kubernetes - 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 CloudappWorkloaddetection Cloud Foundry Args - 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
Cloudapp
Workloaddetection Docker Args - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- kubernetes
Cloudapp
Workloaddetection Kubernetes Args - 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 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.
- Cloud
Foundry Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Cloud Foundry - 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
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Docker - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- Kubernetes
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes - 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 CloudappWorkloaddetection Cloud Foundry Args - 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
Cloudapp
Workloaddetection Docker Args - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- Kubernetes
Cloudapp
Workloaddetection Kubernetes Args - 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 CloudappWorkloaddetection Cloud Foundry - 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
Cloudapp
Workloaddetection Docker - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- kubernetes
Cloudapp
Workloaddetection Kubernetes - 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 CloudappWorkloaddetection Cloud Foundry - 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
Cloudapp
Workloaddetection Docker - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- kubernetes
Cloudapp
Workloaddetection Kubernetes - 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 CloudappWorkloaddetection Cloud Foundry Args - 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
Cloudapp
Workloaddetection Docker Args - Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
- kubernetes
Cloudapp
Workloaddetection Kubernetes Args - 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 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
- This setting is enabled (
true
) or disabled (false
)
- Enabled bool
- This setting is enabled (
true
) or disabled (false
)
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
)
- enabled boolean
- This setting is enabled (
true
) or disabled (false
)
- enabled bool
- This setting is enabled (
true
) or disabled (false
)
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
)
CloudappWorkloaddetectionDocker, CloudappWorkloaddetectionDockerArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
)
- Enabled bool
- This setting is enabled (
true
) or disabled (false
)
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
)
- enabled boolean
- This setting is enabled (
true
) or disabled (false
)
- enabled bool
- This setting is enabled (
true
) or disabled (false
)
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
)
CloudappWorkloaddetectionKubernetes, CloudappWorkloaddetectionKubernetesArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Filters
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Filters
Cloudapp
Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - filters
Cloudapp
Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - filters
Cloudapp
Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - filters
Cloudapp
Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - filters Property Map
Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
CloudappWorkloaddetectionKubernetesFilters, CloudappWorkloaddetectionKubernetesFiltersArgs
CloudappWorkloaddetectionKubernetesFiltersFilter, CloudappWorkloaddetectionKubernetesFiltersFilterArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Inclusion
Toggles Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- Match
Filter Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes Filters Filter Match Filter - When namespace
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Inclusion
Toggles CloudappWorkloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- Match
Filter CloudappWorkloaddetection Kubernetes Filters Filter Match Filter - When namespace
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - inclusion
Toggles CloudappWorkloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- match
Filter CloudappWorkloaddetection Kubernetes Filters Filter Match Filter - When namespace
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - inclusion
Toggles CloudappWorkloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- match
Filter CloudappWorkloaddetection Kubernetes Filters Filter Match Filter - When namespace
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - inclusion_
toggles CloudappWorkloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- match_
filter CloudappWorkloaddetection Kubernetes Filters Filter Match Filter - When namespace
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - inclusion
Toggles Property Map - ID calculation based on
- match
Filter Property Map - When namespace
CloudappWorkloaddetectionKubernetesFiltersFilterInclusionToggles, CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs
- Inc
Basepod bool - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- Inc
Container bool - Container name
- Inc
Namespace bool - Namespace name
- Inc
Product bool - If Product is enabled and has no value, it defaults to Base pod name
- Inc
Stage bool - Stage
- Inc
Basepod bool - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- Inc
Container bool - Container name
- Inc
Namespace bool - Namespace name
- Inc
Product bool - If Product is enabled and has no value, it defaults to Base pod name
- Inc
Stage bool - Stage
- inc
Basepod Boolean - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- inc
Container Boolean - Container name
- inc
Namespace Boolean - Namespace name
- inc
Product Boolean - If Product is enabled and has no value, it defaults to Base pod name
- inc
Stage Boolean - Stage
- inc
Basepod boolean - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- inc
Container boolean - Container name
- inc
Namespace boolean - Namespace name
- inc
Product boolean - If Product is enabled and has no value, it defaults to Base pod name
- inc
Stage boolean - Stage
- inc_
basepod bool - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- inc_
container bool - Container name
- inc_
namespace bool - Namespace name
- inc_
product bool - If Product is enabled and has no value, it defaults to Base pod name
- inc_
stage bool - Stage
- inc
Basepod Boolean - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- inc
Container Boolean - Container name
- inc
Namespace Boolean - Namespace name
- inc
Product Boolean - If Product is enabled and has no value, it defaults to Base pod name
- inc
Stage Boolean - Stage
CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilter, CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs
- Match
Operator string - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- Namespace string
- Namespace name
- Match
Operator string - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- Namespace string
- Namespace name
- match
Operator String - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- namespace String
- Namespace name
- match
Operator string - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- namespace string
- Namespace name
- match_
operator str - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- namespace str
- Namespace name
- match
Operator String - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- namespace String
- Namespace name
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.