dynatrace.WebAppCustomPropRestrictions
Explore with Pulumi AI
This resource requires the API token scopes Read settings (
settings.read
) and Write settings (settings.write
)
Dynatrace Documentation
Web applications - https://docs.dynatrace.com/docs/platform-modules/digital-experience/web-applications
Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId:
builtin:rum.web.capture-custom-properties
)
Resource Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumiverse/dynatrace";
const _name_ = new dynatrace.WebAppCustomPropRestrictions("#name#", {
applicationId: "APPLICATION-1234567890000000",
customEventPropertiesAllowList: {
customSessionPropertiesAllows: [
{
fieldDataType: "STRING",
fieldName: "ExampleEvent",
},
{
fieldDataType: "BOOLEAN",
fieldName: "ExampleEvent2",
},
],
},
customSessionPropertiesAllowList: {
customSessionPropertiesAllows: [
{
fieldDataType: "STRING",
fieldName: "ExampleSession",
},
{
fieldDataType: "BOOLEAN",
fieldName: "ExampleSession2",
},
],
},
});
import pulumi
import pulumiverse_dynatrace as dynatrace
_name_ = dynatrace.WebAppCustomPropRestrictions("#name#",
application_id="APPLICATION-1234567890000000",
custom_event_properties_allow_list={
"custom_session_properties_allows": [
{
"field_data_type": "STRING",
"field_name": "ExampleEvent",
},
{
"field_data_type": "BOOLEAN",
"field_name": "ExampleEvent2",
},
],
},
custom_session_properties_allow_list={
"custom_session_properties_allows": [
{
"field_data_type": "STRING",
"field_name": "ExampleSession",
},
{
"field_data_type": "BOOLEAN",
"field_name": "ExampleSession2",
},
],
})
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.NewWebAppCustomPropRestrictions(ctx, "#name#", &dynatrace.WebAppCustomPropRestrictionsArgs{
ApplicationId: pulumi.String("APPLICATION-1234567890000000"),
CustomEventPropertiesAllowList: &dynatrace.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs{
CustomSessionPropertiesAllows: dynatrace.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArray{
&dynatrace.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs{
FieldDataType: pulumi.String("STRING"),
FieldName: pulumi.String("ExampleEvent"),
},
&dynatrace.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs{
FieldDataType: pulumi.String("BOOLEAN"),
FieldName: pulumi.String("ExampleEvent2"),
},
},
},
CustomSessionPropertiesAllowList: &dynatrace.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs{
CustomSessionPropertiesAllows: dynatrace.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArray{
&dynatrace.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs{
FieldDataType: pulumi.String("STRING"),
FieldName: pulumi.String("ExampleSession"),
},
&dynatrace.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs{
FieldDataType: pulumi.String("BOOLEAN"),
FieldName: pulumi.String("ExampleSession2"),
},
},
},
})
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.WebAppCustomPropRestrictions("#name#", new()
{
ApplicationId = "APPLICATION-1234567890000000",
CustomEventPropertiesAllowList = new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs
{
CustomSessionPropertiesAllows = new[]
{
new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs
{
FieldDataType = "STRING",
FieldName = "ExampleEvent",
},
new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs
{
FieldDataType = "BOOLEAN",
FieldName = "ExampleEvent2",
},
},
},
CustomSessionPropertiesAllowList = new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs
{
CustomSessionPropertiesAllows = new[]
{
new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs
{
FieldDataType = "STRING",
FieldName = "ExampleSession",
},
new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs
{
FieldDataType = "BOOLEAN",
FieldName = "ExampleSession2",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.WebAppCustomPropRestrictions;
import com.pulumi.dynatrace.WebAppCustomPropRestrictionsArgs;
import com.pulumi.dynatrace.inputs.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs;
import com.pulumi.dynatrace.inputs.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs;
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 WebAppCustomPropRestrictions("#name#", WebAppCustomPropRestrictionsArgs.builder()
.applicationId("APPLICATION-1234567890000000")
.customEventPropertiesAllowList(WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs.builder()
.customSessionPropertiesAllows(
WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs.builder()
.fieldDataType("STRING")
.fieldName("ExampleEvent")
.build(),
WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs.builder()
.fieldDataType("BOOLEAN")
.fieldName("ExampleEvent2")
.build())
.build())
.customSessionPropertiesAllowList(WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs.builder()
.customSessionPropertiesAllows(
WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs.builder()
.fieldDataType("STRING")
.fieldName("ExampleSession")
.build(),
WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs.builder()
.fieldDataType("BOOLEAN")
.fieldName("ExampleSession2")
.build())
.build())
.build());
}
}
resources:
'#name#':
type: dynatrace:WebAppCustomPropRestrictions
properties:
applicationId: APPLICATION-1234567890000000
customEventPropertiesAllowList:
customSessionPropertiesAllows:
- fieldDataType: STRING
fieldName: ExampleEvent
- fieldDataType: BOOLEAN
fieldName: ExampleEvent2
customSessionPropertiesAllowList:
customSessionPropertiesAllows:
- fieldDataType: STRING
fieldName: ExampleSession
- fieldDataType: BOOLEAN
fieldName: ExampleSession2
Create WebAppCustomPropRestrictions Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WebAppCustomPropRestrictions(name: string, args: WebAppCustomPropRestrictionsArgs, opts?: CustomResourceOptions);
@overload
def WebAppCustomPropRestrictions(resource_name: str,
args: WebAppCustomPropRestrictionsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WebAppCustomPropRestrictions(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
custom_event_properties_allow_list: Optional[WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs] = None,
custom_session_properties_allow_list: Optional[WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs] = None)
func NewWebAppCustomPropRestrictions(ctx *Context, name string, args WebAppCustomPropRestrictionsArgs, opts ...ResourceOption) (*WebAppCustomPropRestrictions, error)
public WebAppCustomPropRestrictions(string name, WebAppCustomPropRestrictionsArgs args, CustomResourceOptions? opts = null)
public WebAppCustomPropRestrictions(String name, WebAppCustomPropRestrictionsArgs args)
public WebAppCustomPropRestrictions(String name, WebAppCustomPropRestrictionsArgs args, CustomResourceOptions options)
type: dynatrace:WebAppCustomPropRestrictions
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 WebAppCustomPropRestrictionsArgs
- 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 WebAppCustomPropRestrictionsArgs
- 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 WebAppCustomPropRestrictionsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WebAppCustomPropRestrictionsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WebAppCustomPropRestrictionsArgs
- 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 webAppCustomPropRestrictionsResource = new Dynatrace.WebAppCustomPropRestrictions("webAppCustomPropRestrictionsResource", new()
{
ApplicationId = "string",
CustomEventPropertiesAllowList = new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs
{
CustomSessionPropertiesAllows = new[]
{
new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs
{
FieldDataType = "string",
FieldName = "string",
},
},
},
CustomSessionPropertiesAllowList = new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs
{
CustomSessionPropertiesAllows = new[]
{
new Dynatrace.Inputs.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs
{
FieldDataType = "string",
FieldName = "string",
},
},
},
});
example, err := dynatrace.NewWebAppCustomPropRestrictions(ctx, "webAppCustomPropRestrictionsResource", &dynatrace.WebAppCustomPropRestrictionsArgs{
ApplicationId: pulumi.String("string"),
CustomEventPropertiesAllowList: &dynatrace.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs{
CustomSessionPropertiesAllows: dynatrace.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArray{
&dynatrace.WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs{
FieldDataType: pulumi.String("string"),
FieldName: pulumi.String("string"),
},
},
},
CustomSessionPropertiesAllowList: &dynatrace.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs{
CustomSessionPropertiesAllows: dynatrace.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArray{
&dynatrace.WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs{
FieldDataType: pulumi.String("string"),
FieldName: pulumi.String("string"),
},
},
},
})
var webAppCustomPropRestrictionsResource = new WebAppCustomPropRestrictions("webAppCustomPropRestrictionsResource", WebAppCustomPropRestrictionsArgs.builder()
.applicationId("string")
.customEventPropertiesAllowList(WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs.builder()
.customSessionPropertiesAllows(WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs.builder()
.fieldDataType("string")
.fieldName("string")
.build())
.build())
.customSessionPropertiesAllowList(WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs.builder()
.customSessionPropertiesAllows(WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs.builder()
.fieldDataType("string")
.fieldName("string")
.build())
.build())
.build());
web_app_custom_prop_restrictions_resource = dynatrace.WebAppCustomPropRestrictions("webAppCustomPropRestrictionsResource",
application_id="string",
custom_event_properties_allow_list={
"custom_session_properties_allows": [{
"field_data_type": "string",
"field_name": "string",
}],
},
custom_session_properties_allow_list={
"custom_session_properties_allows": [{
"field_data_type": "string",
"field_name": "string",
}],
})
const webAppCustomPropRestrictionsResource = new dynatrace.WebAppCustomPropRestrictions("webAppCustomPropRestrictionsResource", {
applicationId: "string",
customEventPropertiesAllowList: {
customSessionPropertiesAllows: [{
fieldDataType: "string",
fieldName: "string",
}],
},
customSessionPropertiesAllowList: {
customSessionPropertiesAllows: [{
fieldDataType: "string",
fieldName: "string",
}],
},
});
type: dynatrace:WebAppCustomPropRestrictions
properties:
applicationId: string
customEventPropertiesAllowList:
customSessionPropertiesAllows:
- fieldDataType: string
fieldName: string
customSessionPropertiesAllowList:
customSessionPropertiesAllows:
- fieldDataType: string
fieldName: string
WebAppCustomPropRestrictions 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 WebAppCustomPropRestrictions 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.
- Custom
Event Pulumiverse.Properties Allow List Dynatrace. Inputs. Web App Custom Prop Restrictions Custom Event Properties Allow List - List of allowed custom event properties
- Custom
Session Pulumiverse.Properties Allow List Dynatrace. Inputs. Web App Custom Prop Restrictions Custom Session Properties Allow List - List of allowed custom session properties
- Application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Custom
Event WebProperties Allow List App Custom Prop Restrictions Custom Event Properties Allow List Args - List of allowed custom event properties
- Custom
Session WebProperties Allow List App Custom Prop Restrictions Custom Session Properties Allow List Args - List of allowed custom session properties
- application
Id String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- custom
Event WebProperties Allow List App Custom Prop Restrictions Custom Event Properties Allow List - List of allowed custom event properties
- custom
Session WebProperties Allow List App Custom Prop Restrictions Custom Session Properties Allow List - List of allowed custom session properties
- application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- custom
Event WebProperties Allow List App Custom Prop Restrictions Custom Event Properties Allow List - List of allowed custom event properties
- custom
Session WebProperties Allow List App Custom Prop Restrictions Custom Session Properties Allow List - List of allowed custom session properties
- application_
id str - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- custom_
event_ Webproperties_ allow_ list App Custom Prop Restrictions Custom Event Properties Allow List Args - List of allowed custom event properties
- custom_
session_ Webproperties_ allow_ list App Custom Prop Restrictions Custom Session Properties Allow List Args - List of allowed custom session properties
- application
Id String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- custom
Event Property MapProperties Allow List - List of allowed custom event properties
- custom
Session Property MapProperties Allow List - List of allowed custom session properties
Outputs
All input properties are implicitly available as output properties. Additionally, the WebAppCustomPropRestrictions 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 WebAppCustomPropRestrictions Resource
Get an existing WebAppCustomPropRestrictions 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?: WebAppCustomPropRestrictionsState, opts?: CustomResourceOptions): WebAppCustomPropRestrictions
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
custom_event_properties_allow_list: Optional[WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs] = None,
custom_session_properties_allow_list: Optional[WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs] = None) -> WebAppCustomPropRestrictions
func GetWebAppCustomPropRestrictions(ctx *Context, name string, id IDInput, state *WebAppCustomPropRestrictionsState, opts ...ResourceOption) (*WebAppCustomPropRestrictions, error)
public static WebAppCustomPropRestrictions Get(string name, Input<string> id, WebAppCustomPropRestrictionsState? state, CustomResourceOptions? opts = null)
public static WebAppCustomPropRestrictions get(String name, Output<String> id, WebAppCustomPropRestrictionsState state, CustomResourceOptions options)
resources: _: type: dynatrace:WebAppCustomPropRestrictions 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.
- Custom
Event Pulumiverse.Properties Allow List Dynatrace. Inputs. Web App Custom Prop Restrictions Custom Event Properties Allow List - List of allowed custom event properties
- Custom
Session Pulumiverse.Properties Allow List Dynatrace. Inputs. Web App Custom Prop Restrictions Custom Session Properties Allow List - List of allowed custom session properties
- Application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Custom
Event WebProperties Allow List App Custom Prop Restrictions Custom Event Properties Allow List Args - List of allowed custom event properties
- Custom
Session WebProperties Allow List App Custom Prop Restrictions Custom Session Properties Allow List Args - List of allowed custom session properties
- application
Id String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- custom
Event WebProperties Allow List App Custom Prop Restrictions Custom Event Properties Allow List - List of allowed custom event properties
- custom
Session WebProperties Allow List App Custom Prop Restrictions Custom Session Properties Allow List - List of allowed custom session properties
- application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- custom
Event WebProperties Allow List App Custom Prop Restrictions Custom Event Properties Allow List - List of allowed custom event properties
- custom
Session WebProperties Allow List App Custom Prop Restrictions Custom Session Properties Allow List - List of allowed custom session properties
- application_
id str - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- custom_
event_ Webproperties_ allow_ list App Custom Prop Restrictions Custom Event Properties Allow List Args - List of allowed custom event properties
- custom_
session_ Webproperties_ allow_ list App Custom Prop Restrictions Custom Session Properties Allow List Args - List of allowed custom session properties
- application
Id String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- custom
Event Property MapProperties Allow List - List of allowed custom event properties
- custom
Session Property MapProperties Allow List - List of allowed custom session properties
Supporting Types
WebAppCustomPropRestrictionsCustomEventPropertiesAllowList, WebAppCustomPropRestrictionsCustomEventPropertiesAllowListArgs
WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllow, WebAppCustomPropRestrictionsCustomEventPropertiesAllowListCustomSessionPropertiesAllowArgs
- Field
Data stringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- Field
Name string - Field name
- Field
Data stringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- Field
Name string - Field name
- field
Data StringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- field
Name String - Field name
- field
Data stringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- field
Name string - Field name
- field_
data_ strtype - Possible Values:
BOOLEAN
,NUMBER
,STRING
- field_
name str - Field name
- field
Data StringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- field
Name String - Field name
WebAppCustomPropRestrictionsCustomSessionPropertiesAllowList, WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListArgs
WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllow, WebAppCustomPropRestrictionsCustomSessionPropertiesAllowListCustomSessionPropertiesAllowArgs
- Field
Data stringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- Field
Name string - Field name
- Field
Data stringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- Field
Name string - Field name
- field
Data StringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- field
Name String - Field name
- field
Data stringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- field
Name string - Field name
- field_
data_ strtype - Possible Values:
BOOLEAN
,NUMBER
,STRING
- field_
name str - Field name
- field
Data StringType - Possible Values:
BOOLEAN
,NUMBER
,STRING
- field
Name String - Field name
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.