1. Packages
  2. Dynatrace
  3. API Docs
  4. RpcBasedSampling
Dynatrace v0.30.0 published on Friday, Jul 4, 2025 by Pulumiverse

dynatrace.RpcBasedSampling

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.30.0 published on Friday, Jul 4, 2025 by Pulumiverse

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

    Dynatrace Documentation

    • Trace sampling - https://docs.dynatrace.com/docs/shortlink/url-sampling

    • Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: builtin:rpc-based-sampling)

    Resource Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as dynatrace from "@pulumiverse/dynatrace";
    
    const _name_ = new dynatrace.RpcBasedSampling("#name#", {
        enabled: false,
        endpointName: "#name#-endpoint",
        endpointNameComparisonType: "DOES_NOT_END_WITH",
        ignore: true,
        remoteOperationName: "#name#-operation",
        remoteOperationNameComparisonType: "CONTAINS",
        remoteServiceName: "#name#-service",
        remoteServiceNameComparisonType: "STARTS_WITH",
        scope: "environment",
        wireProtocolType: "8",
    });
    
    import pulumi
    import pulumiverse_dynatrace as dynatrace
    
    _name_ = dynatrace.RpcBasedSampling("#name#",
        enabled=False,
        endpoint_name="#name#-endpoint",
        endpoint_name_comparison_type="DOES_NOT_END_WITH",
        ignore=True,
        remote_operation_name="#name#-operation",
        remote_operation_name_comparison_type="CONTAINS",
        remote_service_name="#name#-service",
        remote_service_name_comparison_type="STARTS_WITH",
        scope="environment",
        wire_protocol_type="8")
    
    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.NewRpcBasedSampling(ctx, "#name#", &dynatrace.RpcBasedSamplingArgs{
    			Enabled:                           pulumi.Bool(false),
    			EndpointName:                      pulumi.String("#name#-endpoint"),
    			EndpointNameComparisonType:        pulumi.String("DOES_NOT_END_WITH"),
    			Ignore:                            pulumi.Bool(true),
    			RemoteOperationName:               pulumi.String("#name#-operation"),
    			RemoteOperationNameComparisonType: pulumi.String("CONTAINS"),
    			RemoteServiceName:                 pulumi.String("#name#-service"),
    			RemoteServiceNameComparisonType:   pulumi.String("STARTS_WITH"),
    			Scope:                             pulumi.String("environment"),
    			WireProtocolType:                  pulumi.String("8"),
    		})
    		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.RpcBasedSampling("#name#", new()
        {
            Enabled = false,
            EndpointName = "#name#-endpoint",
            EndpointNameComparisonType = "DOES_NOT_END_WITH",
            Ignore = true,
            RemoteOperationName = "#name#-operation",
            RemoteOperationNameComparisonType = "CONTAINS",
            RemoteServiceName = "#name#-service",
            RemoteServiceNameComparisonType = "STARTS_WITH",
            Scope = "environment",
            WireProtocolType = "8",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.dynatrace.RpcBasedSampling;
    import com.pulumi.dynatrace.RpcBasedSamplingArgs;
    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 RpcBasedSampling("#name#", RpcBasedSamplingArgs.builder()
                .enabled(false)
                .endpointName("#name#-endpoint")
                .endpointNameComparisonType("DOES_NOT_END_WITH")
                .ignore(true)
                .remoteOperationName("#name#-operation")
                .remoteOperationNameComparisonType("CONTAINS")
                .remoteServiceName("#name#-service")
                .remoteServiceNameComparisonType("STARTS_WITH")
                .scope("environment")
                .wireProtocolType("8")
                .build());
    
        }
    }
    
    resources:
      '#name#':
        type: dynatrace:RpcBasedSampling
        properties:
          enabled: false
          endpointName: '#name#-endpoint'
          endpointNameComparisonType: DOES_NOT_END_WITH
          ignore: true
          remoteOperationName: '#name#-operation'
          remoteOperationNameComparisonType: CONTAINS
          remoteServiceName: '#name#-service'
          remoteServiceNameComparisonType: STARTS_WITH
          scope: environment
          wireProtocolType: '8'
    

    Create RpcBasedSampling Resource

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

    Constructor syntax

    new RpcBasedSampling(name: string, args: RpcBasedSamplingArgs, opts?: CustomResourceOptions);
    @overload
    def RpcBasedSampling(resource_name: str,
                         args: RpcBasedSamplingArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def RpcBasedSampling(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         enabled: Optional[bool] = None,
                         endpoint_name_comparison_type: Optional[str] = None,
                         ignore: Optional[bool] = None,
                         remote_operation_name_comparison_type: Optional[str] = None,
                         remote_service_name_comparison_type: Optional[str] = None,
                         wire_protocol_type: Optional[str] = None,
                         endpoint_name: Optional[str] = None,
                         factor: Optional[str] = None,
                         insert_after: Optional[str] = None,
                         remote_operation_name: Optional[str] = None,
                         remote_service_name: Optional[str] = None,
                         scope: Optional[str] = None)
    func NewRpcBasedSampling(ctx *Context, name string, args RpcBasedSamplingArgs, opts ...ResourceOption) (*RpcBasedSampling, error)
    public RpcBasedSampling(string name, RpcBasedSamplingArgs args, CustomResourceOptions? opts = null)
    public RpcBasedSampling(String name, RpcBasedSamplingArgs args)
    public RpcBasedSampling(String name, RpcBasedSamplingArgs args, CustomResourceOptions options)
    
    type: dynatrace:RpcBasedSampling
    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 RpcBasedSamplingArgs
    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 RpcBasedSamplingArgs
    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 RpcBasedSamplingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RpcBasedSamplingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RpcBasedSamplingArgs
    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 rpcBasedSamplingResource = new Dynatrace.RpcBasedSampling("rpcBasedSamplingResource", new()
    {
        Enabled = false,
        EndpointNameComparisonType = "string",
        Ignore = false,
        RemoteOperationNameComparisonType = "string",
        RemoteServiceNameComparisonType = "string",
        WireProtocolType = "string",
        EndpointName = "string",
        Factor = "string",
        InsertAfter = "string",
        RemoteOperationName = "string",
        RemoteServiceName = "string",
        Scope = "string",
    });
    
    example, err := dynatrace.NewRpcBasedSampling(ctx, "rpcBasedSamplingResource", &dynatrace.RpcBasedSamplingArgs{
    	Enabled:                           pulumi.Bool(false),
    	EndpointNameComparisonType:        pulumi.String("string"),
    	Ignore:                            pulumi.Bool(false),
    	RemoteOperationNameComparisonType: pulumi.String("string"),
    	RemoteServiceNameComparisonType:   pulumi.String("string"),
    	WireProtocolType:                  pulumi.String("string"),
    	EndpointName:                      pulumi.String("string"),
    	Factor:                            pulumi.String("string"),
    	InsertAfter:                       pulumi.String("string"),
    	RemoteOperationName:               pulumi.String("string"),
    	RemoteServiceName:                 pulumi.String("string"),
    	Scope:                             pulumi.String("string"),
    })
    
    var rpcBasedSamplingResource = new RpcBasedSampling("rpcBasedSamplingResource", RpcBasedSamplingArgs.builder()
        .enabled(false)
        .endpointNameComparisonType("string")
        .ignore(false)
        .remoteOperationNameComparisonType("string")
        .remoteServiceNameComparisonType("string")
        .wireProtocolType("string")
        .endpointName("string")
        .factor("string")
        .insertAfter("string")
        .remoteOperationName("string")
        .remoteServiceName("string")
        .scope("string")
        .build());
    
    rpc_based_sampling_resource = dynatrace.RpcBasedSampling("rpcBasedSamplingResource",
        enabled=False,
        endpoint_name_comparison_type="string",
        ignore=False,
        remote_operation_name_comparison_type="string",
        remote_service_name_comparison_type="string",
        wire_protocol_type="string",
        endpoint_name="string",
        factor="string",
        insert_after="string",
        remote_operation_name="string",
        remote_service_name="string",
        scope="string")
    
    const rpcBasedSamplingResource = new dynatrace.RpcBasedSampling("rpcBasedSamplingResource", {
        enabled: false,
        endpointNameComparisonType: "string",
        ignore: false,
        remoteOperationNameComparisonType: "string",
        remoteServiceNameComparisonType: "string",
        wireProtocolType: "string",
        endpointName: "string",
        factor: "string",
        insertAfter: "string",
        remoteOperationName: "string",
        remoteServiceName: "string",
        scope: "string",
    });
    
    type: dynatrace:RpcBasedSampling
    properties:
        enabled: false
        endpointName: string
        endpointNameComparisonType: string
        factor: string
        ignore: false
        insertAfter: string
        remoteOperationName: string
        remoteOperationNameComparisonType: string
        remoteServiceName: string
        remoteServiceNameComparisonType: string
        scope: string
        wireProtocolType: string
    

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

    Enabled bool
    This setting is enabled (true) or disabled (false)
    EndpointNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    Ignore bool
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    RemoteOperationNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    RemoteServiceNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    WireProtocolType string
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    EndpointName string
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    Factor string
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    RemoteOperationName string
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    RemoteServiceName string
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    Scope string
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    Enabled bool
    This setting is enabled (true) or disabled (false)
    EndpointNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    Ignore bool
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    RemoteOperationNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    RemoteServiceNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    WireProtocolType string
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    EndpointName string
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    Factor string
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    RemoteOperationName string
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    RemoteServiceName string
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    Scope string
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    endpointNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    ignore Boolean
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    remoteOperationNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    remoteServiceNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    wireProtocolType String
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    endpointName String
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    factor String
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    remoteOperationName String
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    remoteServiceName String
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    scope String
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    enabled boolean
    This setting is enabled (true) or disabled (false)
    endpointNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    ignore boolean
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    remoteOperationNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    remoteServiceNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    wireProtocolType string
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    endpointName string
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    factor string
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    insertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    remoteOperationName string
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    remoteServiceName string
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    scope string
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    enabled bool
    This setting is enabled (true) or disabled (false)
    endpoint_name_comparison_type str
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    ignore bool
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    remote_operation_name_comparison_type str
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    remote_service_name_comparison_type str
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    wire_protocol_type str
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    endpoint_name str
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    factor str
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    insert_after str
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    remote_operation_name str
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    remote_service_name str
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    scope str
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    endpointNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    ignore Boolean
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    remoteOperationNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    remoteServiceNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    wireProtocolType String
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    endpointName String
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    factor String
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    remoteOperationName String
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    remoteServiceName String
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    scope String
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.

    Outputs

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

    Get an existing RpcBasedSampling 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?: RpcBasedSamplingState, opts?: CustomResourceOptions): RpcBasedSampling
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            endpoint_name: Optional[str] = None,
            endpoint_name_comparison_type: Optional[str] = None,
            factor: Optional[str] = None,
            ignore: Optional[bool] = None,
            insert_after: Optional[str] = None,
            remote_operation_name: Optional[str] = None,
            remote_operation_name_comparison_type: Optional[str] = None,
            remote_service_name: Optional[str] = None,
            remote_service_name_comparison_type: Optional[str] = None,
            scope: Optional[str] = None,
            wire_protocol_type: Optional[str] = None) -> RpcBasedSampling
    func GetRpcBasedSampling(ctx *Context, name string, id IDInput, state *RpcBasedSamplingState, opts ...ResourceOption) (*RpcBasedSampling, error)
    public static RpcBasedSampling Get(string name, Input<string> id, RpcBasedSamplingState? state, CustomResourceOptions? opts = null)
    public static RpcBasedSampling get(String name, Output<String> id, RpcBasedSamplingState state, CustomResourceOptions options)
    resources:  _:    type: dynatrace:RpcBasedSampling    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:
    Enabled bool
    This setting is enabled (true) or disabled (false)
    EndpointName string
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    EndpointNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    Factor string
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    Ignore bool
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    RemoteOperationName string
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    RemoteOperationNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    RemoteServiceName string
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    RemoteServiceNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    Scope string
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    WireProtocolType string
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    Enabled bool
    This setting is enabled (true) or disabled (false)
    EndpointName string
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    EndpointNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    Factor string
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    Ignore bool
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    RemoteOperationName string
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    RemoteOperationNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    RemoteServiceName string
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    RemoteServiceNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    Scope string
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    WireProtocolType string
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    endpointName String
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    endpointNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    factor String
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    ignore Boolean
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    remoteOperationName String
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    remoteOperationNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    remoteServiceName String
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    remoteServiceNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    scope String
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    wireProtocolType String
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    enabled boolean
    This setting is enabled (true) or disabled (false)
    endpointName string
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    endpointNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    factor string
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    ignore boolean
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    insertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    remoteOperationName string
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    remoteOperationNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    remoteServiceName string
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    remoteServiceNameComparisonType string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    scope string
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    wireProtocolType string
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    enabled bool
    This setting is enabled (true) or disabled (false)
    endpoint_name str
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    endpoint_name_comparison_type str
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    factor str
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    ignore bool
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    insert_after str
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    remote_operation_name str
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    remote_operation_name_comparison_type str
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    remote_service_name str
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    remote_service_name_comparison_type str
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    scope str
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    wire_protocol_type str
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    endpointName String
    Specify the RPC endpoint name. If the endpoint name is empty, either remote operation name or remote service name must be specified that can be used for RPC matching.
    endpointNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    factor String
    Possible Values: 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14 - 0: Increase capturing 128 times - 1: Increase capturing 64 times - 2: Increase capturing 32 times - 3: Increase capturing 16 times - 4: Increase capturing 8 times - 5: Increase capturing 4 times - 6: Increase capturing 2 times - 8: Reduce capturing by factor 2 - 9: Reduce capturing by factor 4 - 10: Reduce capturing by factor 8 - 11: Reduce capturing by factor 16 - 12: Reduce capturing by factor 32 - 13: Reduce capturing by factor 64 - 14: Reduce capturing by factor 128
    ignore Boolean
    No Traces will be captured for matching RPC requests. This applies always, even if Adaptive Traffic Management is inactive.
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    remoteOperationName String
    Specify the RPC operation name. If the remote operation name is empty, either remote service name or endpoint name must be specified that can be used for RPC matching.
    remoteOperationNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    remoteServiceName String
    Specify the RPC remote service name. If the remote service name is empty, either remote operation name or endpoint name must be specified that can be used for RPC matching.
    remoteServiceNameComparisonType String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EQUAL, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, STARTS_WITH
    scope String
    The scope of this setting (PROCESS_GROUP_INSTANCE, PROCESS_GROUP, CLOUD_APPLICATION, CLOUD_APPLICATION_NAMESPACE, KUBERNETES_CLUSTER, HOST_GROUP). Omit this property if you want to cover the whole environment.
    wireProtocolType String
    Possible Values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - 1: ADK - 2: DOTNET_REMOTING - 3: DOTNET_REMOTING_TCP - 4: DOTNET_REMOTING_HTTP - 5: DOTNET_REMOTING_XMLRPC - 6: GRPC - 7: GRPC_BIDI - 8: GRPC_UNARY - 9: GRPC_SERVERSTREAM - 10: GRPC_CLIENTSTREAM

    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.30.0 published on Friday, Jul 4, 2025 by Pulumiverse