SpringCloudAppDynamicsApplicationPerformanceMonitoring

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

Properties

Link copied to clipboard

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

Link copied to clipboard

Specifies the account name of the App Dynamics account.

Link copied to clipboard

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

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

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

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

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

Link copied to clipboard

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

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

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

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

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

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

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

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<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.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

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

Link copied to clipboard
val urn: Output<String>