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

We recommend using Azure Native.

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

azure.appplatform.SpringCloudAppDynamicsApplicationPerformanceMonitoring

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 App Dynamics.

    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 exampleSpringCloudAppDynamicsApplicationPerformanceMonitoring = new azure.appplatform.SpringCloudAppDynamicsApplicationPerformanceMonitoring("example", {
        name: "example",
        springCloudServiceId: exampleSpringCloudService.id,
        agentAccountName: "example-agent-account-name",
        agentAccountAccessKey: "example-agent-account-access-key",
        controllerHostName: "example-controller-host-name",
        agentApplicationName: "example-agent-application-name",
        agentTierName: "example-agent-tier-name",
        agentNodeName: "example-agent-node-name",
        agentUniqueHostId: "example-agent-unique-host-id",
        controllerSslEnabled: true,
        controllerPort: 8080,
        globallyEnabled: true,
    });
    
    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_app_dynamics_application_performance_monitoring = azure.appplatform.SpringCloudAppDynamicsApplicationPerformanceMonitoring("example",
        name="example",
        spring_cloud_service_id=example_spring_cloud_service.id,
        agent_account_name="example-agent-account-name",
        agent_account_access_key="example-agent-account-access-key",
        controller_host_name="example-controller-host-name",
        agent_application_name="example-agent-application-name",
        agent_tier_name="example-agent-tier-name",
        agent_node_name="example-agent-node-name",
        agent_unique_host_id="example-agent-unique-host-id",
        controller_ssl_enabled=True,
        controller_port=8080,
        globally_enabled=True)
    
    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.NewSpringCloudAppDynamicsApplicationPerformanceMonitoring(ctx, "example", &appplatform.SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs{
    			Name:                  pulumi.String("example"),
    			SpringCloudServiceId:  exampleSpringCloudService.ID(),
    			AgentAccountName:      pulumi.String("example-agent-account-name"),
    			AgentAccountAccessKey: pulumi.String("example-agent-account-access-key"),
    			ControllerHostName:    pulumi.String("example-controller-host-name"),
    			AgentApplicationName:  pulumi.String("example-agent-application-name"),
    			AgentTierName:         pulumi.String("example-agent-tier-name"),
    			AgentNodeName:         pulumi.String("example-agent-node-name"),
    			AgentUniqueHostId:     pulumi.String("example-agent-unique-host-id"),
    			ControllerSslEnabled:  pulumi.Bool(true),
    			ControllerPort:        pulumi.Int(8080),
    			GloballyEnabled:       pulumi.Bool(true),
    		})
    		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 exampleSpringCloudAppDynamicsApplicationPerformanceMonitoring = new Azure.AppPlatform.SpringCloudAppDynamicsApplicationPerformanceMonitoring("example", new()
        {
            Name = "example",
            SpringCloudServiceId = exampleSpringCloudService.Id,
            AgentAccountName = "example-agent-account-name",
            AgentAccountAccessKey = "example-agent-account-access-key",
            ControllerHostName = "example-controller-host-name",
            AgentApplicationName = "example-agent-application-name",
            AgentTierName = "example-agent-tier-name",
            AgentNodeName = "example-agent-node-name",
            AgentUniqueHostId = "example-agent-unique-host-id",
            ControllerSslEnabled = true,
            ControllerPort = 8080,
            GloballyEnabled = true,
        });
    
    });
    
    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.SpringCloudAppDynamicsApplicationPerformanceMonitoring;
    import com.pulumi.azure.appplatform.SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs;
    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 exampleSpringCloudAppDynamicsApplicationPerformanceMonitoring = new SpringCloudAppDynamicsApplicationPerformanceMonitoring("exampleSpringCloudAppDynamicsApplicationPerformanceMonitoring", SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs.builder()        
                .name("example")
                .springCloudServiceId(exampleSpringCloudService.id())
                .agentAccountName("example-agent-account-name")
                .agentAccountAccessKey("example-agent-account-access-key")
                .controllerHostName("example-controller-host-name")
                .agentApplicationName("example-agent-application-name")
                .agentTierName("example-agent-tier-name")
                .agentNodeName("example-agent-node-name")
                .agentUniqueHostId("example-agent-unique-host-id")
                .controllerSslEnabled(true)
                .controllerPort(8080)
                .globallyEnabled(true)
                .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
      exampleSpringCloudAppDynamicsApplicationPerformanceMonitoring:
        type: azure:appplatform:SpringCloudAppDynamicsApplicationPerformanceMonitoring
        name: example
        properties:
          name: example
          springCloudServiceId: ${exampleSpringCloudService.id}
          agentAccountName: example-agent-account-name
          agentAccountAccessKey: example-agent-account-access-key
          controllerHostName: example-controller-host-name
          agentApplicationName: example-agent-application-name
          agentTierName: example-agent-tier-name
          agentNodeName: example-agent-node-name
          agentUniqueHostId: example-agent-unique-host-id
          controllerSslEnabled: true
          controllerPort: 8080
          globallyEnabled: true
    

    Create SpringCloudAppDynamicsApplicationPerformanceMonitoring Resource

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

    Constructor syntax

    new SpringCloudAppDynamicsApplicationPerformanceMonitoring(name: string, args: SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs, opts?: CustomResourceOptions);
    @overload
    def SpringCloudAppDynamicsApplicationPerformanceMonitoring(resource_name: str,
                                                               args: SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs,
                                                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def SpringCloudAppDynamicsApplicationPerformanceMonitoring(resource_name: str,
                                                               opts: Optional[ResourceOptions] = None,
                                                               agent_account_access_key: Optional[str] = None,
                                                               agent_account_name: Optional[str] = None,
                                                               controller_host_name: Optional[str] = None,
                                                               spring_cloud_service_id: Optional[str] = None,
                                                               agent_application_name: Optional[str] = None,
                                                               agent_node_name: Optional[str] = None,
                                                               agent_tier_name: Optional[str] = None,
                                                               agent_unique_host_id: Optional[str] = None,
                                                               controller_port: Optional[int] = None,
                                                               controller_ssl_enabled: Optional[bool] = None,
                                                               globally_enabled: Optional[bool] = None,
                                                               name: Optional[str] = None)
    func NewSpringCloudAppDynamicsApplicationPerformanceMonitoring(ctx *Context, name string, args SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs, opts ...ResourceOption) (*SpringCloudAppDynamicsApplicationPerformanceMonitoring, error)
    public SpringCloudAppDynamicsApplicationPerformanceMonitoring(string name, SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs args, CustomResourceOptions? opts = null)
    public SpringCloudAppDynamicsApplicationPerformanceMonitoring(String name, SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs args)
    public SpringCloudAppDynamicsApplicationPerformanceMonitoring(String name, SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs args, CustomResourceOptions options)
    
    type: azure:appplatform:SpringCloudAppDynamicsApplicationPerformanceMonitoring
    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 SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs
    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 SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs
    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 SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs
    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 springCloudAppDynamicsApplicationPerformanceMonitoringResource = new Azure.AppPlatform.SpringCloudAppDynamicsApplicationPerformanceMonitoring("springCloudAppDynamicsApplicationPerformanceMonitoringResource", new()
    {
        AgentAccountAccessKey = "string",
        AgentAccountName = "string",
        ControllerHostName = "string",
        SpringCloudServiceId = "string",
        AgentApplicationName = "string",
        AgentNodeName = "string",
        AgentTierName = "string",
        AgentUniqueHostId = "string",
        ControllerPort = 0,
        ControllerSslEnabled = false,
        GloballyEnabled = false,
        Name = "string",
    });
    
    example, err := appplatform.NewSpringCloudAppDynamicsApplicationPerformanceMonitoring(ctx, "springCloudAppDynamicsApplicationPerformanceMonitoringResource", &appplatform.SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs{
    	AgentAccountAccessKey: pulumi.String("string"),
    	AgentAccountName:      pulumi.String("string"),
    	ControllerHostName:    pulumi.String("string"),
    	SpringCloudServiceId:  pulumi.String("string"),
    	AgentApplicationName:  pulumi.String("string"),
    	AgentNodeName:         pulumi.String("string"),
    	AgentTierName:         pulumi.String("string"),
    	AgentUniqueHostId:     pulumi.String("string"),
    	ControllerPort:        pulumi.Int(0),
    	ControllerSslEnabled:  pulumi.Bool(false),
    	GloballyEnabled:       pulumi.Bool(false),
    	Name:                  pulumi.String("string"),
    })
    
    var springCloudAppDynamicsApplicationPerformanceMonitoringResource = new SpringCloudAppDynamicsApplicationPerformanceMonitoring("springCloudAppDynamicsApplicationPerformanceMonitoringResource", SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs.builder()        
        .agentAccountAccessKey("string")
        .agentAccountName("string")
        .controllerHostName("string")
        .springCloudServiceId("string")
        .agentApplicationName("string")
        .agentNodeName("string")
        .agentTierName("string")
        .agentUniqueHostId("string")
        .controllerPort(0)
        .controllerSslEnabled(false)
        .globallyEnabled(false)
        .name("string")
        .build());
    
    spring_cloud_app_dynamics_application_performance_monitoring_resource = azure.appplatform.SpringCloudAppDynamicsApplicationPerformanceMonitoring("springCloudAppDynamicsApplicationPerformanceMonitoringResource",
        agent_account_access_key="string",
        agent_account_name="string",
        controller_host_name="string",
        spring_cloud_service_id="string",
        agent_application_name="string",
        agent_node_name="string",
        agent_tier_name="string",
        agent_unique_host_id="string",
        controller_port=0,
        controller_ssl_enabled=False,
        globally_enabled=False,
        name="string")
    
    const springCloudAppDynamicsApplicationPerformanceMonitoringResource = new azure.appplatform.SpringCloudAppDynamicsApplicationPerformanceMonitoring("springCloudAppDynamicsApplicationPerformanceMonitoringResource", {
        agentAccountAccessKey: "string",
        agentAccountName: "string",
        controllerHostName: "string",
        springCloudServiceId: "string",
        agentApplicationName: "string",
        agentNodeName: "string",
        agentTierName: "string",
        agentUniqueHostId: "string",
        controllerPort: 0,
        controllerSslEnabled: false,
        globallyEnabled: false,
        name: "string",
    });
    
    type: azure:appplatform:SpringCloudAppDynamicsApplicationPerformanceMonitoring
    properties:
        agentAccountAccessKey: string
        agentAccountName: string
        agentApplicationName: string
        agentNodeName: string
        agentTierName: string
        agentUniqueHostId: string
        controllerHostName: string
        controllerPort: 0
        controllerSslEnabled: false
        globallyEnabled: false
        name: string
        springCloudServiceId: string
    

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

    AgentAccountAccessKey string
    Specifies the account access key used to authenticate with the Controller.
    AgentAccountName string
    Specifies the account name of the App Dynamics account.
    ControllerHostName string
    Specifies the hostname or the IP address of the AppDynamics Controller.
    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    AgentApplicationName string
    Specifies the name of the logical business application that this JVM node belongs to.
    AgentNodeName string
    Specifies the name of the node. Where JVMs are dynamically created.
    AgentTierName string
    Specifies the name of the tier that this JVM node belongs to.
    AgentUniqueHostId string
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    ControllerPort int
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    ControllerSslEnabled bool
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. Changing this forces a new resource to be created.
    AgentAccountAccessKey string
    Specifies the account access key used to authenticate with the Controller.
    AgentAccountName string
    Specifies the account name of the App Dynamics account.
    ControllerHostName string
    Specifies the hostname or the IP address of the AppDynamics Controller.
    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    AgentApplicationName string
    Specifies the name of the logical business application that this JVM node belongs to.
    AgentNodeName string
    Specifies the name of the node. Where JVMs are dynamically created.
    AgentTierName string
    Specifies the name of the tier that this JVM node belongs to.
    AgentUniqueHostId string
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    ControllerPort int
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    ControllerSslEnabled bool
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. Changing this forces a new resource to be created.
    agentAccountAccessKey String
    Specifies the account access key used to authenticate with the Controller.
    agentAccountName String
    Specifies the account name of the App Dynamics account.
    controllerHostName String
    Specifies the hostname or the IP address of the AppDynamics Controller.
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    agentApplicationName String
    Specifies the name of the logical business application that this JVM node belongs to.
    agentNodeName String
    Specifies the name of the node. Where JVMs are dynamically created.
    agentTierName String
    Specifies the name of the tier that this JVM node belongs to.
    agentUniqueHostId String
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    controllerPort Integer
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    controllerSslEnabled Boolean
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. Changing this forces a new resource to be created.
    agentAccountAccessKey string
    Specifies the account access key used to authenticate with the Controller.
    agentAccountName string
    Specifies the account name of the App Dynamics account.
    controllerHostName string
    Specifies the hostname or the IP address of the AppDynamics Controller.
    springCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    agentApplicationName string
    Specifies the name of the logical business application that this JVM node belongs to.
    agentNodeName string
    Specifies the name of the node. Where JVMs are dynamically created.
    agentTierName string
    Specifies the name of the tier that this JVM node belongs to.
    agentUniqueHostId string
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    controllerPort number
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    controllerSslEnabled boolean
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. Changing this forces a new resource to be created.
    agent_account_access_key str
    Specifies the account access key used to authenticate with the Controller.
    agent_account_name str
    Specifies the account name of the App Dynamics account.
    controller_host_name str
    Specifies the hostname or the IP address of the AppDynamics Controller.
    spring_cloud_service_id str
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    agent_application_name str
    Specifies the name of the logical business application that this JVM node belongs to.
    agent_node_name str
    Specifies the name of the node. Where JVMs are dynamically created.
    agent_tier_name str
    Specifies the name of the tier that this JVM node belongs to.
    agent_unique_host_id str
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    controller_port int
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    controller_ssl_enabled bool
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. Changing this forces a new resource to be created.
    agentAccountAccessKey String
    Specifies the account access key used to authenticate with the Controller.
    agentAccountName String
    Specifies the account name of the App Dynamics account.
    controllerHostName String
    Specifies the hostname or the IP address of the AppDynamics Controller.
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
    agentApplicationName String
    Specifies the name of the logical business application that this JVM node belongs to.
    agentNodeName String
    Specifies the name of the node. Where JVMs are dynamically created.
    agentTierName String
    Specifies the name of the tier that this JVM node belongs to.
    agentUniqueHostId String
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    controllerPort Number
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    controllerSslEnabled Boolean
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. Changing this forces a new resource to be created.

    Outputs

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

    Get an existing SpringCloudAppDynamicsApplicationPerformanceMonitoring 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?: SpringCloudAppDynamicsApplicationPerformanceMonitoringState, opts?: CustomResourceOptions): SpringCloudAppDynamicsApplicationPerformanceMonitoring
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            agent_account_access_key: Optional[str] = None,
            agent_account_name: Optional[str] = None,
            agent_application_name: Optional[str] = None,
            agent_node_name: Optional[str] = None,
            agent_tier_name: Optional[str] = None,
            agent_unique_host_id: Optional[str] = None,
            controller_host_name: Optional[str] = None,
            controller_port: Optional[int] = None,
            controller_ssl_enabled: Optional[bool] = None,
            globally_enabled: Optional[bool] = None,
            name: Optional[str] = None,
            spring_cloud_service_id: Optional[str] = None) -> SpringCloudAppDynamicsApplicationPerformanceMonitoring
    func GetSpringCloudAppDynamicsApplicationPerformanceMonitoring(ctx *Context, name string, id IDInput, state *SpringCloudAppDynamicsApplicationPerformanceMonitoringState, opts ...ResourceOption) (*SpringCloudAppDynamicsApplicationPerformanceMonitoring, error)
    public static SpringCloudAppDynamicsApplicationPerformanceMonitoring Get(string name, Input<string> id, SpringCloudAppDynamicsApplicationPerformanceMonitoringState? state, CustomResourceOptions? opts = null)
    public static SpringCloudAppDynamicsApplicationPerformanceMonitoring get(String name, Output<String> id, SpringCloudAppDynamicsApplicationPerformanceMonitoringState 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:
    AgentAccountAccessKey string
    Specifies the account access key used to authenticate with the Controller.
    AgentAccountName string
    Specifies the account name of the App Dynamics account.
    AgentApplicationName string
    Specifies the name of the logical business application that this JVM node belongs to.
    AgentNodeName string
    Specifies the name of the node. Where JVMs are dynamically created.
    AgentTierName string
    Specifies the name of the tier that this JVM node belongs to.
    AgentUniqueHostId string
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    ControllerHostName string
    Specifies the hostname or the IP address of the AppDynamics Controller.
    ControllerPort int
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    ControllerSslEnabled bool
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. 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.
    AgentAccountAccessKey string
    Specifies the account access key used to authenticate with the Controller.
    AgentAccountName string
    Specifies the account name of the App Dynamics account.
    AgentApplicationName string
    Specifies the name of the logical business application that this JVM node belongs to.
    AgentNodeName string
    Specifies the name of the node. Where JVMs are dynamically created.
    AgentTierName string
    Specifies the name of the tier that this JVM node belongs to.
    AgentUniqueHostId string
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    ControllerHostName string
    Specifies the hostname or the IP address of the AppDynamics Controller.
    ControllerPort int
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    ControllerSslEnabled bool
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. 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.
    agentAccountAccessKey String
    Specifies the account access key used to authenticate with the Controller.
    agentAccountName String
    Specifies the account name of the App Dynamics account.
    agentApplicationName String
    Specifies the name of the logical business application that this JVM node belongs to.
    agentNodeName String
    Specifies the name of the node. Where JVMs are dynamically created.
    agentTierName String
    Specifies the name of the tier that this JVM node belongs to.
    agentUniqueHostId String
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    controllerHostName String
    Specifies the hostname or the IP address of the AppDynamics Controller.
    controllerPort Integer
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    controllerSslEnabled Boolean
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. 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.
    agentAccountAccessKey string
    Specifies the account access key used to authenticate with the Controller.
    agentAccountName string
    Specifies the account name of the App Dynamics account.
    agentApplicationName string
    Specifies the name of the logical business application that this JVM node belongs to.
    agentNodeName string
    Specifies the name of the node. Where JVMs are dynamically created.
    agentTierName string
    Specifies the name of the tier that this JVM node belongs to.
    agentUniqueHostId string
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    controllerHostName string
    Specifies the hostname or the IP address of the AppDynamics Controller.
    controllerPort number
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    controllerSslEnabled boolean
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. 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.
    agent_account_access_key str
    Specifies the account access key used to authenticate with the Controller.
    agent_account_name str
    Specifies the account name of the App Dynamics account.
    agent_application_name str
    Specifies the name of the logical business application that this JVM node belongs to.
    agent_node_name str
    Specifies the name of the node. Where JVMs are dynamically created.
    agent_tier_name str
    Specifies the name of the tier that this JVM node belongs to.
    agent_unique_host_id str
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    controller_host_name str
    Specifies the hostname or the IP address of the AppDynamics Controller.
    controller_port int
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    controller_ssl_enabled bool
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. 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.
    agentAccountAccessKey String
    Specifies the account access key used to authenticate with the Controller.
    agentAccountName String
    Specifies the account name of the App Dynamics account.
    agentApplicationName String
    Specifies the name of the logical business application that this JVM node belongs to.
    agentNodeName String
    Specifies the name of the node. Where JVMs are dynamically created.
    agentTierName String
    Specifies the name of the tier that this JVM node belongs to.
    agentUniqueHostId String
    Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
    controllerHostName String
    Specifies the hostname or the IP address of the AppDynamics Controller.
    controllerPort Number
    Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
    controllerSslEnabled Boolean
    Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
    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 App Dynamics. 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.

    Import

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

    $ pulumi import azure:appplatform/springCloudAppDynamicsApplicationPerformanceMonitoring:SpringCloudAppDynamicsApplicationPerformanceMonitoring 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