We recommend using Azure Native.
azure.appplatform.SpringCloudAppDynamicsApplicationPerformanceMonitoring
Explore with Pulumi AI
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/v6/go/azure/appplatform"
"github.com/pulumi/pulumi-azure/sdk/v6/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.
Constructor 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SpringCloudAppDynamicsApplicationPerformanceMonitoring resource accepts the following input properties:
- Agent
Account stringAccess Key - Specifies the account access key used to authenticate with the Controller.
- Agent
Account stringName - Specifies the account name of the App Dynamics account.
- Controller
Host stringName - Specifies the hostname or the IP address of the AppDynamics Controller.
- Spring
Cloud stringService Id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- Agent
Application stringName - Specifies the name of the logical business application that this JVM node belongs to.
- Agent
Node stringName - Specifies the name of the node. Where JVMs are dynamically created.
- Agent
Tier stringName - Specifies the name of the tier that this JVM node belongs to.
- Agent
Unique stringHost Id - 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 boolEnabled - 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 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 stringAccess Key - Specifies the account access key used to authenticate with the Controller.
- Agent
Account stringName - Specifies the account name of the App Dynamics account.
- Controller
Host stringName - Specifies the hostname or the IP address of the AppDynamics Controller.
- Spring
Cloud stringService Id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- Agent
Application stringName - Specifies the name of the logical business application that this JVM node belongs to.
- Agent
Node stringName - Specifies the name of the node. Where JVMs are dynamically created.
- Agent
Tier stringName - Specifies the name of the tier that this JVM node belongs to.
- Agent
Unique stringHost Id - 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 boolEnabled - 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 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 StringAccess Key - Specifies the account access key used to authenticate with the Controller.
- agent
Account StringName - Specifies the account name of the App Dynamics account.
- controller
Host StringName - Specifies the hostname or the IP address of the AppDynamics Controller.
- spring
Cloud StringService Id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- agent
Application StringName - Specifies the name of the logical business application that this JVM node belongs to.
- agent
Node StringName - Specifies the name of the node. Where JVMs are dynamically created.
- agent
Tier StringName - Specifies the name of the tier that this JVM node belongs to.
- agent
Unique StringHost Id - 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 Integer - Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
- controller
Ssl BooleanEnabled - Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
- globally
Enabled 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 stringAccess Key - Specifies the account access key used to authenticate with the Controller.
- agent
Account stringName - Specifies the account name of the App Dynamics account.
- controller
Host stringName - Specifies the hostname or the IP address of the AppDynamics Controller.
- spring
Cloud stringService Id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- agent
Application stringName - Specifies the name of the logical business application that this JVM node belongs to.
- agent
Node stringName - Specifies the name of the node. Where JVMs are dynamically created.
- agent
Tier stringName - Specifies the name of the tier that this JVM node belongs to.
- agent
Unique stringHost Id - 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 number - Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
- controller
Ssl booleanEnabled - Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
- globally
Enabled 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_ straccess_ key - Specifies the account access key used to authenticate with the Controller.
- agent_
account_ strname - Specifies the account name of the App Dynamics account.
- controller_
host_ strname - Specifies the hostname or the IP address of the AppDynamics Controller.
- spring_
cloud_ strservice_ id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- agent_
application_ strname - Specifies the name of the logical business application that this JVM node belongs to.
- agent_
node_ strname - Specifies the name of the node. Where JVMs are dynamically created.
- agent_
tier_ strname - Specifies the name of the tier that this JVM node belongs to.
- agent_
unique_ strhost_ id - 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_ boolenabled - 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.
- agent
Account StringAccess Key - Specifies the account access key used to authenticate with the Controller.
- agent
Account StringName - Specifies the account name of the App Dynamics account.
- controller
Host StringName - Specifies the hostname or the IP address of the AppDynamics Controller.
- spring
Cloud StringService Id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- agent
Application StringName - Specifies the name of the logical business application that this JVM node belongs to.
- agent
Node StringName - Specifies the name of the node. Where JVMs are dynamically created.
- agent
Tier StringName - Specifies the name of the tier that this JVM node belongs to.
- agent
Unique StringHost Id - 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 Number - Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
- controller
Ssl BooleanEnabled - Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
- globally
Enabled 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.
- Agent
Account stringAccess Key - Specifies the account access key used to authenticate with the Controller.
- Agent
Account stringName - Specifies the account name of the App Dynamics account.
- Agent
Application stringName - Specifies the name of the logical business application that this JVM node belongs to.
- Agent
Node stringName - Specifies the name of the node. Where JVMs are dynamically created.
- Agent
Tier stringName - Specifies the name of the tier that this JVM node belongs to.
- Agent
Unique stringHost Id - 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 stringName - 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 boolEnabled - 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 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.
- Spring
Cloud stringService Id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- Agent
Account stringAccess Key - Specifies the account access key used to authenticate with the Controller.
- Agent
Account stringName - Specifies the account name of the App Dynamics account.
- Agent
Application stringName - Specifies the name of the logical business application that this JVM node belongs to.
- Agent
Node stringName - Specifies the name of the node. Where JVMs are dynamically created.
- Agent
Tier stringName - Specifies the name of the tier that this JVM node belongs to.
- Agent
Unique stringHost Id - 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 stringName - 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 boolEnabled - 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 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.
- Spring
Cloud stringService Id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- agent
Account StringAccess Key - Specifies the account access key used to authenticate with the Controller.
- agent
Account StringName - Specifies the account name of the App Dynamics account.
- agent
Application StringName - Specifies the name of the logical business application that this JVM node belongs to.
- agent
Node StringName - Specifies the name of the node. Where JVMs are dynamically created.
- agent
Tier StringName - Specifies the name of the tier that this JVM node belongs to.
- agent
Unique StringHost Id - 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 StringName - Specifies the hostname or the IP address of the AppDynamics Controller.
- controller
Port Integer - Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
- controller
Ssl BooleanEnabled - Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
- globally
Enabled 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.
- spring
Cloud StringService Id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- agent
Account stringAccess Key - Specifies the account access key used to authenticate with the Controller.
- agent
Account stringName - Specifies the account name of the App Dynamics account.
- agent
Application stringName - Specifies the name of the logical business application that this JVM node belongs to.
- agent
Node stringName - Specifies the name of the node. Where JVMs are dynamically created.
- agent
Tier stringName - Specifies the name of the tier that this JVM node belongs to.
- agent
Unique stringHost Id - 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 stringName - Specifies the hostname or the IP address of the AppDynamics Controller.
- controller
Port number - Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
- controller
Ssl booleanEnabled - Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
- globally
Enabled 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.
- spring
Cloud stringService Id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- agent_
account_ straccess_ key - Specifies the account access key used to authenticate with the Controller.
- agent_
account_ strname - Specifies the account name of the App Dynamics account.
- agent_
application_ strname - Specifies the name of the logical business application that this JVM node belongs to.
- agent_
node_ strname - Specifies the name of the node. Where JVMs are dynamically created.
- agent_
tier_ strname - Specifies the name of the tier that this JVM node belongs to.
- agent_
unique_ strhost_ id - 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_ strname - 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_ boolenabled - 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_ strservice_ id - The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
- agent
Account StringAccess Key - Specifies the account access key used to authenticate with the Controller.
- agent
Account StringName - Specifies the account name of the App Dynamics account.
- agent
Application StringName - Specifies the name of the logical business application that this JVM node belongs to.
- agent
Node StringName - Specifies the name of the node. Where JVMs are dynamically created.
- agent
Tier StringName - Specifies the name of the tier that this JVM node belongs to.
- agent
Unique StringHost Id - 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 StringName - Specifies the hostname or the IP address of the AppDynamics Controller.
- controller
Port Number - Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
- controller
Ssl BooleanEnabled - Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
- globally
Enabled 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.
- spring
Cloud StringService Id - 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.