published on Tuesday, Jun 23, 2026 by Pulumiverse
published on Tuesday, Jun 23, 2026 by Pulumiverse
This resource requires the API token scopes Read settings (
settings.read) and Write settings (settings.write)
Dynatrace Documentation
Infrastructure & Operations - https://www.dynatrace.com/hub/detail/infrastructure-operations/
Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId:
app:dynatrace.infraops:settings)
Export Example Usage
terraform-provider-dynatrace -export dynatrace.InfraopsAppSettingsdownloads existing infrastructure and operations app feature flag configuration
The full documentation of the export feature is available here.
Resource Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumiverse/dynatrace";
const example = new dynatrace.InfraopsAppSettings("example", {
showMonitoringCandidates: true,
showStandaloneHosts: true,
interfaceSaturationThreshold: 0.95,
invexDqlQueryLimit: 1000,
});
import pulumi
import pulumiverse_dynatrace as dynatrace
example = dynatrace.InfraopsAppSettings("example",
show_monitoring_candidates=True,
show_standalone_hosts=True,
interface_saturation_threshold=0.95,
invex_dql_query_limit=1000)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dynatrace.NewInfraopsAppSettings(ctx, "example", &dynatrace.InfraopsAppSettingsArgs{
ShowMonitoringCandidates: pulumi.Bool(true),
ShowStandaloneHosts: pulumi.Bool(true),
InterfaceSaturationThreshold: pulumi.Float64(0.95),
InvexDqlQueryLimit: pulumi.Int(1000),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumiverse.Dynatrace;
return await Deployment.RunAsync(() =>
{
var example = new Dynatrace.InfraopsAppSettings("example", new()
{
ShowMonitoringCandidates = true,
ShowStandaloneHosts = true,
InterfaceSaturationThreshold = 0.95,
InvexDqlQueryLimit = 1000,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.InfraopsAppSettings;
import com.pulumi.dynatrace.InfraopsAppSettingsArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new InfraopsAppSettings("example", InfraopsAppSettingsArgs.builder()
.showMonitoringCandidates(true)
.showStandaloneHosts(true)
.interfaceSaturationThreshold(0.95)
.invexDqlQueryLimit(1000)
.build());
}
}
resources:
example:
type: dynatrace:InfraopsAppSettings
properties:
showMonitoringCandidates: true
showStandaloneHosts: true
interfaceSaturationThreshold: 0.95
invexDqlQueryLimit: 1000
pulumi {
required_providers {
dynatrace = {
source = "pulumi/dynatrace"
}
}
}
resource "dynatrace_infraopsappsettings" "example" {
show_monitoring_candidates = true
show_standalone_hosts = true
interface_saturation_threshold = 0.95
invex_dql_query_limit = 1000
}
Create InfraopsAppSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InfraopsAppSettings(name: string, args: InfraopsAppSettingsArgs, opts?: CustomResourceOptions);@overload
def InfraopsAppSettings(resource_name: str,
args: InfraopsAppSettingsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InfraopsAppSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
interface_saturation_threshold: Optional[float] = None,
invex_dql_query_limit: Optional[int] = None,
show_monitoring_candidates: Optional[bool] = None,
show_standalone_hosts: Optional[bool] = None)func NewInfraopsAppSettings(ctx *Context, name string, args InfraopsAppSettingsArgs, opts ...ResourceOption) (*InfraopsAppSettings, error)public InfraopsAppSettings(string name, InfraopsAppSettingsArgs args, CustomResourceOptions? opts = null)
public InfraopsAppSettings(String name, InfraopsAppSettingsArgs args)
public InfraopsAppSettings(String name, InfraopsAppSettingsArgs args, CustomResourceOptions options)
type: dynatrace:InfraopsAppSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_infraopsappsettings" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args InfraopsAppSettingsArgs
- 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 InfraopsAppSettingsArgs
- 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 InfraopsAppSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InfraopsAppSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InfraopsAppSettingsArgs
- 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 infraopsAppSettingsResource = new Dynatrace.InfraopsAppSettings("infraopsAppSettingsResource", new()
{
InterfaceSaturationThreshold = 0,
InvexDqlQueryLimit = 0,
ShowMonitoringCandidates = false,
ShowStandaloneHosts = false,
});
example, err := dynatrace.NewInfraopsAppSettings(ctx, "infraopsAppSettingsResource", &dynatrace.InfraopsAppSettingsArgs{
InterfaceSaturationThreshold: pulumi.Float64(0),
InvexDqlQueryLimit: pulumi.Int(0),
ShowMonitoringCandidates: pulumi.Bool(false),
ShowStandaloneHosts: pulumi.Bool(false),
})
resource "dynatrace_infraopsappsettings" "infraopsAppSettingsResource" {
interface_saturation_threshold = 0
invex_dql_query_limit = 0
show_monitoring_candidates = false
show_standalone_hosts = false
}
var infraopsAppSettingsResource = new InfraopsAppSettings("infraopsAppSettingsResource", InfraopsAppSettingsArgs.builder()
.interfaceSaturationThreshold(0.0)
.invexDqlQueryLimit(0)
.showMonitoringCandidates(false)
.showStandaloneHosts(false)
.build());
infraops_app_settings_resource = dynatrace.InfraopsAppSettings("infraopsAppSettingsResource",
interface_saturation_threshold=float(0),
invex_dql_query_limit=0,
show_monitoring_candidates=False,
show_standalone_hosts=False)
const infraopsAppSettingsResource = new dynatrace.InfraopsAppSettings("infraopsAppSettingsResource", {
interfaceSaturationThreshold: 0,
invexDqlQueryLimit: 0,
showMonitoringCandidates: false,
showStandaloneHosts: false,
});
type: dynatrace:InfraopsAppSettings
properties:
interfaceSaturationThreshold: 0
invexDqlQueryLimit: 0
showMonitoringCandidates: false
showStandaloneHosts: false
InfraopsAppSettings Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The InfraopsAppSettings resource accepts the following input properties:
- Interface
Saturation doubleThreshold - The threshold at which a network device interface is deemed to be saturated.
- Invex
Dql intQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- Show
Monitoring boolCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- Show
Standalone boolHosts - When set to true, the app will display app only hosts in the Hosts table
- Interface
Saturation float64Threshold - The threshold at which a network device interface is deemed to be saturated.
- Invex
Dql intQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- Show
Monitoring boolCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- Show
Standalone boolHosts - When set to true, the app will display app only hosts in the Hosts table
- interface_
saturation_ numberthreshold - The threshold at which a network device interface is deemed to be saturated.
- invex_
dql_ numberquery_ limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show_
monitoring_ boolcandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show_
standalone_ boolhosts - When set to true, the app will display app only hosts in the Hosts table
- interface
Saturation DoubleThreshold - The threshold at which a network device interface is deemed to be saturated.
- invex
Dql IntegerQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show
Monitoring BooleanCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show
Standalone BooleanHosts - When set to true, the app will display app only hosts in the Hosts table
- interface
Saturation numberThreshold - The threshold at which a network device interface is deemed to be saturated.
- invex
Dql numberQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show
Monitoring booleanCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show
Standalone booleanHosts - When set to true, the app will display app only hosts in the Hosts table
- interface_
saturation_ floatthreshold - The threshold at which a network device interface is deemed to be saturated.
- invex_
dql_ intquery_ limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show_
monitoring_ boolcandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show_
standalone_ boolhosts - When set to true, the app will display app only hosts in the Hosts table
- interface
Saturation NumberThreshold - The threshold at which a network device interface is deemed to be saturated.
- invex
Dql NumberQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show
Monitoring BooleanCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show
Standalone BooleanHosts - When set to true, the app will display app only hosts in the Hosts table
Outputs
All input properties are implicitly available as output properties. Additionally, the InfraopsAppSettings 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 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 InfraopsAppSettings Resource
Get an existing InfraopsAppSettings 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?: InfraopsAppSettingsState, opts?: CustomResourceOptions): InfraopsAppSettings@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
interface_saturation_threshold: Optional[float] = None,
invex_dql_query_limit: Optional[int] = None,
show_monitoring_candidates: Optional[bool] = None,
show_standalone_hosts: Optional[bool] = None) -> InfraopsAppSettingsfunc GetInfraopsAppSettings(ctx *Context, name string, id IDInput, state *InfraopsAppSettingsState, opts ...ResourceOption) (*InfraopsAppSettings, error)public static InfraopsAppSettings Get(string name, Input<string> id, InfraopsAppSettingsState? state, CustomResourceOptions? opts = null)public static InfraopsAppSettings get(String name, Output<String> id, InfraopsAppSettingsState state, CustomResourceOptions options)resources: _: type: dynatrace:InfraopsAppSettings get: id: ${id}import {
to = dynatrace_infraopsappsettings.example
id = "${id}"
}
- 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.
- Interface
Saturation doubleThreshold - The threshold at which a network device interface is deemed to be saturated.
- Invex
Dql intQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- Show
Monitoring boolCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- Show
Standalone boolHosts - When set to true, the app will display app only hosts in the Hosts table
- Interface
Saturation float64Threshold - The threshold at which a network device interface is deemed to be saturated.
- Invex
Dql intQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- Show
Monitoring boolCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- Show
Standalone boolHosts - When set to true, the app will display app only hosts in the Hosts table
- interface_
saturation_ numberthreshold - The threshold at which a network device interface is deemed to be saturated.
- invex_
dql_ numberquery_ limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show_
monitoring_ boolcandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show_
standalone_ boolhosts - When set to true, the app will display app only hosts in the Hosts table
- interface
Saturation DoubleThreshold - The threshold at which a network device interface is deemed to be saturated.
- invex
Dql IntegerQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show
Monitoring BooleanCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show
Standalone BooleanHosts - When set to true, the app will display app only hosts in the Hosts table
- interface
Saturation numberThreshold - The threshold at which a network device interface is deemed to be saturated.
- invex
Dql numberQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show
Monitoring booleanCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show
Standalone booleanHosts - When set to true, the app will display app only hosts in the Hosts table
- interface_
saturation_ floatthreshold - The threshold at which a network device interface is deemed to be saturated.
- invex_
dql_ intquery_ limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show_
monitoring_ boolcandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show_
standalone_ boolhosts - When set to true, the app will display app only hosts in the Hosts table
- interface
Saturation NumberThreshold - The threshold at which a network device interface is deemed to be saturated.
- invex
Dql NumberQuery Limit - Limit the number of results returned from Grail for Host, Network device, and Extensions entities.
- show
Monitoring BooleanCandidates - When set to true, the app will display monitoring candidates in the Hosts table
- show
Standalone BooleanHosts - When set to true, the app will display app only hosts in the Hosts table
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatraceTerraform Provider.
published on Tuesday, Jun 23, 2026 by Pulumiverse