wavefront.CloudIntegrationAppDynamics
Explore with Pulumi AI
Provides a Wavefront Cloud Integration for AppDynamics. This allows AppDynamics cloud integrations to be created, updated, and deleted.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as wavefront from "@pulumi/wavefront";
const appDynamics = new wavefront.CloudIntegrationAppDynamics("app_dynamics", {
    name: "Test Integration",
    userName: "example",
    controllerName: "exampleController",
    encryptedPassword: "encryptedPassword",
});
import pulumi
import pulumi_wavefront as wavefront
app_dynamics = wavefront.CloudIntegrationAppDynamics("app_dynamics",
    name="Test Integration",
    user_name="example",
    controller_name="exampleController",
    encrypted_password="encryptedPassword")
package main
import (
	"github.com/pulumi/pulumi-wavefront/sdk/v3/go/wavefront"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := wavefront.NewCloudIntegrationAppDynamics(ctx, "app_dynamics", &wavefront.CloudIntegrationAppDynamicsArgs{
			Name:              pulumi.String("Test Integration"),
			UserName:          pulumi.String("example"),
			ControllerName:    pulumi.String("exampleController"),
			EncryptedPassword: pulumi.String("encryptedPassword"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Wavefront = Pulumi.Wavefront;
return await Deployment.RunAsync(() => 
{
    var appDynamics = new Wavefront.CloudIntegrationAppDynamics("app_dynamics", new()
    {
        Name = "Test Integration",
        UserName = "example",
        ControllerName = "exampleController",
        EncryptedPassword = "encryptedPassword",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.wavefront.CloudIntegrationAppDynamics;
import com.pulumi.wavefront.CloudIntegrationAppDynamicsArgs;
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 appDynamics = new CloudIntegrationAppDynamics("appDynamics", CloudIntegrationAppDynamicsArgs.builder()
            .name("Test Integration")
            .userName("example")
            .controllerName("exampleController")
            .encryptedPassword("encryptedPassword")
            .build());
    }
}
resources:
  appDynamics:
    type: wavefront:CloudIntegrationAppDynamics
    name: app_dynamics
    properties:
      name: Test Integration
      userName: example
      controllerName: exampleController
      encryptedPassword: encryptedPassword
Create CloudIntegrationAppDynamics Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudIntegrationAppDynamics(name: string, args: CloudIntegrationAppDynamicsArgs, opts?: CustomResourceOptions);@overload
def CloudIntegrationAppDynamics(resource_name: str,
                                args: CloudIntegrationAppDynamicsArgs,
                                opts: Optional[ResourceOptions] = None)
@overload
def CloudIntegrationAppDynamics(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                encrypted_password: Optional[str] = None,
                                user_name: Optional[str] = None,
                                controller_name: Optional[str] = None,
                                service: Optional[str] = None,
                                enable_overall_perf_metrics: Optional[bool] = None,
                                enable_business_trx_metrics: Optional[bool] = None,
                                enable_error_metrics: Optional[bool] = None,
                                enable_individual_node_metrics: Optional[bool] = None,
                                additional_tags: Optional[Mapping[str, str]] = None,
                                enable_rollup: Optional[bool] = None,
                                enable_service_endpoint_metrics: Optional[bool] = None,
                                enable_backend_metrics: Optional[bool] = None,
                                force_save: Optional[bool] = None,
                                name: Optional[str] = None,
                                enable_app_infra_metrics: Optional[bool] = None,
                                service_refresh_rate_in_minutes: Optional[int] = None,
                                app_filter_regexes: Optional[Sequence[str]] = None)func NewCloudIntegrationAppDynamics(ctx *Context, name string, args CloudIntegrationAppDynamicsArgs, opts ...ResourceOption) (*CloudIntegrationAppDynamics, error)public CloudIntegrationAppDynamics(string name, CloudIntegrationAppDynamicsArgs args, CustomResourceOptions? opts = null)
public CloudIntegrationAppDynamics(String name, CloudIntegrationAppDynamicsArgs args)
public CloudIntegrationAppDynamics(String name, CloudIntegrationAppDynamicsArgs args, CustomResourceOptions options)
type: wavefront:CloudIntegrationAppDynamics
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 CloudIntegrationAppDynamicsArgs
- 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 CloudIntegrationAppDynamicsArgs
- 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 CloudIntegrationAppDynamicsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudIntegrationAppDynamicsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudIntegrationAppDynamicsArgs
- 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 cloudIntegrationAppDynamicsResource = new Wavefront.CloudIntegrationAppDynamics("cloudIntegrationAppDynamicsResource", new()
{
    EncryptedPassword = "string",
    UserName = "string",
    ControllerName = "string",
    Service = "string",
    EnableOverallPerfMetrics = false,
    EnableBusinessTrxMetrics = false,
    EnableErrorMetrics = false,
    EnableIndividualNodeMetrics = false,
    AdditionalTags = 
    {
        { "string", "string" },
    },
    EnableRollup = false,
    EnableServiceEndpointMetrics = false,
    EnableBackendMetrics = false,
    ForceSave = false,
    Name = "string",
    EnableAppInfraMetrics = false,
    ServiceRefreshRateInMinutes = 0,
    AppFilterRegexes = new[]
    {
        "string",
    },
});
example, err := wavefront.NewCloudIntegrationAppDynamics(ctx, "cloudIntegrationAppDynamicsResource", &wavefront.CloudIntegrationAppDynamicsArgs{
	EncryptedPassword:           pulumi.String("string"),
	UserName:                    pulumi.String("string"),
	ControllerName:              pulumi.String("string"),
	Service:                     pulumi.String("string"),
	EnableOverallPerfMetrics:    pulumi.Bool(false),
	EnableBusinessTrxMetrics:    pulumi.Bool(false),
	EnableErrorMetrics:          pulumi.Bool(false),
	EnableIndividualNodeMetrics: pulumi.Bool(false),
	AdditionalTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	EnableRollup:                 pulumi.Bool(false),
	EnableServiceEndpointMetrics: pulumi.Bool(false),
	EnableBackendMetrics:         pulumi.Bool(false),
	ForceSave:                    pulumi.Bool(false),
	Name:                         pulumi.String("string"),
	EnableAppInfraMetrics:        pulumi.Bool(false),
	ServiceRefreshRateInMinutes:  pulumi.Int(0),
	AppFilterRegexes: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var cloudIntegrationAppDynamicsResource = new CloudIntegrationAppDynamics("cloudIntegrationAppDynamicsResource", CloudIntegrationAppDynamicsArgs.builder()
    .encryptedPassword("string")
    .userName("string")
    .controllerName("string")
    .service("string")
    .enableOverallPerfMetrics(false)
    .enableBusinessTrxMetrics(false)
    .enableErrorMetrics(false)
    .enableIndividualNodeMetrics(false)
    .additionalTags(Map.of("string", "string"))
    .enableRollup(false)
    .enableServiceEndpointMetrics(false)
    .enableBackendMetrics(false)
    .forceSave(false)
    .name("string")
    .enableAppInfraMetrics(false)
    .serviceRefreshRateInMinutes(0)
    .appFilterRegexes("string")
    .build());
cloud_integration_app_dynamics_resource = wavefront.CloudIntegrationAppDynamics("cloudIntegrationAppDynamicsResource",
    encrypted_password="string",
    user_name="string",
    controller_name="string",
    service="string",
    enable_overall_perf_metrics=False,
    enable_business_trx_metrics=False,
    enable_error_metrics=False,
    enable_individual_node_metrics=False,
    additional_tags={
        "string": "string",
    },
    enable_rollup=False,
    enable_service_endpoint_metrics=False,
    enable_backend_metrics=False,
    force_save=False,
    name="string",
    enable_app_infra_metrics=False,
    service_refresh_rate_in_minutes=0,
    app_filter_regexes=["string"])
const cloudIntegrationAppDynamicsResource = new wavefront.CloudIntegrationAppDynamics("cloudIntegrationAppDynamicsResource", {
    encryptedPassword: "string",
    userName: "string",
    controllerName: "string",
    service: "string",
    enableOverallPerfMetrics: false,
    enableBusinessTrxMetrics: false,
    enableErrorMetrics: false,
    enableIndividualNodeMetrics: false,
    additionalTags: {
        string: "string",
    },
    enableRollup: false,
    enableServiceEndpointMetrics: false,
    enableBackendMetrics: false,
    forceSave: false,
    name: "string",
    enableAppInfraMetrics: false,
    serviceRefreshRateInMinutes: 0,
    appFilterRegexes: ["string"],
});
type: wavefront:CloudIntegrationAppDynamics
properties:
    additionalTags:
        string: string
    appFilterRegexes:
        - string
    controllerName: string
    enableAppInfraMetrics: false
    enableBackendMetrics: false
    enableBusinessTrxMetrics: false
    enableErrorMetrics: false
    enableIndividualNodeMetrics: false
    enableOverallPerfMetrics: false
    enableRollup: false
    enableServiceEndpointMetrics: false
    encryptedPassword: string
    forceSave: false
    name: string
    service: string
    serviceRefreshRateInMinutes: 0
    userName: string
CloudIntegrationAppDynamics 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 CloudIntegrationAppDynamics resource accepts the following input properties:
- ControllerName string
- Name of the SaaS controller.
- EncryptedPassword string
- Password for AppDynamics user.
- Service string
- A value denoting which cloud service this service integrates with.
- UserName string
- Username is a combination of userName and the account name.
- Dictionary<string, string>
- A list of point tag key-values to add to every point ingested using this integration.
- AppFilter List<string>Regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- EnableApp boolInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- EnableBackend boolMetrics 
- Boolean flag to control Backend metric ingestion.
- EnableBusiness boolTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- EnableError boolMetrics 
- Boolean flag to control Error metric ingestion.
- EnableIndividual boolNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- EnableOverall boolPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- EnableRollup bool
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- EnableService boolEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- ForceSave bool
- Forces this resource to save, even if errors are present.
- Name string
- The human-readable name of this integration.
- ServiceRefresh intRate In Minutes 
- How often, in minutes, to refresh the service.
- ControllerName string
- Name of the SaaS controller.
- EncryptedPassword string
- Password for AppDynamics user.
- Service string
- A value denoting which cloud service this service integrates with.
- UserName string
- Username is a combination of userName and the account name.
- map[string]string
- A list of point tag key-values to add to every point ingested using this integration.
- AppFilter []stringRegexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- EnableApp boolInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- EnableBackend boolMetrics 
- Boolean flag to control Backend metric ingestion.
- EnableBusiness boolTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- EnableError boolMetrics 
- Boolean flag to control Error metric ingestion.
- EnableIndividual boolNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- EnableOverall boolPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- EnableRollup bool
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- EnableService boolEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- ForceSave bool
- Forces this resource to save, even if errors are present.
- Name string
- The human-readable name of this integration.
- ServiceRefresh intRate In Minutes 
- How often, in minutes, to refresh the service.
- controllerName String
- Name of the SaaS controller.
- encryptedPassword String
- Password for AppDynamics user.
- service String
- A value denoting which cloud service this service integrates with.
- userName String
- Username is a combination of userName and the account name.
- Map<String,String>
- A list of point tag key-values to add to every point ingested using this integration.
- appFilter List<String>Regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- enableApp BooleanInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- enableBackend BooleanMetrics 
- Boolean flag to control Backend metric ingestion.
- enableBusiness BooleanTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- enableError BooleanMetrics 
- Boolean flag to control Error metric ingestion.
- enableIndividual BooleanNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- enableOverall BooleanPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- enableRollup Boolean
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- enableService BooleanEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- forceSave Boolean
- Forces this resource to save, even if errors are present.
- name String
- The human-readable name of this integration.
- serviceRefresh IntegerRate In Minutes 
- How often, in minutes, to refresh the service.
- controllerName string
- Name of the SaaS controller.
- encryptedPassword string
- Password for AppDynamics user.
- service string
- A value denoting which cloud service this service integrates with.
- userName string
- Username is a combination of userName and the account name.
- {[key: string]: string}
- A list of point tag key-values to add to every point ingested using this integration.
- appFilter string[]Regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- enableApp booleanInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- enableBackend booleanMetrics 
- Boolean flag to control Backend metric ingestion.
- enableBusiness booleanTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- enableError booleanMetrics 
- Boolean flag to control Error metric ingestion.
- enableIndividual booleanNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- enableOverall booleanPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- enableRollup boolean
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- enableService booleanEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- forceSave boolean
- Forces this resource to save, even if errors are present.
- name string
- The human-readable name of this integration.
- serviceRefresh numberRate In Minutes 
- How often, in minutes, to refresh the service.
- controller_name str
- Name of the SaaS controller.
- encrypted_password str
- Password for AppDynamics user.
- service str
- A value denoting which cloud service this service integrates with.
- user_name str
- Username is a combination of userName and the account name.
- Mapping[str, str]
- A list of point tag key-values to add to every point ingested using this integration.
- app_filter_ Sequence[str]regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- enable_app_ boolinfra_ metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- enable_backend_ boolmetrics 
- Boolean flag to control Backend metric ingestion.
- enable_business_ booltrx_ metrics 
- Boolean flag to control Business Transaction metric ingestion.
- enable_error_ boolmetrics 
- Boolean flag to control Error metric ingestion.
- enable_individual_ boolnode_ metrics 
- Boolean flag to control Individual Node metric ingestion.
- enable_overall_ boolperf_ metrics 
- Boolean flag to control Overall Performance metric ingestion.
- enable_rollup bool
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- enable_service_ boolendpoint_ metrics 
- Boolean flag to control Service End point metric ingestion.
- force_save bool
- Forces this resource to save, even if errors are present.
- name str
- The human-readable name of this integration.
- service_refresh_ intrate_ in_ minutes 
- How often, in minutes, to refresh the service.
- controllerName String
- Name of the SaaS controller.
- encryptedPassword String
- Password for AppDynamics user.
- service String
- A value denoting which cloud service this service integrates with.
- userName String
- Username is a combination of userName and the account name.
- Map<String>
- A list of point tag key-values to add to every point ingested using this integration.
- appFilter List<String>Regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- enableApp BooleanInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- enableBackend BooleanMetrics 
- Boolean flag to control Backend metric ingestion.
- enableBusiness BooleanTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- enableError BooleanMetrics 
- Boolean flag to control Error metric ingestion.
- enableIndividual BooleanNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- enableOverall BooleanPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- enableRollup Boolean
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- enableService BooleanEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- forceSave Boolean
- Forces this resource to save, even if errors are present.
- name String
- The human-readable name of this integration.
- serviceRefresh NumberRate In Minutes 
- How often, in minutes, to refresh the service.
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudIntegrationAppDynamics 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 CloudIntegrationAppDynamics Resource
Get an existing CloudIntegrationAppDynamics 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?: CloudIntegrationAppDynamicsState, opts?: CustomResourceOptions): CloudIntegrationAppDynamics@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        additional_tags: Optional[Mapping[str, str]] = None,
        app_filter_regexes: Optional[Sequence[str]] = None,
        controller_name: Optional[str] = None,
        enable_app_infra_metrics: Optional[bool] = None,
        enable_backend_metrics: Optional[bool] = None,
        enable_business_trx_metrics: Optional[bool] = None,
        enable_error_metrics: Optional[bool] = None,
        enable_individual_node_metrics: Optional[bool] = None,
        enable_overall_perf_metrics: Optional[bool] = None,
        enable_rollup: Optional[bool] = None,
        enable_service_endpoint_metrics: Optional[bool] = None,
        encrypted_password: Optional[str] = None,
        force_save: Optional[bool] = None,
        name: Optional[str] = None,
        service: Optional[str] = None,
        service_refresh_rate_in_minutes: Optional[int] = None,
        user_name: Optional[str] = None) -> CloudIntegrationAppDynamicsfunc GetCloudIntegrationAppDynamics(ctx *Context, name string, id IDInput, state *CloudIntegrationAppDynamicsState, opts ...ResourceOption) (*CloudIntegrationAppDynamics, error)public static CloudIntegrationAppDynamics Get(string name, Input<string> id, CloudIntegrationAppDynamicsState? state, CustomResourceOptions? opts = null)public static CloudIntegrationAppDynamics get(String name, Output<String> id, CloudIntegrationAppDynamicsState state, CustomResourceOptions options)resources:  _:    type: wavefront:CloudIntegrationAppDynamics    get:      id: ${id}- 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.
- Dictionary<string, string>
- A list of point tag key-values to add to every point ingested using this integration.
- AppFilter List<string>Regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- ControllerName string
- Name of the SaaS controller.
- EnableApp boolInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- EnableBackend boolMetrics 
- Boolean flag to control Backend metric ingestion.
- EnableBusiness boolTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- EnableError boolMetrics 
- Boolean flag to control Error metric ingestion.
- EnableIndividual boolNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- EnableOverall boolPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- EnableRollup bool
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- EnableService boolEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- EncryptedPassword string
- Password for AppDynamics user.
- ForceSave bool
- Forces this resource to save, even if errors are present.
- Name string
- The human-readable name of this integration.
- Service string
- A value denoting which cloud service this service integrates with.
- ServiceRefresh intRate In Minutes 
- How often, in minutes, to refresh the service.
- UserName string
- Username is a combination of userName and the account name.
- map[string]string
- A list of point tag key-values to add to every point ingested using this integration.
- AppFilter []stringRegexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- ControllerName string
- Name of the SaaS controller.
- EnableApp boolInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- EnableBackend boolMetrics 
- Boolean flag to control Backend metric ingestion.
- EnableBusiness boolTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- EnableError boolMetrics 
- Boolean flag to control Error metric ingestion.
- EnableIndividual boolNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- EnableOverall boolPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- EnableRollup bool
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- EnableService boolEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- EncryptedPassword string
- Password for AppDynamics user.
- ForceSave bool
- Forces this resource to save, even if errors are present.
- Name string
- The human-readable name of this integration.
- Service string
- A value denoting which cloud service this service integrates with.
- ServiceRefresh intRate In Minutes 
- How often, in minutes, to refresh the service.
- UserName string
- Username is a combination of userName and the account name.
- Map<String,String>
- A list of point tag key-values to add to every point ingested using this integration.
- appFilter List<String>Regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- controllerName String
- Name of the SaaS controller.
- enableApp BooleanInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- enableBackend BooleanMetrics 
- Boolean flag to control Backend metric ingestion.
- enableBusiness BooleanTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- enableError BooleanMetrics 
- Boolean flag to control Error metric ingestion.
- enableIndividual BooleanNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- enableOverall BooleanPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- enableRollup Boolean
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- enableService BooleanEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- encryptedPassword String
- Password for AppDynamics user.
- forceSave Boolean
- Forces this resource to save, even if errors are present.
- name String
- The human-readable name of this integration.
- service String
- A value denoting which cloud service this service integrates with.
- serviceRefresh IntegerRate In Minutes 
- How often, in minutes, to refresh the service.
- userName String
- Username is a combination of userName and the account name.
- {[key: string]: string}
- A list of point tag key-values to add to every point ingested using this integration.
- appFilter string[]Regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- controllerName string
- Name of the SaaS controller.
- enableApp booleanInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- enableBackend booleanMetrics 
- Boolean flag to control Backend metric ingestion.
- enableBusiness booleanTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- enableError booleanMetrics 
- Boolean flag to control Error metric ingestion.
- enableIndividual booleanNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- enableOverall booleanPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- enableRollup boolean
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- enableService booleanEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- encryptedPassword string
- Password for AppDynamics user.
- forceSave boolean
- Forces this resource to save, even if errors are present.
- name string
- The human-readable name of this integration.
- service string
- A value denoting which cloud service this service integrates with.
- serviceRefresh numberRate In Minutes 
- How often, in minutes, to refresh the service.
- userName string
- Username is a combination of userName and the account name.
- Mapping[str, str]
- A list of point tag key-values to add to every point ingested using this integration.
- app_filter_ Sequence[str]regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- controller_name str
- Name of the SaaS controller.
- enable_app_ boolinfra_ metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- enable_backend_ boolmetrics 
- Boolean flag to control Backend metric ingestion.
- enable_business_ booltrx_ metrics 
- Boolean flag to control Business Transaction metric ingestion.
- enable_error_ boolmetrics 
- Boolean flag to control Error metric ingestion.
- enable_individual_ boolnode_ metrics 
- Boolean flag to control Individual Node metric ingestion.
- enable_overall_ boolperf_ metrics 
- Boolean flag to control Overall Performance metric ingestion.
- enable_rollup bool
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- enable_service_ boolendpoint_ metrics 
- Boolean flag to control Service End point metric ingestion.
- encrypted_password str
- Password for AppDynamics user.
- force_save bool
- Forces this resource to save, even if errors are present.
- name str
- The human-readable name of this integration.
- service str
- A value denoting which cloud service this service integrates with.
- service_refresh_ intrate_ in_ minutes 
- How often, in minutes, to refresh the service.
- user_name str
- Username is a combination of userName and the account name.
- Map<String>
- A list of point tag key-values to add to every point ingested using this integration.
- appFilter List<String>Regexes 
- List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- controllerName String
- Name of the SaaS controller.
- enableApp BooleanInfra Metrics 
- Boolean flag to control Application Infrastructure metric ingestion.
- enableBackend BooleanMetrics 
- Boolean flag to control Backend metric ingestion.
- enableBusiness BooleanTrx Metrics 
- Boolean flag to control Business Transaction metric ingestion.
- enableError BooleanMetrics 
- Boolean flag to control Error metric ingestion.
- enableIndividual BooleanNode Metrics 
- Boolean flag to control Individual Node metric ingestion.
- enableOverall BooleanPerf Metrics 
- Boolean flag to control Overall Performance metric ingestion.
- enableRollup Boolean
- Set this to falseto get separate results for all values within the time range, by default it istrue.
- enableService BooleanEndpoint Metrics 
- Boolean flag to control Service End point metric ingestion.
- encryptedPassword String
- Password for AppDynamics user.
- forceSave Boolean
- Forces this resource to save, even if errors are present.
- name String
- The human-readable name of this integration.
- service String
- A value denoting which cloud service this service integrates with.
- serviceRefresh NumberRate In Minutes 
- How often, in minutes, to refresh the service.
- userName String
- Username is a combination of userName and the account name.
Import
AppDynamic Cloud Integrations can be imported by using the id, e.g.:
$ pulumi import wavefront:index/cloudIntegrationAppDynamics:CloudIntegrationAppDynamics app_dynamics a411c16b-3cf7-4f03-bf11-8ca05aab898d
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Wavefront pulumi/pulumi-wavefront
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the wavefrontTerraform Provider.