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
The CloudIntegrationAppDynamics resource accepts the following input properties:
- Controller
Name string - Name of the SaaS controller.
- Encrypted
Password string - Password for AppDynamics user.
- Service string
- A value denoting which cloud service this service integrates with.
- User
Name 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.
- App
Filter List<string>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
false
to 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 string
- The human-readable name of this integration.
- Service
Refresh intRate In Minutes - How often, in minutes, to refresh the service.
- Controller
Name string - Name of the SaaS controller.
- Encrypted
Password string - Password for AppDynamics user.
- Service string
- A value denoting which cloud service this service integrates with.
- User
Name 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.
- App
Filter []stringRegexes - 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
false
to 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 string
- The human-readable name of this integration.
- Service
Refresh intRate In Minutes - How often, in minutes, to refresh the service.
- controller
Name String - Name of the SaaS controller.
- encrypted
Password String - Password for AppDynamics user.
- service String
- A value denoting which cloud service this service integrates with.
- user
Name 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.
- app
Filter List<String>Regexes - List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- enable
App BooleanInfra Metrics - Boolean flag to control Application Infrastructure metric ingestion.
- enable
Backend BooleanMetrics - Boolean flag to control Backend metric ingestion.
- enable
Business BooleanTrx Metrics - Boolean flag to control Business Transaction metric ingestion.
- enable
Error BooleanMetrics - Boolean flag to control Error metric ingestion.
- enable
Individual BooleanNode Metrics - Boolean flag to control Individual Node metric ingestion.
- enable
Overall BooleanPerf Metrics - Boolean flag to control Overall Performance metric ingestion.
- enable
Rollup Boolean - Set this to
false
to get separate results for all values within the time range, by default it istrue
. - enable
Service BooleanEndpoint Metrics - Boolean flag to control Service End point metric ingestion.
- force
Save Boolean - Forces this resource to save, even if errors are present.
- name String
- The human-readable name of this integration.
- service
Refresh IntegerRate In Minutes - How often, in minutes, to refresh the service.
- controller
Name string - Name of the SaaS controller.
- encrypted
Password string - Password for AppDynamics user.
- service string
- A value denoting which cloud service this service integrates with.
- user
Name 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.
- app
Filter string[]Regexes - List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- enable
App booleanInfra Metrics - Boolean flag to control Application Infrastructure metric ingestion.
- enable
Backend booleanMetrics - Boolean flag to control Backend metric ingestion.
- enable
Business booleanTrx Metrics - Boolean flag to control Business Transaction metric ingestion.
- enable
Error booleanMetrics - Boolean flag to control Error metric ingestion.
- enable
Individual booleanNode Metrics - Boolean flag to control Individual Node metric ingestion.
- enable
Overall booleanPerf Metrics - Boolean flag to control Overall Performance metric ingestion.
- enable
Rollup boolean - Set this to
false
to get separate results for all values within the time range, by default it istrue
. - enable
Service booleanEndpoint Metrics - Boolean flag to control Service End point metric ingestion.
- force
Save boolean - Forces this resource to save, even if errors are present.
- name string
- The human-readable name of this integration.
- service
Refresh 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
false
to 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.
- controller
Name String - Name of the SaaS controller.
- encrypted
Password String - Password for AppDynamics user.
- service String
- A value denoting which cloud service this service integrates with.
- user
Name 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.
- app
Filter List<String>Regexes - List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- enable
App BooleanInfra Metrics - Boolean flag to control Application Infrastructure metric ingestion.
- enable
Backend BooleanMetrics - Boolean flag to control Backend metric ingestion.
- enable
Business BooleanTrx Metrics - Boolean flag to control Business Transaction metric ingestion.
- enable
Error BooleanMetrics - Boolean flag to control Error metric ingestion.
- enable
Individual BooleanNode Metrics - Boolean flag to control Individual Node metric ingestion.
- enable
Overall BooleanPerf Metrics - Boolean flag to control Overall Performance metric ingestion.
- enable
Rollup Boolean - Set this to
false
to get separate results for all values within the time range, by default it istrue
. - enable
Service BooleanEndpoint Metrics - Boolean flag to control Service End point metric ingestion.
- force
Save Boolean - Forces this resource to save, even if errors are present.
- name String
- The human-readable name of this integration.
- service
Refresh 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) -> CloudIntegrationAppDynamics
func 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)
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.
- Dictionary<string, string>
- A list of point tag key-values to add to every point ingested using this integration.
- App
Filter List<string>Regexes - List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- Controller
Name string - 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
false
to 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 string - Password for AppDynamics user.
- Force
Save 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.
- Service
Refresh intRate In Minutes - How often, in minutes, to refresh the service.
- User
Name 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.
- App
Filter []stringRegexes - List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- Controller
Name string - 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
false
to 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 string - Password for AppDynamics user.
- Force
Save 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.
- Service
Refresh intRate In Minutes - How often, in minutes, to refresh the service.
- User
Name 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.
- app
Filter List<String>Regexes - List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- controller
Name String - Name of the SaaS controller.
- enable
App BooleanInfra Metrics - Boolean flag to control Application Infrastructure metric ingestion.
- enable
Backend BooleanMetrics - Boolean flag to control Backend metric ingestion.
- enable
Business BooleanTrx Metrics - Boolean flag to control Business Transaction metric ingestion.
- enable
Error BooleanMetrics - Boolean flag to control Error metric ingestion.
- enable
Individual BooleanNode Metrics - Boolean flag to control Individual Node metric ingestion.
- enable
Overall BooleanPerf Metrics - Boolean flag to control Overall Performance metric ingestion.
- enable
Rollup Boolean - Set this to
false
to get separate results for all values within the time range, by default it istrue
. - enable
Service BooleanEndpoint Metrics - Boolean flag to control Service End point metric ingestion.
- encrypted
Password String - Password for AppDynamics user.
- force
Save 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.
- service
Refresh IntegerRate In Minutes - How often, in minutes, to refresh the service.
- user
Name 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.
- app
Filter string[]Regexes - List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- controller
Name string - Name of the SaaS controller.
- enable
App booleanInfra Metrics - Boolean flag to control Application Infrastructure metric ingestion.
- enable
Backend booleanMetrics - Boolean flag to control Backend metric ingestion.
- enable
Business booleanTrx Metrics - Boolean flag to control Business Transaction metric ingestion.
- enable
Error booleanMetrics - Boolean flag to control Error metric ingestion.
- enable
Individual booleanNode Metrics - Boolean flag to control Individual Node metric ingestion.
- enable
Overall booleanPerf Metrics - Boolean flag to control Overall Performance metric ingestion.
- enable
Rollup boolean - Set this to
false
to get separate results for all values within the time range, by default it istrue
. - enable
Service booleanEndpoint Metrics - Boolean flag to control Service End point metric ingestion.
- encrypted
Password string - Password for AppDynamics user.
- force
Save 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.
- service
Refresh numberRate In Minutes - How often, in minutes, to refresh the service.
- user
Name 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
false
to 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.
- app
Filter List<String>Regexes - List of regular expressions that an application name must match (case-insensitively) in order to be ingested.
- controller
Name String - Name of the SaaS controller.
- enable
App BooleanInfra Metrics - Boolean flag to control Application Infrastructure metric ingestion.
- enable
Backend BooleanMetrics - Boolean flag to control Backend metric ingestion.
- enable
Business BooleanTrx Metrics - Boolean flag to control Business Transaction metric ingestion.
- enable
Error BooleanMetrics - Boolean flag to control Error metric ingestion.
- enable
Individual BooleanNode Metrics - Boolean flag to control Individual Node metric ingestion.
- enable
Overall BooleanPerf Metrics - Boolean flag to control Overall Performance metric ingestion.
- enable
Rollup Boolean - Set this to
false
to get separate results for all values within the time range, by default it istrue
. - enable
Service BooleanEndpoint Metrics - Boolean flag to control Service End point metric ingestion.
- encrypted
Password String - Password for AppDynamics user.
- force
Save 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.
- service
Refresh NumberRate In Minutes - How often, in minutes, to refresh the service.
- user
Name 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
wavefront
Terraform Provider.