dynatrace.WebAppManualInsertion
Explore with Pulumi AI
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:
- Application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Code
Snippet Pulumiverse.Dynatrace. Inputs. Web App Manual Insertion Code Snippet - 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 Pulumiverse.Dynatrace. Inputs. Web App Manual Insertion Javascript Tag - 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 Pulumiverse.Tag Dynatrace. Inputs. Web App Manual Insertion Oneagent Javascript Tag - 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.
- Pulumiverse.
Dynatrace. Inputs. Web App Manual Insertion Oneagent Javascript Tag Sri - 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 string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Code
Snippet WebApp Manual Insertion Code Snippet Args - 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 WebApp Manual Insertion Javascript Tag Args - 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 WebTag App Manual Insertion Oneagent Javascript Tag Args - 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.
- Web
App Manual Insertion Oneagent Javascript Tag Sri Args - 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 String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- code
Snippet WebApp Manual Insertion Code Snippet - 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 WebApp Manual Insertion Javascript Tag - 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 WebTag App Manual Insertion Oneagent Javascript Tag - 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.
- Web
App Manual Insertion Oneagent Javascript Tag Sri - 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 string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- code
Snippet WebApp Manual Insertion Code Snippet - 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 WebApp Manual Insertion Javascript Tag - 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 WebTag App Manual Insertion Oneagent Javascript Tag - 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.
- Web
App Manual Insertion Oneagent Javascript Tag Sri - 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 WebApp Manual Insertion Code Snippet Args - 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 WebApp Manual Insertion Javascript Tag Args - 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_ Webtag App Manual Insertion Oneagent Javascript Tag Args - 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_ Webtag_ sri App Manual Insertion Oneagent Javascript Tag Sri Args - 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 String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- code
Snippet 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.
- javascript
Tag 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.
- oneagent
Javascript Property MapTag - 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.
- 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.
- Application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Code
Snippet Pulumiverse.Dynatrace. Inputs. Web App Manual Insertion Code Snippet - 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 Pulumiverse.Dynatrace. Inputs. Web App Manual Insertion Javascript Tag - 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 Pulumiverse.Tag Dynatrace. Inputs. Web App Manual Insertion Oneagent Javascript Tag - 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.
- Pulumiverse.
Dynatrace. Inputs. Web App Manual Insertion Oneagent Javascript Tag Sri - 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 string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Code
Snippet WebApp Manual Insertion Code Snippet Args - 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 WebApp Manual Insertion Javascript Tag Args - 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 WebTag App Manual Insertion Oneagent Javascript Tag Args - 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.
- Web
App Manual Insertion Oneagent Javascript Tag Sri Args - 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 String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- code
Snippet WebApp Manual Insertion Code Snippet - 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 WebApp Manual Insertion Javascript Tag - 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 WebTag App Manual Insertion Oneagent Javascript Tag - 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.
- Web
App Manual Insertion Oneagent Javascript Tag Sri - 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 string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- code
Snippet WebApp Manual Insertion Code Snippet - 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 WebApp Manual Insertion Javascript Tag - 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 WebTag App Manual Insertion Oneagent Javascript Tag - 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.
- Web
App Manual Insertion Oneagent Javascript Tag Sri - 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 WebApp Manual Insertion Code Snippet Args - 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 WebApp Manual Insertion Javascript Tag Args - 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_ Webtag App Manual Insertion Oneagent Javascript Tag Args - 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_ Webtag_ sri App Manual Insertion Oneagent Javascript Tag Sri Args - 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 String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- code
Snippet 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.
- javascript
Tag 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.
- oneagent
Javascript Property MapTag - 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.
- 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
- Code
Snippet stringType - Possible Values:
DEFERRED
,SYNCHRONOUSLY
- Code
Snippet stringType - Possible Values:
DEFERRED
,SYNCHRONOUSLY
- code
Snippet StringType - Possible Values:
DEFERRED
,SYNCHRONOUSLY
- code
Snippet stringType - Possible Values:
DEFERRED
,SYNCHRONOUSLY
- code_
snippet_ strtype - Possible Values:
DEFERRED
,SYNCHRONOUSLY
- code
Snippet StringType - Possible Values:
DEFERRED
,SYNCHRONOUSLY
WebAppManualInsertionJavascriptTag, WebAppManualInsertionJavascriptTagArgs
- Cache
Duration string - 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 stringAttribute - Possible Values:
Async
,Defer
,None
- Cache
Duration string - 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 stringAttribute - Possible Values:
Async
,Defer
,None
- cache
Duration String - Duration in hours, possible Values:
1
,12
,144
,24
,3
,6
,72
- crossorigin
Anonymous Boolean - Add the
crossorigin=anonymous
attribute to capture JavaScript error messages and W3C resource timings - script
Execution StringAttribute - Possible Values:
Async
,Defer
,None
- cache
Duration string - Duration in hours, possible Values:
1
,12
,144
,24
,3
,6
,72
- crossorigin
Anonymous boolean - Add the
crossorigin=anonymous
attribute to capture JavaScript error messages and W3C resource timings - script
Execution stringAttribute - 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_ strattribute - Possible Values:
Async
,Defer
,None
- cache
Duration String - Duration in hours, possible Values:
1
,12
,144
,24
,3
,6
,72
- crossorigin
Anonymous Boolean - Add the
crossorigin=anonymous
attribute to capture JavaScript error messages and W3C resource timings - script
Execution StringAttribute - Possible Values:
Async
,Defer
,None
WebAppManualInsertionOneagentJavascriptTag, WebAppManualInsertionOneagentJavascriptTagArgs
- Script
Execution stringAttribute - Possible Values:
Async
,Defer
,None
- Script
Execution stringAttribute - Possible Values:
Async
,Defer
,None
- script
Execution StringAttribute - Possible Values:
Async
,Defer
,None
- script
Execution stringAttribute - Possible Values:
Async
,Defer
,None
- script_
execution_ strattribute - Possible Values:
Async
,Defer
,None
- script
Execution StringAttribute - Possible Values:
Async
,Defer
,None
WebAppManualInsertionOneagentJavascriptTagSri, WebAppManualInsertionOneagentJavascriptTagSriArgs
- Script
Execution stringAttribute - Possible Values:
Async
,Defer
,None
- Script
Execution stringAttribute - Possible Values:
Async
,Defer
,None
- script
Execution StringAttribute - Possible Values:
Async
,Defer
,None
- script
Execution stringAttribute - Possible Values:
Async
,Defer
,None
- script_
execution_ strattribute - Possible Values:
Async
,Defer
,None
- script
Execution StringAttribute - 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.