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

dynatrace.RumProviderBreakdown

Explore with Pulumi AI

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

    Create RumProviderBreakdown Resource

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

    Constructor syntax

    new RumProviderBreakdown(name: string, args: RumProviderBreakdownArgs, opts?: CustomResourceOptions);
    @overload
    def RumProviderBreakdown(resource_name: str,
                             args: RumProviderBreakdownArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def RumProviderBreakdown(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             domain_name_pattern_list: Optional[RumProviderBreakdownDomainNamePatternListArgs] = None,
                             report_public_improvement: Optional[bool] = None,
                             resource_name_: Optional[str] = None,
                             resource_type: Optional[str] = None,
                             icon_url: Optional[str] = None)
    func NewRumProviderBreakdown(ctx *Context, name string, args RumProviderBreakdownArgs, opts ...ResourceOption) (*RumProviderBreakdown, error)
    public RumProviderBreakdown(string name, RumProviderBreakdownArgs args, CustomResourceOptions? opts = null)
    public RumProviderBreakdown(String name, RumProviderBreakdownArgs args)
    public RumProviderBreakdown(String name, RumProviderBreakdownArgs args, CustomResourceOptions options)
    
    type: dynatrace:RumProviderBreakdown
    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 RumProviderBreakdownArgs
    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 RumProviderBreakdownArgs
    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 RumProviderBreakdownArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RumProviderBreakdownArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RumProviderBreakdownArgs
    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 rumProviderBreakdownResource = new Dynatrace.RumProviderBreakdown("rumProviderBreakdownResource", new()
    {
        DomainNamePatternList = new Dynatrace.Inputs.RumProviderBreakdownDomainNamePatternListArgs
        {
            DomainNamePatterns = new[]
            {
                new Dynatrace.Inputs.RumProviderBreakdownDomainNamePatternListDomainNamePatternArgs
                {
                    Pattern = "string",
                },
            },
        },
        ReportPublicImprovement = false,
        ResourceName = "string",
        ResourceType = "string",
        IconUrl = "string",
    });
    
    example, err := dynatrace.NewRumProviderBreakdown(ctx, "rumProviderBreakdownResource", &dynatrace.RumProviderBreakdownArgs{
    	DomainNamePatternList: &dynatrace.RumProviderBreakdownDomainNamePatternListArgs{
    		DomainNamePatterns: dynatrace.RumProviderBreakdownDomainNamePatternListDomainNamePatternArray{
    			&dynatrace.RumProviderBreakdownDomainNamePatternListDomainNamePatternArgs{
    				Pattern: pulumi.String("string"),
    			},
    		},
    	},
    	ReportPublicImprovement: pulumi.Bool(false),
    	ResourceName:            pulumi.String("string"),
    	ResourceType:            pulumi.String("string"),
    	IconUrl:                 pulumi.String("string"),
    })
    
    var rumProviderBreakdownResource = new RumProviderBreakdown("rumProviderBreakdownResource", RumProviderBreakdownArgs.builder()        
        .domainNamePatternList(RumProviderBreakdownDomainNamePatternListArgs.builder()
            .domainNamePatterns(RumProviderBreakdownDomainNamePatternListDomainNamePatternArgs.builder()
                .pattern("string")
                .build())
            .build())
        .reportPublicImprovement(false)
        .resourceName("string")
        .resourceType("string")
        .iconUrl("string")
        .build());
    
    rum_provider_breakdown_resource = dynatrace.RumProviderBreakdown("rumProviderBreakdownResource",
        domain_name_pattern_list=dynatrace.RumProviderBreakdownDomainNamePatternListArgs(
            domain_name_patterns=[dynatrace.RumProviderBreakdownDomainNamePatternListDomainNamePatternArgs(
                pattern="string",
            )],
        ),
        report_public_improvement=False,
        resource_name_="string",
        resource_type="string",
        icon_url="string")
    
    const rumProviderBreakdownResource = new dynatrace.RumProviderBreakdown("rumProviderBreakdownResource", {
        domainNamePatternList: {
            domainNamePatterns: [{
                pattern: "string",
            }],
        },
        reportPublicImprovement: false,
        resourceName: "string",
        resourceType: "string",
        iconUrl: "string",
    });
    
    type: dynatrace:RumProviderBreakdown
    properties:
        domainNamePatternList:
            domainNamePatterns:
                - pattern: string
        iconUrl: string
        reportPublicImprovement: false
        resourceName: string
        resourceType: string
    

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

    DomainNamePatternList Lbrlabs.PulumiPackage.Dynatrace.Inputs.RumProviderBreakdownDomainNamePatternList
    Domain name pattern
    ReportPublicImprovement bool
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    ResourceName string
    Resource name
    ResourceType string
    Possible Values: FirstParty, ThirdParty, Cdn
    IconUrl string
    Specify an URL for the provider's brand icon
    DomainNamePatternList RumProviderBreakdownDomainNamePatternListArgs
    Domain name pattern
    ReportPublicImprovement bool
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    ResourceName string
    Resource name
    ResourceType string
    Possible Values: FirstParty, ThirdParty, Cdn
    IconUrl string
    Specify an URL for the provider's brand icon
    domainNamePatternList RumProviderBreakdownDomainNamePatternList
    Domain name pattern
    reportPublicImprovement Boolean
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    resourceName String
    Resource name
    resourceType String
    Possible Values: FirstParty, ThirdParty, Cdn
    iconUrl String
    Specify an URL for the provider's brand icon
    domainNamePatternList RumProviderBreakdownDomainNamePatternList
    Domain name pattern
    reportPublicImprovement boolean
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    resourceName string
    Resource name
    resourceType string
    Possible Values: FirstParty, ThirdParty, Cdn
    iconUrl string
    Specify an URL for the provider's brand icon
    domain_name_pattern_list RumProviderBreakdownDomainNamePatternListArgs
    Domain name pattern
    report_public_improvement bool
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    resource_name str
    Resource name
    resource_type str
    Possible Values: FirstParty, ThirdParty, Cdn
    icon_url str
    Specify an URL for the provider's brand icon
    domainNamePatternList Property Map
    Domain name pattern
    reportPublicImprovement Boolean
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    resourceName String
    Resource name
    resourceType String
    Possible Values: FirstParty, ThirdParty, Cdn
    iconUrl String
    Specify an URL for the provider's brand icon

    Outputs

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

    Get an existing RumProviderBreakdown 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?: RumProviderBreakdownState, opts?: CustomResourceOptions): RumProviderBreakdown
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            domain_name_pattern_list: Optional[RumProviderBreakdownDomainNamePatternListArgs] = None,
            icon_url: Optional[str] = None,
            report_public_improvement: Optional[bool] = None,
            resource_name: Optional[str] = None,
            resource_type: Optional[str] = None) -> RumProviderBreakdown
    func GetRumProviderBreakdown(ctx *Context, name string, id IDInput, state *RumProviderBreakdownState, opts ...ResourceOption) (*RumProviderBreakdown, error)
    public static RumProviderBreakdown Get(string name, Input<string> id, RumProviderBreakdownState? state, CustomResourceOptions? opts = null)
    public static RumProviderBreakdown get(String name, Output<String> id, RumProviderBreakdownState 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:
    DomainNamePatternList Lbrlabs.PulumiPackage.Dynatrace.Inputs.RumProviderBreakdownDomainNamePatternList
    Domain name pattern
    IconUrl string
    Specify an URL for the provider's brand icon
    ReportPublicImprovement bool
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    ResourceName string
    Resource name
    ResourceType string
    Possible Values: FirstParty, ThirdParty, Cdn
    DomainNamePatternList RumProviderBreakdownDomainNamePatternListArgs
    Domain name pattern
    IconUrl string
    Specify an URL for the provider's brand icon
    ReportPublicImprovement bool
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    ResourceName string
    Resource name
    ResourceType string
    Possible Values: FirstParty, ThirdParty, Cdn
    domainNamePatternList RumProviderBreakdownDomainNamePatternList
    Domain name pattern
    iconUrl String
    Specify an URL for the provider's brand icon
    reportPublicImprovement Boolean
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    resourceName String
    Resource name
    resourceType String
    Possible Values: FirstParty, ThirdParty, Cdn
    domainNamePatternList RumProviderBreakdownDomainNamePatternList
    Domain name pattern
    iconUrl string
    Specify an URL for the provider's brand icon
    reportPublicImprovement boolean
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    resourceName string
    Resource name
    resourceType string
    Possible Values: FirstParty, ThirdParty, Cdn
    domain_name_pattern_list RumProviderBreakdownDomainNamePatternListArgs
    Domain name pattern
    icon_url str
    Specify an URL for the provider's brand icon
    report_public_improvement bool
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    resource_name str
    Resource name
    resource_type str
    Possible Values: FirstParty, ThirdParty, Cdn
    domainNamePatternList Property Map
    Domain name pattern
    iconUrl String
    Specify an URL for the provider's brand icon
    reportPublicImprovement Boolean
    Send the patterns of this provider to Dynatrace to help us improve 3rd-party detection.
    resourceName String
    Resource name
    resourceType String
    Possible Values: FirstParty, ThirdParty, Cdn

    Supporting Types

    RumProviderBreakdownDomainNamePatternList, RumProviderBreakdownDomainNamePatternListArgs

    RumProviderBreakdownDomainNamePatternListDomainNamePattern, RumProviderBreakdownDomainNamePatternListDomainNamePatternArgs

    Pattern string
    Pattern string
    pattern String
    pattern string
    pattern String

    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