1. Packages
  2. Dynatrace
  3. API Docs
  4. SessionReplayResourceCapture
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

dynatrace.SessionReplayResourceCapture

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

    Create SessionReplayResourceCapture Resource

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

    Constructor syntax

    new SessionReplayResourceCapture(name: string, args: SessionReplayResourceCaptureArgs, opts?: CustomResourceOptions);
    @overload
    def SessionReplayResourceCapture(resource_name: str,
                                     args: SessionReplayResourceCaptureArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def SessionReplayResourceCapture(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     enable_resource_capturing: Optional[bool] = None,
                                     application_id: Optional[str] = None,
                                     resource_capture_url_exclusion_pattern_lists: Optional[Sequence[str]] = None)
    func NewSessionReplayResourceCapture(ctx *Context, name string, args SessionReplayResourceCaptureArgs, opts ...ResourceOption) (*SessionReplayResourceCapture, error)
    public SessionReplayResourceCapture(string name, SessionReplayResourceCaptureArgs args, CustomResourceOptions? opts = null)
    public SessionReplayResourceCapture(String name, SessionReplayResourceCaptureArgs args)
    public SessionReplayResourceCapture(String name, SessionReplayResourceCaptureArgs args, CustomResourceOptions options)
    
    type: dynatrace:SessionReplayResourceCapture
    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 SessionReplayResourceCaptureArgs
    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 SessionReplayResourceCaptureArgs
    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 SessionReplayResourceCaptureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SessionReplayResourceCaptureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SessionReplayResourceCaptureArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var sessionReplayResourceCaptureResource = new Dynatrace.SessionReplayResourceCapture("sessionReplayResourceCaptureResource", new()
    {
        EnableResourceCapturing = false,
        ApplicationId = "string",
        ResourceCaptureUrlExclusionPatternLists = new[]
        {
            "string",
        },
    });
    
    example, err := dynatrace.NewSessionReplayResourceCapture(ctx, "sessionReplayResourceCaptureResource", &dynatrace.SessionReplayResourceCaptureArgs{
    	EnableResourceCapturing: pulumi.Bool(false),
    	ApplicationId:           pulumi.String("string"),
    	ResourceCaptureUrlExclusionPatternLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var sessionReplayResourceCaptureResource = new SessionReplayResourceCapture("sessionReplayResourceCaptureResource", SessionReplayResourceCaptureArgs.builder()        
        .enableResourceCapturing(false)
        .applicationId("string")
        .resourceCaptureUrlExclusionPatternLists("string")
        .build());
    
    session_replay_resource_capture_resource = dynatrace.SessionReplayResourceCapture("sessionReplayResourceCaptureResource",
        enable_resource_capturing=False,
        application_id="string",
        resource_capture_url_exclusion_pattern_lists=["string"])
    
    const sessionReplayResourceCaptureResource = new dynatrace.SessionReplayResourceCapture("sessionReplayResourceCaptureResource", {
        enableResourceCapturing: false,
        applicationId: "string",
        resourceCaptureUrlExclusionPatternLists: ["string"],
    });
    
    type: dynatrace:SessionReplayResourceCapture
    properties:
        applicationId: string
        enableResourceCapturing: false
        resourceCaptureUrlExclusionPatternLists:
            - string
    

    SessionReplayResourceCapture Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The SessionReplayResourceCapture resource accepts the following input properties:

    EnableResourceCapturing bool
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    ResourceCaptureUrlExclusionPatternLists List<string>
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    EnableResourceCapturing bool
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    ResourceCaptureUrlExclusionPatternLists []string
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    enableResourceCapturing Boolean
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    resourceCaptureUrlExclusionPatternLists List<String>
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    enableResourceCapturing boolean
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    applicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    resourceCaptureUrlExclusionPatternLists string[]
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    enable_resource_capturing bool
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    application_id str
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    resource_capture_url_exclusion_pattern_lists Sequence[str]
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    enableResourceCapturing Boolean
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    resourceCaptureUrlExclusionPatternLists List<String>
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.

    Outputs

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

    Get an existing SessionReplayResourceCapture 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?: SessionReplayResourceCaptureState, opts?: CustomResourceOptions): SessionReplayResourceCapture
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_id: Optional[str] = None,
            enable_resource_capturing: Optional[bool] = None,
            resource_capture_url_exclusion_pattern_lists: Optional[Sequence[str]] = None) -> SessionReplayResourceCapture
    func GetSessionReplayResourceCapture(ctx *Context, name string, id IDInput, state *SessionReplayResourceCaptureState, opts ...ResourceOption) (*SessionReplayResourceCapture, error)
    public static SessionReplayResourceCapture Get(string name, Input<string> id, SessionReplayResourceCaptureState? state, CustomResourceOptions? opts = null)
    public static SessionReplayResourceCapture get(String name, Output<String> id, SessionReplayResourceCaptureState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    EnableResourceCapturing bool
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    ResourceCaptureUrlExclusionPatternLists List<string>
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    EnableResourceCapturing bool
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    ResourceCaptureUrlExclusionPatternLists []string
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    enableResourceCapturing Boolean
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    resourceCaptureUrlExclusionPatternLists List<String>
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    applicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    enableResourceCapturing boolean
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    resourceCaptureUrlExclusionPatternLists string[]
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    application_id str
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    enable_resource_capturing bool
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    resource_capture_url_exclusion_pattern_lists Sequence[str]
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    enableResourceCapturing Boolean
    (Field has overlap with dynatrace.WebApplication) When turned on, all CSS resources from all sessions are captured. For details, see Resource capture.
    resourceCaptureUrlExclusionPatternLists List<String>
    (Field has overlap with dynatrace.WebApplication) Add exclusion rules to avoid the capture of resources from certain pages.

    Package Details

    Repository
    dynatrace lbrlabs/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs