1. Packages
  2. Dynatrace
  3. API Docs
  4. WebAppManualInsertion
Dynatrace v0.32.0 published on Monday, Sep 29, 2025 by Pulumiverse

dynatrace.WebAppManualInsertion

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.32.0 published on Monday, Sep 29, 2025 by Pulumiverse

    This resource requires the API token scopes Read settings (settings.read) and Write settings (settings.write)

    Dynatrace Documentation

    • Select a snippet format - https://docs.dynatrace.com/docs/shortlink/snippet-formats

    • Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: builtin:rum.web.manual-insertion)

    Resource Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as dynatrace from "@pulumiverse/dynatrace";
    
    const _name_ = new dynatrace.WebAppManualInsertion("#name#", {
        applicationId: "APPLICATION-1234567890000000",
        codeSnippet: {
            codeSnippetType: "SYNCHRONOUSLY",
        },
        javascriptTag: {
            cacheDuration: "1",
            crossoriginAnonymous: true,
        },
    });
    
    import pulumi
    import pulumiverse_dynatrace as dynatrace
    
    _name_ = dynatrace.WebAppManualInsertion("#name#",
        application_id="APPLICATION-1234567890000000",
        code_snippet={
            "code_snippet_type": "SYNCHRONOUSLY",
        },
        javascript_tag={
            "cache_duration": "1",
            "crossorigin_anonymous": True,
        })
    
    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.NewWebAppManualInsertion(ctx, "#name#", &dynatrace.WebAppManualInsertionArgs{
    			ApplicationId: pulumi.String("APPLICATION-1234567890000000"),
    			CodeSnippet: &dynatrace.WebAppManualInsertionCodeSnippetArgs{
    				CodeSnippetType: pulumi.String("SYNCHRONOUSLY"),
    			},
    			JavascriptTag: &dynatrace.WebAppManualInsertionJavascriptTagArgs{
    				CacheDuration:        pulumi.String("1"),
    				CrossoriginAnonymous: pulumi.Bool(true),
    			},
    		})
    		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 _name_ = new Dynatrace.WebAppManualInsertion("#name#", new()
        {
            ApplicationId = "APPLICATION-1234567890000000",
            CodeSnippet = new Dynatrace.Inputs.WebAppManualInsertionCodeSnippetArgs
            {
                CodeSnippetType = "SYNCHRONOUSLY",
            },
            JavascriptTag = new Dynatrace.Inputs.WebAppManualInsertionJavascriptTagArgs
            {
                CacheDuration = "1",
                CrossoriginAnonymous = true,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.dynatrace.WebAppManualInsertion;
    import com.pulumi.dynatrace.WebAppManualInsertionArgs;
    import com.pulumi.dynatrace.inputs.WebAppManualInsertionCodeSnippetArgs;
    import com.pulumi.dynatrace.inputs.WebAppManualInsertionJavascriptTagArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 _name_ = new WebAppManualInsertion("#name#", WebAppManualInsertionArgs.builder()
                .applicationId("APPLICATION-1234567890000000")
                .codeSnippet(WebAppManualInsertionCodeSnippetArgs.builder()
                    .codeSnippetType("SYNCHRONOUSLY")
                    .build())
                .javascriptTag(WebAppManualInsertionJavascriptTagArgs.builder()
                    .cacheDuration("1")
                    .crossoriginAnonymous(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      '#name#':
        type: dynatrace:WebAppManualInsertion
        properties:
          applicationId: APPLICATION-1234567890000000
          codeSnippet:
            codeSnippetType: SYNCHRONOUSLY
          javascriptTag:
            cacheDuration: '1'
            crossoriginAnonymous: true
    

    Create WebAppManualInsertion Resource

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

    Constructor syntax

    new WebAppManualInsertion(name: string, args: WebAppManualInsertionArgs, opts?: CustomResourceOptions);
    @overload
    def WebAppManualInsertion(resource_name: str,
                              args: WebAppManualInsertionArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def WebAppManualInsertion(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              application_id: Optional[str] = None,
                              code_snippet: Optional[WebAppManualInsertionCodeSnippetArgs] = None,
                              javascript_tag: Optional[WebAppManualInsertionJavascriptTagArgs] = None,
                              oneagent_javascript_tag: Optional[WebAppManualInsertionOneagentJavascriptTagArgs] = None,
                              oneagent_javascript_tag_sri: Optional[WebAppManualInsertionOneagentJavascriptTagSriArgs] = None)
    func NewWebAppManualInsertion(ctx *Context, name string, args WebAppManualInsertionArgs, opts ...ResourceOption) (*WebAppManualInsertion, error)
    public WebAppManualInsertion(string name, WebAppManualInsertionArgs args, CustomResourceOptions? opts = null)
    public WebAppManualInsertion(String name, WebAppManualInsertionArgs args)
    public WebAppManualInsertion(String name, WebAppManualInsertionArgs args, CustomResourceOptions options)
    
    type: dynatrace:WebAppManualInsertion
    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 WebAppManualInsertionArgs
    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 WebAppManualInsertionArgs
    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 WebAppManualInsertionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WebAppManualInsertionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WebAppManualInsertionArgs
    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 webAppManualInsertionResource = new Dynatrace.WebAppManualInsertion("webAppManualInsertionResource", new()
    {
        ApplicationId = "string",
        CodeSnippet = new Dynatrace.Inputs.WebAppManualInsertionCodeSnippetArgs
        {
            CodeSnippetType = "string",
        },
        JavascriptTag = new Dynatrace.Inputs.WebAppManualInsertionJavascriptTagArgs
        {
            CacheDuration = "string",
            CrossoriginAnonymous = false,
            ScriptExecutionAttribute = "string",
        },
        OneagentJavascriptTag = new Dynatrace.Inputs.WebAppManualInsertionOneagentJavascriptTagArgs
        {
            ScriptExecutionAttribute = "string",
        },
        OneagentJavascriptTagSri = new Dynatrace.Inputs.WebAppManualInsertionOneagentJavascriptTagSriArgs
        {
            ScriptExecutionAttribute = "string",
        },
    });
    
    example, err := dynatrace.NewWebAppManualInsertion(ctx, "webAppManualInsertionResource", &dynatrace.WebAppManualInsertionArgs{
    	ApplicationId: pulumi.String("string"),
    	CodeSnippet: &dynatrace.WebAppManualInsertionCodeSnippetArgs{
    		CodeSnippetType: pulumi.String("string"),
    	},
    	JavascriptTag: &dynatrace.WebAppManualInsertionJavascriptTagArgs{
    		CacheDuration:            pulumi.String("string"),
    		CrossoriginAnonymous:     pulumi.Bool(false),
    		ScriptExecutionAttribute: pulumi.String("string"),
    	},
    	OneagentJavascriptTag: &dynatrace.WebAppManualInsertionOneagentJavascriptTagArgs{
    		ScriptExecutionAttribute: pulumi.String("string"),
    	},
    	OneagentJavascriptTagSri: &dynatrace.WebAppManualInsertionOneagentJavascriptTagSriArgs{
    		ScriptExecutionAttribute: pulumi.String("string"),
    	},
    })
    
    var webAppManualInsertionResource = new WebAppManualInsertion("webAppManualInsertionResource", WebAppManualInsertionArgs.builder()
        .applicationId("string")
        .codeSnippet(WebAppManualInsertionCodeSnippetArgs.builder()
            .codeSnippetType("string")
            .build())
        .javascriptTag(WebAppManualInsertionJavascriptTagArgs.builder()
            .cacheDuration("string")
            .crossoriginAnonymous(false)
            .scriptExecutionAttribute("string")
            .build())
        .oneagentJavascriptTag(WebAppManualInsertionOneagentJavascriptTagArgs.builder()
            .scriptExecutionAttribute("string")
            .build())
        .oneagentJavascriptTagSri(WebAppManualInsertionOneagentJavascriptTagSriArgs.builder()
            .scriptExecutionAttribute("string")
            .build())
        .build());
    
    web_app_manual_insertion_resource = dynatrace.WebAppManualInsertion("webAppManualInsertionResource",
        application_id="string",
        code_snippet={
            "code_snippet_type": "string",
        },
        javascript_tag={
            "cache_duration": "string",
            "crossorigin_anonymous": False,
            "script_execution_attribute": "string",
        },
        oneagent_javascript_tag={
            "script_execution_attribute": "string",
        },
        oneagent_javascript_tag_sri={
            "script_execution_attribute": "string",
        })
    
    const webAppManualInsertionResource = new dynatrace.WebAppManualInsertion("webAppManualInsertionResource", {
        applicationId: "string",
        codeSnippet: {
            codeSnippetType: "string",
        },
        javascriptTag: {
            cacheDuration: "string",
            crossoriginAnonymous: false,
            scriptExecutionAttribute: "string",
        },
        oneagentJavascriptTag: {
            scriptExecutionAttribute: "string",
        },
        oneagentJavascriptTagSri: {
            scriptExecutionAttribute: "string",
        },
    });
    
    type: dynatrace:WebAppManualInsertion
    properties:
        applicationId: string
        codeSnippet:
            codeSnippetType: string
        javascriptTag:
            cacheDuration: string
            crossoriginAnonymous: false
            scriptExecutionAttribute: string
        oneagentJavascriptTag:
            scriptExecutionAttribute: string
        oneagentJavascriptTagSri:
            scriptExecutionAttribute: string
    

    WebAppManualInsertion 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 WebAppManualInsertion resource accepts the following input properties:

    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    CodeSnippet Pulumiverse.Dynatrace.Inputs.WebAppManualInsertionCodeSnippet
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    JavascriptTag Pulumiverse.Dynatrace.Inputs.WebAppManualInsertionJavascriptTag
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    OneagentJavascriptTag Pulumiverse.Dynatrace.Inputs.WebAppManualInsertionOneagentJavascriptTag
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    OneagentJavascriptTagSri Pulumiverse.Dynatrace.Inputs.WebAppManualInsertionOneagentJavascriptTagSri
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    CodeSnippet WebAppManualInsertionCodeSnippetArgs
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    JavascriptTag WebAppManualInsertionJavascriptTagArgs
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    OneagentJavascriptTag WebAppManualInsertionOneagentJavascriptTagArgs
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    OneagentJavascriptTagSri WebAppManualInsertionOneagentJavascriptTagSriArgs
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    codeSnippet WebAppManualInsertionCodeSnippet
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    javascriptTag WebAppManualInsertionJavascriptTag
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    oneagentJavascriptTag WebAppManualInsertionOneagentJavascriptTag
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    oneagentJavascriptTagSri WebAppManualInsertionOneagentJavascriptTagSri
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    applicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    codeSnippet WebAppManualInsertionCodeSnippet
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    javascriptTag WebAppManualInsertionJavascriptTag
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    oneagentJavascriptTag WebAppManualInsertionOneagentJavascriptTag
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    oneagentJavascriptTagSri WebAppManualInsertionOneagentJavascriptTagSri
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    application_id str
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    code_snippet WebAppManualInsertionCodeSnippetArgs
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    javascript_tag WebAppManualInsertionJavascriptTagArgs
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    oneagent_javascript_tag WebAppManualInsertionOneagentJavascriptTagArgs
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    oneagent_javascript_tag_sri WebAppManualInsertionOneagentJavascriptTagSriArgs
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    codeSnippet Property Map
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    javascriptTag Property Map
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    oneagentJavascriptTag Property Map
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    oneagentJavascriptTagSri Property Map
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WebAppManualInsertion 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 WebAppManualInsertion Resource

    Get an existing WebAppManualInsertion 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?: WebAppManualInsertionState, opts?: CustomResourceOptions): WebAppManualInsertion
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_id: Optional[str] = None,
            code_snippet: Optional[WebAppManualInsertionCodeSnippetArgs] = None,
            javascript_tag: Optional[WebAppManualInsertionJavascriptTagArgs] = None,
            oneagent_javascript_tag: Optional[WebAppManualInsertionOneagentJavascriptTagArgs] = None,
            oneagent_javascript_tag_sri: Optional[WebAppManualInsertionOneagentJavascriptTagSriArgs] = None) -> WebAppManualInsertion
    func GetWebAppManualInsertion(ctx *Context, name string, id IDInput, state *WebAppManualInsertionState, opts ...ResourceOption) (*WebAppManualInsertion, error)
    public static WebAppManualInsertion Get(string name, Input<string> id, WebAppManualInsertionState? state, CustomResourceOptions? opts = null)
    public static WebAppManualInsertion get(String name, Output<String> id, WebAppManualInsertionState state, CustomResourceOptions options)
    resources:  _:    type: dynatrace:WebAppManualInsertion    get:      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.
    The following state arguments are supported:
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    CodeSnippet Pulumiverse.Dynatrace.Inputs.WebAppManualInsertionCodeSnippet
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    JavascriptTag Pulumiverse.Dynatrace.Inputs.WebAppManualInsertionJavascriptTag
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    OneagentJavascriptTag Pulumiverse.Dynatrace.Inputs.WebAppManualInsertionOneagentJavascriptTag
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    OneagentJavascriptTagSri Pulumiverse.Dynatrace.Inputs.WebAppManualInsertionOneagentJavascriptTagSri
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    CodeSnippet WebAppManualInsertionCodeSnippetArgs
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    JavascriptTag WebAppManualInsertionJavascriptTagArgs
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    OneagentJavascriptTag WebAppManualInsertionOneagentJavascriptTagArgs
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    OneagentJavascriptTagSri WebAppManualInsertionOneagentJavascriptTagSriArgs
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    codeSnippet WebAppManualInsertionCodeSnippet
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    javascriptTag WebAppManualInsertionJavascriptTag
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    oneagentJavascriptTag WebAppManualInsertionOneagentJavascriptTag
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    oneagentJavascriptTagSri WebAppManualInsertionOneagentJavascriptTagSri
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    applicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    codeSnippet WebAppManualInsertionCodeSnippet
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    javascriptTag WebAppManualInsertionJavascriptTag
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    oneagentJavascriptTag WebAppManualInsertionOneagentJavascriptTag
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    oneagentJavascriptTagSri WebAppManualInsertionOneagentJavascriptTagSri
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    application_id str
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    code_snippet WebAppManualInsertionCodeSnippetArgs
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    javascript_tag WebAppManualInsertionJavascriptTagArgs
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    oneagent_javascript_tag WebAppManualInsertionOneagentJavascriptTagArgs
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    oneagent_javascript_tag_sri WebAppManualInsertionOneagentJavascriptTagSriArgs
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    codeSnippet Property Map
    Code snippet is a piece of inline code that implements basic functionality and loads the full functionality either synchronously or deferred. Even though it implements an update mechanism, regular updates are still required to guarantee compatibility.
    javascriptTag Property Map
    JavaScript tag references an external file containing monitoring code and configuration. Due to its dynamic update mechanism, it is recommended for most use cases.
    oneagentJavascriptTag Property Map
    OneAgent JavaScript tag includes configuration and a reference to an external file containing the monitoring code. It needs to be updated after configuration changes and monitoring code updates.
    oneagentJavascriptTagSri Property Map
    OneAgent JavaScript tag with SRI includes configuration, a reference to an external file containing the monitoring code, and a hash that allows the browser to verify the integrity of the monitoring code before executing it. It needs to be updated after configuration changes and monitoring code updates.

    Supporting Types

    WebAppManualInsertionCodeSnippet, WebAppManualInsertionCodeSnippetArgs

    CodeSnippetType string
    Possible Values: DEFERRED, SYNCHRONOUSLY
    CodeSnippetType string
    Possible Values: DEFERRED, SYNCHRONOUSLY
    codeSnippetType String
    Possible Values: DEFERRED, SYNCHRONOUSLY
    codeSnippetType string
    Possible Values: DEFERRED, SYNCHRONOUSLY
    code_snippet_type str
    Possible Values: DEFERRED, SYNCHRONOUSLY
    codeSnippetType String
    Possible Values: DEFERRED, SYNCHRONOUSLY

    WebAppManualInsertionJavascriptTag, WebAppManualInsertionJavascriptTagArgs

    CacheDuration string
    Duration in hours, possible Values: 1, 12, 144, 24, 3, 6, 72
    CrossoriginAnonymous bool
    Add the crossorigin=anonymous attribute to capture JavaScript error messages and W3C resource timings
    ScriptExecutionAttribute string
    Possible Values: Async, Defer, None
    CacheDuration string
    Duration in hours, possible Values: 1, 12, 144, 24, 3, 6, 72
    CrossoriginAnonymous bool
    Add the crossorigin=anonymous attribute to capture JavaScript error messages and W3C resource timings
    ScriptExecutionAttribute string
    Possible Values: Async, Defer, None
    cacheDuration String
    Duration in hours, possible Values: 1, 12, 144, 24, 3, 6, 72
    crossoriginAnonymous Boolean
    Add the crossorigin=anonymous attribute to capture JavaScript error messages and W3C resource timings
    scriptExecutionAttribute String
    Possible Values: Async, Defer, None
    cacheDuration string
    Duration in hours, possible Values: 1, 12, 144, 24, 3, 6, 72
    crossoriginAnonymous boolean
    Add the crossorigin=anonymous attribute to capture JavaScript error messages and W3C resource timings
    scriptExecutionAttribute string
    Possible Values: Async, Defer, None
    cache_duration str
    Duration in hours, possible Values: 1, 12, 144, 24, 3, 6, 72
    crossorigin_anonymous bool
    Add the crossorigin=anonymous attribute to capture JavaScript error messages and W3C resource timings
    script_execution_attribute str
    Possible Values: Async, Defer, None
    cacheDuration String
    Duration in hours, possible Values: 1, 12, 144, 24, 3, 6, 72
    crossoriginAnonymous Boolean
    Add the crossorigin=anonymous attribute to capture JavaScript error messages and W3C resource timings
    scriptExecutionAttribute String
    Possible Values: Async, Defer, None

    WebAppManualInsertionOneagentJavascriptTag, WebAppManualInsertionOneagentJavascriptTagArgs

    ScriptExecutionAttribute string
    Possible Values: Async, Defer, None
    ScriptExecutionAttribute string
    Possible Values: Async, Defer, None
    scriptExecutionAttribute String
    Possible Values: Async, Defer, None
    scriptExecutionAttribute string
    Possible Values: Async, Defer, None
    script_execution_attribute str
    Possible Values: Async, Defer, None
    scriptExecutionAttribute String
    Possible Values: Async, Defer, None

    WebAppManualInsertionOneagentJavascriptTagSri, WebAppManualInsertionOneagentJavascriptTagSriArgs

    ScriptExecutionAttribute string
    Possible Values: Async, Defer, None
    ScriptExecutionAttribute string
    Possible Values: Async, Defer, None
    scriptExecutionAttribute String
    Possible Values: Async, Defer, None
    scriptExecutionAttribute string
    Possible Values: Async, Defer, None
    script_execution_attribute str
    Possible Values: Async, Defer, None
    scriptExecutionAttribute String
    Possible Values: Async, Defer, None

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.32.0 published on Monday, Sep 29, 2025 by Pulumiverse
      AI Agentic Workflows: Register now