SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs

data class SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs(val agentAccountAccessKey: Output<String>? = null, val agentAccountName: Output<String>? = null, val agentApplicationName: Output<String>? = null, val agentNodeName: Output<String>? = null, val agentTierName: Output<String>? = null, val agentUniqueHostId: Output<String>? = null, val controllerHostName: Output<String>? = null, val controllerPort: Output<Int>? = null, val controllerSslEnabled: Output<Boolean>? = null, val globallyEnabled: Output<Boolean>? = null, val name: Output<String>? = null, val springCloudServiceId: Output<String>? = null) : ConvertibleToJava<SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs>

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

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());
}
}

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

Constructors

fun SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs(agentAccountAccessKey: Output<String>? = null, agentAccountName: Output<String>? = null, agentApplicationName: Output<String>? = null, agentNodeName: Output<String>? = null, agentTierName: Output<String>? = null, agentUniqueHostId: Output<String>? = null, controllerHostName: Output<String>? = null, controllerPort: Output<Int>? = null, controllerSslEnabled: Output<Boolean>? = null, globallyEnabled: Output<Boolean>? = null, name: Output<String>? = null, springCloudServiceId: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SpringCloudAppDynamicsApplicationPerformanceMonitoringArgs

Properties

Link copied to clipboard
val agentAccountAccessKey: Output<String>? = null

Specifies the account access key used to authenticate with the Controller.

Link copied to clipboard
val agentAccountName: Output<String>? = null

Specifies the account name of the App Dynamics account.

Link copied to clipboard
val agentApplicationName: Output<String>? = null

Specifies the name of the logical business application that this JVM node belongs to.

Link copied to clipboard
val agentNodeName: Output<String>? = null

Specifies the name of the node. Where JVMs are dynamically created.

Link copied to clipboard
val agentTierName: Output<String>? = null

Specifies the name of the tier that this JVM node belongs to.

Link copied to clipboard
val agentUniqueHostId: Output<String>? = null

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.

Link copied to clipboard
val controllerHostName: Output<String>? = null

Specifies the hostname or the IP address of the AppDynamics Controller.

Link copied to clipboard
val controllerPort: Output<Int>? = null

Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.

Link copied to clipboard
val controllerSslEnabled: Output<Boolean>? = null

Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.

Link copied to clipboard
val globallyEnabled: Output<Boolean>? = null

Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to false.

Link copied to clipboard
val name: Output<String>? = null

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.

Link copied to clipboard
val springCloudServiceId: Output<String>? = null

The ID of the Spring Cloud Service. Changing this forces a new resource to be created.