1. Packages
  2. Dynatrace
  3. API Docs
  4. OneagentSideMasking
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

dynatrace.OneagentSideMasking

Explore with Pulumi AI

Create OneagentSideMasking Resource

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

Constructor syntax

new OneagentSideMasking(name: string, args: OneagentSideMaskingArgs, opts?: CustomResourceOptions);
@overload
def OneagentSideMasking(resource_name: str,
                        args: OneagentSideMaskingArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def OneagentSideMasking(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        is_email_masking_enabled: Optional[bool] = None,
                        is_financial_masking_enabled: Optional[bool] = None,
                        is_numbers_masking_enabled: Optional[bool] = None,
                        is_query_masking_enabled: Optional[bool] = None,
                        process_group_id: Optional[str] = None)
func NewOneagentSideMasking(ctx *Context, name string, args OneagentSideMaskingArgs, opts ...ResourceOption) (*OneagentSideMasking, error)
public OneagentSideMasking(string name, OneagentSideMaskingArgs args, CustomResourceOptions? opts = null)
public OneagentSideMasking(String name, OneagentSideMaskingArgs args)
public OneagentSideMasking(String name, OneagentSideMaskingArgs args, CustomResourceOptions options)
type: dynatrace:OneagentSideMasking
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OneagentSideMaskingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. OneagentSideMaskingArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. OneagentSideMaskingArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OneagentSideMaskingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OneagentSideMaskingArgs
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 oneagentSideMaskingResource = new Dynatrace.OneagentSideMasking("oneagentSideMaskingResource", new()
{
    IsEmailMaskingEnabled = false,
    IsFinancialMaskingEnabled = false,
    IsNumbersMaskingEnabled = false,
    IsQueryMaskingEnabled = false,
    ProcessGroupId = "string",
});
Copy
example, err := dynatrace.NewOneagentSideMasking(ctx, "oneagentSideMaskingResource", &dynatrace.OneagentSideMaskingArgs{
	IsEmailMaskingEnabled:     pulumi.Bool(false),
	IsFinancialMaskingEnabled: pulumi.Bool(false),
	IsNumbersMaskingEnabled:   pulumi.Bool(false),
	IsQueryMaskingEnabled:     pulumi.Bool(false),
	ProcessGroupId:            pulumi.String("string"),
})
Copy
var oneagentSideMaskingResource = new OneagentSideMasking("oneagentSideMaskingResource", OneagentSideMaskingArgs.builder()
    .isEmailMaskingEnabled(false)
    .isFinancialMaskingEnabled(false)
    .isNumbersMaskingEnabled(false)
    .isQueryMaskingEnabled(false)
    .processGroupId("string")
    .build());
Copy
oneagent_side_masking_resource = dynatrace.OneagentSideMasking("oneagentSideMaskingResource",
    is_email_masking_enabled=False,
    is_financial_masking_enabled=False,
    is_numbers_masking_enabled=False,
    is_query_masking_enabled=False,
    process_group_id="string")
Copy
const oneagentSideMaskingResource = new dynatrace.OneagentSideMasking("oneagentSideMaskingResource", {
    isEmailMaskingEnabled: false,
    isFinancialMaskingEnabled: false,
    isNumbersMaskingEnabled: false,
    isQueryMaskingEnabled: false,
    processGroupId: "string",
});
Copy
type: dynatrace:OneagentSideMasking
properties:
    isEmailMaskingEnabled: false
    isFinancialMaskingEnabled: false
    isNumbersMaskingEnabled: false
    isQueryMaskingEnabled: false
    processGroupId: string
Copy

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

IsEmailMaskingEnabled This property is required. bool
Exclude email addresses from URLs
IsFinancialMaskingEnabled This property is required. bool
Exclude IBANs and payment card numbers from URLs
IsNumbersMaskingEnabled This property is required. bool
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
IsQueryMaskingEnabled This property is required. bool
Exclude query parameters from URLs and web requests
ProcessGroupId string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
IsEmailMaskingEnabled This property is required. bool
Exclude email addresses from URLs
IsFinancialMaskingEnabled This property is required. bool
Exclude IBANs and payment card numbers from URLs
IsNumbersMaskingEnabled This property is required. bool
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
IsQueryMaskingEnabled This property is required. bool
Exclude query parameters from URLs and web requests
ProcessGroupId string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
isEmailMaskingEnabled This property is required. Boolean
Exclude email addresses from URLs
isFinancialMaskingEnabled This property is required. Boolean
Exclude IBANs and payment card numbers from URLs
isNumbersMaskingEnabled This property is required. Boolean
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
isQueryMaskingEnabled This property is required. Boolean
Exclude query parameters from URLs and web requests
processGroupId String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
isEmailMaskingEnabled This property is required. boolean
Exclude email addresses from URLs
isFinancialMaskingEnabled This property is required. boolean
Exclude IBANs and payment card numbers from URLs
isNumbersMaskingEnabled This property is required. boolean
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
isQueryMaskingEnabled This property is required. boolean
Exclude query parameters from URLs and web requests
processGroupId string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
is_email_masking_enabled This property is required. bool
Exclude email addresses from URLs
is_financial_masking_enabled This property is required. bool
Exclude IBANs and payment card numbers from URLs
is_numbers_masking_enabled This property is required. bool
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
is_query_masking_enabled This property is required. bool
Exclude query parameters from URLs and web requests
process_group_id str
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
isEmailMaskingEnabled This property is required. Boolean
Exclude email addresses from URLs
isFinancialMaskingEnabled This property is required. Boolean
Exclude IBANs and payment card numbers from URLs
isNumbersMaskingEnabled This property is required. Boolean
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
isQueryMaskingEnabled This property is required. Boolean
Exclude query parameters from URLs and web requests
processGroupId String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.

Outputs

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

Get an existing OneagentSideMasking 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?: OneagentSideMaskingState, opts?: CustomResourceOptions): OneagentSideMasking
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        is_email_masking_enabled: Optional[bool] = None,
        is_financial_masking_enabled: Optional[bool] = None,
        is_numbers_masking_enabled: Optional[bool] = None,
        is_query_masking_enabled: Optional[bool] = None,
        process_group_id: Optional[str] = None) -> OneagentSideMasking
func GetOneagentSideMasking(ctx *Context, name string, id IDInput, state *OneagentSideMaskingState, opts ...ResourceOption) (*OneagentSideMasking, error)
public static OneagentSideMasking Get(string name, Input<string> id, OneagentSideMaskingState? state, CustomResourceOptions? opts = null)
public static OneagentSideMasking get(String name, Output<String> id, OneagentSideMaskingState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:OneagentSideMasking    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
IsEmailMaskingEnabled bool
Exclude email addresses from URLs
IsFinancialMaskingEnabled bool
Exclude IBANs and payment card numbers from URLs
IsNumbersMaskingEnabled bool
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
IsQueryMaskingEnabled bool
Exclude query parameters from URLs and web requests
ProcessGroupId string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
IsEmailMaskingEnabled bool
Exclude email addresses from URLs
IsFinancialMaskingEnabled bool
Exclude IBANs and payment card numbers from URLs
IsNumbersMaskingEnabled bool
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
IsQueryMaskingEnabled bool
Exclude query parameters from URLs and web requests
ProcessGroupId string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
isEmailMaskingEnabled Boolean
Exclude email addresses from URLs
isFinancialMaskingEnabled Boolean
Exclude IBANs and payment card numbers from URLs
isNumbersMaskingEnabled Boolean
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
isQueryMaskingEnabled Boolean
Exclude query parameters from URLs and web requests
processGroupId String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
isEmailMaskingEnabled boolean
Exclude email addresses from URLs
isFinancialMaskingEnabled boolean
Exclude IBANs and payment card numbers from URLs
isNumbersMaskingEnabled boolean
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
isQueryMaskingEnabled boolean
Exclude query parameters from URLs and web requests
processGroupId string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
is_email_masking_enabled bool
Exclude email addresses from URLs
is_financial_masking_enabled bool
Exclude IBANs and payment card numbers from URLs
is_numbers_masking_enabled bool
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
is_query_masking_enabled bool
Exclude query parameters from URLs and web requests
process_group_id str
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
isEmailMaskingEnabled Boolean
Exclude email addresses from URLs
isFinancialMaskingEnabled Boolean
Exclude IBANs and payment card numbers from URLs
isNumbersMaskingEnabled Boolean
Exclude hexadecimal IDs and consecutive numbers above 5 digits from URLs
isQueryMaskingEnabled Boolean
Exclude query parameters from URLs and web requests
processGroupId String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.

Package Details

Repository
dynatrace pulumiverse/pulumi-dynatrace
License
Apache-2.0
Notes
This Pulumi package is based on the dynatrace Terraform Provider.