1. Packages
  2. Azure Classic
  3. API Docs
  4. appplatform
  5. SpringCloudDynatraceApplicationPerformanceMonitoring

We recommend using Azure Native.

Azure Classic v5.74.0 published on Monday, Apr 29, 2024 by Pulumi

azure.appplatform.SpringCloudDynatraceApplicationPerformanceMonitoring

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.74.0 published on Monday, Apr 29, 2024 by Pulumi

    NOTE: This resource is only applicable for Spring Cloud Service enterprise tier

    Manages a Spring Cloud Application Performance Monitoring resource for Dynatrace.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example",
        location: "West Europe",
    });
    const exampleSpringCloudService = new azure.appplatform.SpringCloudService("example", {
        name: "example",
        location: example.location,
        resourceGroupName: example.name,
        skuName: "E0",
    });
    const exampleSpringCloudDynatraceApplicationPerformanceMonitoring = new azure.appplatform.SpringCloudDynatraceApplicationPerformanceMonitoring("example", {
        name: "example",
        springCloudServiceId: exampleSpringCloudService.id,
        globallyEnabled: true,
        apiUrl: "https://example-api-url.com",
        apiToken: "dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
        environmentId: "example-environment-id",
        tenant: "example-tenant",
        tenantToken: "dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
        connectionPoint: "https://example.live.dynatrace.com:443",
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example",
        location="West Europe")
    example_spring_cloud_service = azure.appplatform.SpringCloudService("example",
        name="example",
        location=example.location,
        resource_group_name=example.name,
        sku_name="E0")
    example_spring_cloud_dynatrace_application_performance_monitoring = azure.appplatform.SpringCloudDynatraceApplicationPerformanceMonitoring("example",
        name="example",
        spring_cloud_service_id=example_spring_cloud_service.id,
        globally_enabled=True,
        api_url="https://example-api-url.com",
        api_token="dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
        environment_id="example-environment-id",
        tenant="example-tenant",
        tenant_token="dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
        connection_point="https://example.live.dynatrace.com:443")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appplatform"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleSpringCloudService, err := appplatform.NewSpringCloudService(ctx, "example", &appplatform.SpringCloudServiceArgs{
    			Name:              pulumi.String("example"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			SkuName:           pulumi.String("E0"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appplatform.NewSpringCloudDynatraceApplicationPerformanceMonitoring(ctx, "example", &appplatform.SpringCloudDynatraceApplicationPerformanceMonitoringArgs{
    			Name:                 pulumi.String("example"),
    			SpringCloudServiceId: exampleSpringCloudService.ID(),
    			GloballyEnabled:      pulumi.Bool(true),
    			ApiUrl:               pulumi.String("https://example-api-url.com"),
    			ApiToken:             pulumi.String("dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"),
    			EnvironmentId:        pulumi.String("example-environment-id"),
    			Tenant:               pulumi.String("example-tenant"),
    			TenantToken:          pulumi.String("dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"),
    			ConnectionPoint:      pulumi.String("https://example.live.dynatrace.com:443"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example",
            Location = "West Europe",
        });
    
        var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("example", new()
        {
            Name = "example",
            Location = example.Location,
            ResourceGroupName = example.Name,
            SkuName = "E0",
        });
    
        var exampleSpringCloudDynatraceApplicationPerformanceMonitoring = new Azure.AppPlatform.SpringCloudDynatraceApplicationPerformanceMonitoring("example", new()
        {
            Name = "example",
            SpringCloudServiceId = exampleSpringCloudService.Id,
            GloballyEnabled = true,
            ApiUrl = "https://example-api-url.com",
            ApiToken = "dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
            EnvironmentId = "example-environment-id",
            Tenant = "example-tenant",
            TenantToken = "dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
            ConnectionPoint = "https://example.live.dynatrace.com:443",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.appplatform.SpringCloudService;
    import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
    import com.pulumi.azure.appplatform.SpringCloudDynatraceApplicationPerformanceMonitoring;
    import com.pulumi.azure.appplatform.SpringCloudDynatraceApplicationPerformanceMonitoringArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example")
                .location("West Europe")
                .build());
    
            var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()        
                .name("example")
                .location(example.location())
                .resourceGroupName(example.name())
                .skuName("E0")
                .build());
    
            var exampleSpringCloudDynatraceApplicationPerformanceMonitoring = new SpringCloudDynatraceApplicationPerformanceMonitoring("exampleSpringCloudDynatraceApplicationPerformanceMonitoring", SpringCloudDynatraceApplicationPerformanceMonitoringArgs.builder()        
                .name("example")
                .springCloudServiceId(exampleSpringCloudService.id())
                .globallyEnabled(true)
                .apiUrl("https://example-api-url.com")
                .apiToken("dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB")
                .environmentId("example-environment-id")
                .tenant("example-tenant")
                .tenantToken("dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB")
                .connectionPoint("https://example.live.dynatrace.com:443")
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example
          location: West Europe
      exampleSpringCloudService:
        type: azure:appplatform:SpringCloudService
        name: example
        properties:
          name: example
          location: ${example.location}
          resourceGroupName: ${example.name}
          skuName: E0
      exampleSpringCloudDynatraceApplicationPerformanceMonitoring:
        type: azure:appplatform:SpringCloudDynatraceApplicationPerformanceMonitoring
        name: example
        properties:
          name: example
          springCloudServiceId: ${exampleSpringCloudService.id}
          globallyEnabled: true
          apiUrl: https://example-api-url.com
          apiToken: dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
          environmentId: example-environment-id
          tenant: example-tenant
          tenantToken: dt0s01.AAAAAAAAAAAAAAAAAAAAAAAA.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
          connectionPoint: https://example.live.dynatrace.com:443
    

    Create SpringCloudDynatraceApplicationPerformanceMonitoring Resource

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

    Constructor syntax

    new SpringCloudDynatraceApplicationPerformanceMonitoring(name: string, args: SpringCloudDynatraceApplicationPerformanceMonitoringArgs, opts?: CustomResourceOptions);
    @overload
    def SpringCloudDynatraceApplicationPerformanceMonitoring(resource_name: str,
                                                             args: SpringCloudDynatraceApplicationPerformanceMonitoringArgs,
                                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def SpringCloudDynatraceApplicationPerformanceMonitoring(resource_name: str,
                                                             opts: Optional[ResourceOptions] = None,
                                                             connection_point: Optional[str] = None,
                                                             spring_cloud_service_id: Optional[str] = None,
                                                             tenant: Optional[str] = None,
                                                             tenant_token: Optional[str] = None,
                                                             api_token: Optional[str] = None,
                                                             api_url: Optional[str] = None,
                                                             environment_id: Optional[str] = None,
                                                             globally_enabled: Optional[bool] = None,
                                                             name: Optional[str] = None)
    func NewSpringCloudDynatraceApplicationPerformanceMonitoring(ctx *Context, name string, args SpringCloudDynatraceApplicationPerformanceMonitoringArgs, opts ...ResourceOption) (*SpringCloudDynatraceApplicationPerformanceMonitoring, error)
    public SpringCloudDynatraceApplicationPerformanceMonitoring(string name, SpringCloudDynatraceApplicationPerformanceMonitoringArgs args, CustomResourceOptions? opts = null)
    public SpringCloudDynatraceApplicationPerformanceMonitoring(String name, SpringCloudDynatraceApplicationPerformanceMonitoringArgs args)
    public SpringCloudDynatraceApplicationPerformanceMonitoring(String name, SpringCloudDynatraceApplicationPerformanceMonitoringArgs args, CustomResourceOptions options)
    
    type: azure:appplatform:SpringCloudDynatraceApplicationPerformanceMonitoring
    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 SpringCloudDynatraceApplicationPerformanceMonitoringArgs
    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 SpringCloudDynatraceApplicationPerformanceMonitoringArgs
    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 SpringCloudDynatraceApplicationPerformanceMonitoringArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SpringCloudDynatraceApplicationPerformanceMonitoringArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SpringCloudDynatraceApplicationPerformanceMonitoringArgs
    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 springCloudDynatraceApplicationPerformanceMonitoringResource = new Azure.AppPlatform.SpringCloudDynatraceApplicationPerformanceMonitoring("springCloudDynatraceApplicationPerformanceMonitoringResource", new()
    {
        ConnectionPoint = "string",
        SpringCloudServiceId = "string",
        Tenant = "string",
        TenantToken = "string",
        ApiToken = "string",
        ApiUrl = "string",
        EnvironmentId = "string",
        GloballyEnabled = false,
        Name = "string",
    });
    
    example, err := appplatform.NewSpringCloudDynatraceApplicationPerformanceMonitoring(ctx, "springCloudDynatraceApplicationPerformanceMonitoringResource", &appplatform.SpringCloudDynatraceApplicationPerformanceMonitoringArgs{
    	ConnectionPoint:      pulumi.String("string"),
    	SpringCloudServiceId: pulumi.String("string"),
    	Tenant:               pulumi.String("string"),
    	TenantToken:          pulumi.String("string"),
    	ApiToken:             pulumi.String("string"),
    	ApiUrl:               pulumi.String("string"),
    	EnvironmentId:        pulumi.String("string"),
    	GloballyEnabled:      pulumi.Bool(false),
    	Name:                 pulumi.String("string"),
    })
    
    var springCloudDynatraceApplicationPerformanceMonitoringResource = new SpringCloudDynatraceApplicationPerformanceMonitoring("springCloudDynatraceApplicationPerformanceMonitoringResource", SpringCloudDynatraceApplicationPerformanceMonitoringArgs.builder()        
        .connectionPoint("string")
        .springCloudServiceId("string")
        .tenant("string")
        .tenantToken("string")
        .apiToken("string")
        .apiUrl("string")
        .environmentId("string")
        .globallyEnabled(false)
        .name("string")
        .build());
    
    spring_cloud_dynatrace_application_performance_monitoring_resource = azure.appplatform.SpringCloudDynatraceApplicationPerformanceMonitoring("springCloudDynatraceApplicationPerformanceMonitoringResource",
        connection_point="string",
        spring_cloud_service_id="string",
        tenant="string",
        tenant_token="string",
        api_token="string",
        api_url="string",
        environment_id="string",
        globally_enabled=False,
        name="string")
    
    const springCloudDynatraceApplicationPerformanceMonitoringResource = new azure.appplatform.SpringCloudDynatraceApplicationPerformanceMonitoring("springCloudDynatraceApplicationPerformanceMonitoringResource", {
        connectionPoint: "string",
        springCloudServiceId: "string",
        tenant: "string",
        tenantToken: "string",
        apiToken: "string",
        apiUrl: "string",
        environmentId: "string",
        globallyEnabled: false,
        name: "string",
    });
    
    type: azure:appplatform:SpringCloudDynatraceApplicationPerformanceMonitoring
    properties:
        apiToken: string
        apiUrl: string
        connectionPoint: string
        environmentId: string
        globallyEnabled: false
        name: string
        springCloudServiceId: string
        tenant: string
        tenantToken: string
    

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

    ConnectionPoint string
    Specifies the endpoint to connect to the Dynatrace environment.
    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    Tenant string
    Specifies the Dynatrace tenant.
    TenantToken string
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    ApiToken string
    Specifies the API token of the Dynatrace environment.
    ApiUrl string
    Specifies the API Url of the Dynatrace environment.
    EnvironmentId string
    Specifies the Dynatrace environment ID.
    GloballyEnabled bool
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    Name string
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    ConnectionPoint string
    Specifies the endpoint to connect to the Dynatrace environment.
    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    Tenant string
    Specifies the Dynatrace tenant.
    TenantToken string
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    ApiToken string
    Specifies the API token of the Dynatrace environment.
    ApiUrl string
    Specifies the API Url of the Dynatrace environment.
    EnvironmentId string
    Specifies the Dynatrace environment ID.
    GloballyEnabled bool
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    Name string
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    connectionPoint String
    Specifies the endpoint to connect to the Dynatrace environment.
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    tenant String
    Specifies the Dynatrace tenant.
    tenantToken String
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    apiToken String
    Specifies the API token of the Dynatrace environment.
    apiUrl String
    Specifies the API Url of the Dynatrace environment.
    environmentId String
    Specifies the Dynatrace environment ID.
    globallyEnabled Boolean
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    name String
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    connectionPoint string
    Specifies the endpoint to connect to the Dynatrace environment.
    springCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    tenant string
    Specifies the Dynatrace tenant.
    tenantToken string
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    apiToken string
    Specifies the API token of the Dynatrace environment.
    apiUrl string
    Specifies the API Url of the Dynatrace environment.
    environmentId string
    Specifies the Dynatrace environment ID.
    globallyEnabled boolean
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    name string
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    connection_point str
    Specifies the endpoint to connect to the Dynatrace environment.
    spring_cloud_service_id str
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    tenant str
    Specifies the Dynatrace tenant.
    tenant_token str
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    api_token str
    Specifies the API token of the Dynatrace environment.
    api_url str
    Specifies the API Url of the Dynatrace environment.
    environment_id str
    Specifies the Dynatrace environment ID.
    globally_enabled bool
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    name str
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    connectionPoint String
    Specifies the endpoint to connect to the Dynatrace environment.
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    tenant String
    Specifies the Dynatrace tenant.
    tenantToken String
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    apiToken String
    Specifies the API token of the Dynatrace environment.
    apiUrl String
    Specifies the API Url of the Dynatrace environment.
    environmentId String
    Specifies the Dynatrace environment ID.
    globallyEnabled Boolean
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    name String
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.

    Outputs

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

    Get an existing SpringCloudDynatraceApplicationPerformanceMonitoring 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?: SpringCloudDynatraceApplicationPerformanceMonitoringState, opts?: CustomResourceOptions): SpringCloudDynatraceApplicationPerformanceMonitoring
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_token: Optional[str] = None,
            api_url: Optional[str] = None,
            connection_point: Optional[str] = None,
            environment_id: Optional[str] = None,
            globally_enabled: Optional[bool] = None,
            name: Optional[str] = None,
            spring_cloud_service_id: Optional[str] = None,
            tenant: Optional[str] = None,
            tenant_token: Optional[str] = None) -> SpringCloudDynatraceApplicationPerformanceMonitoring
    func GetSpringCloudDynatraceApplicationPerformanceMonitoring(ctx *Context, name string, id IDInput, state *SpringCloudDynatraceApplicationPerformanceMonitoringState, opts ...ResourceOption) (*SpringCloudDynatraceApplicationPerformanceMonitoring, error)
    public static SpringCloudDynatraceApplicationPerformanceMonitoring Get(string name, Input<string> id, SpringCloudDynatraceApplicationPerformanceMonitoringState? state, CustomResourceOptions? opts = null)
    public static SpringCloudDynatraceApplicationPerformanceMonitoring get(String name, Output<String> id, SpringCloudDynatraceApplicationPerformanceMonitoringState 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:
    ApiToken string
    Specifies the API token of the Dynatrace environment.
    ApiUrl string
    Specifies the API Url of the Dynatrace environment.
    ConnectionPoint string
    Specifies the endpoint to connect to the Dynatrace environment.
    EnvironmentId string
    Specifies the Dynatrace environment ID.
    GloballyEnabled bool
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    Name string
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    Tenant string
    Specifies the Dynatrace tenant.
    TenantToken string
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    ApiToken string
    Specifies the API token of the Dynatrace environment.
    ApiUrl string
    Specifies the API Url of the Dynatrace environment.
    ConnectionPoint string
    Specifies the endpoint to connect to the Dynatrace environment.
    EnvironmentId string
    Specifies the Dynatrace environment ID.
    GloballyEnabled bool
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    Name string
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    Tenant string
    Specifies the Dynatrace tenant.
    TenantToken string
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    apiToken String
    Specifies the API token of the Dynatrace environment.
    apiUrl String
    Specifies the API Url of the Dynatrace environment.
    connectionPoint String
    Specifies the endpoint to connect to the Dynatrace environment.
    environmentId String
    Specifies the Dynatrace environment ID.
    globallyEnabled Boolean
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    name String
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    tenant String
    Specifies the Dynatrace tenant.
    tenantToken String
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    apiToken string
    Specifies the API token of the Dynatrace environment.
    apiUrl string
    Specifies the API Url of the Dynatrace environment.
    connectionPoint string
    Specifies the endpoint to connect to the Dynatrace environment.
    environmentId string
    Specifies the Dynatrace environment ID.
    globallyEnabled boolean
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    name string
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    springCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    tenant string
    Specifies the Dynatrace tenant.
    tenantToken string
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    api_token str
    Specifies the API token of the Dynatrace environment.
    api_url str
    Specifies the API Url of the Dynatrace environment.
    connection_point str
    Specifies the endpoint to connect to the Dynatrace environment.
    environment_id str
    Specifies the Dynatrace environment ID.
    globally_enabled bool
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    name str
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    spring_cloud_service_id str
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    tenant str
    Specifies the Dynatrace tenant.
    tenant_token str
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.
    apiToken String
    Specifies the API token of the Dynatrace environment.
    apiUrl String
    Specifies the API Url of the Dynatrace environment.
    connectionPoint String
    Specifies the endpoint to connect to the Dynatrace environment.
    environmentId String
    Specifies the Dynatrace environment ID.
    globallyEnabled Boolean
    Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.
    name String
    The name which should be used for this Spring Cloud Application Performance Monitoring resource for Dynatrace. Changing this forces a new resource to be created.
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    tenant String
    Specifies the Dynatrace tenant.
    tenantToken String
    Specifies the internal token that is used for authentication when OneAgent connects to the Dynatrace cluster to send data.

    Import

    Spring Cloud Application Performance Monitoring resource for Dynatrace can be imported using the resource id, e.g.

    $ pulumi import azure:appplatform/springCloudDynatraceApplicationPerformanceMonitoring:SpringCloudDynatraceApplicationPerformanceMonitoring example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.AppPlatform/spring/service1/apms/apm1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.74.0 published on Monday, Apr 29, 2024 by Pulumi