dynatrace.AwsAnomalies
Explore with Pulumi AI
Create AwsAnomalies Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AwsAnomalies(name: string, args: AwsAnomaliesArgs, opts?: CustomResourceOptions);
@overload
def AwsAnomalies(resource_name: str,
args: AwsAnomaliesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AwsAnomalies(resource_name: str,
opts: Optional[ResourceOptions] = None,
ec2_candidate_high_cpu_detection: Optional[AwsAnomaliesEc2CandidateHighCpuDetectionArgs] = None,
elb_high_connection_errors_detection: Optional[AwsAnomaliesElbHighConnectionErrorsDetectionArgs] = None,
lambda_high_error_rate_detection: Optional[AwsAnomaliesLambdaHighErrorRateDetectionArgs] = None,
rds_high_cpu_detection: Optional[AwsAnomaliesRdsHighCpuDetectionArgs] = None,
rds_high_memory_detection: Optional[AwsAnomaliesRdsHighMemoryDetectionArgs] = None,
rds_high_write_read_latency_detection: Optional[AwsAnomaliesRdsHighWriteReadLatencyDetectionArgs] = None,
rds_low_storage_detection: Optional[AwsAnomaliesRdsLowStorageDetectionArgs] = None,
rds_restarts_sequence_detection: Optional[AwsAnomaliesRdsRestartsSequenceDetectionArgs] = None)
func NewAwsAnomalies(ctx *Context, name string, args AwsAnomaliesArgs, opts ...ResourceOption) (*AwsAnomalies, error)
public AwsAnomalies(string name, AwsAnomaliesArgs args, CustomResourceOptions? opts = null)
public AwsAnomalies(String name, AwsAnomaliesArgs args)
public AwsAnomalies(String name, AwsAnomaliesArgs args, CustomResourceOptions options)
type: dynatrace:AwsAnomalies
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AwsAnomaliesArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. AwsAnomaliesArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AwsAnomaliesArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AwsAnomaliesArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. AwsAnomaliesArgs - 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 awsAnomaliesResource = new Dynatrace.AwsAnomalies("awsAnomaliesResource", new()
{
Ec2CandidateHighCpuDetection = new Dynatrace.Inputs.AwsAnomaliesEc2CandidateHighCpuDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.AwsAnomaliesEc2CandidateHighCpuDetectionCustomThresholdsArgs
{
CpuUsage = 0,
},
DetectionMode = "string",
},
ElbHighConnectionErrorsDetection = new Dynatrace.Inputs.AwsAnomaliesElbHighConnectionErrorsDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.AwsAnomaliesElbHighConnectionErrorsDetectionCustomThresholdsArgs
{
ConnectionErrorsPerMinute = 0,
},
DetectionMode = "string",
},
LambdaHighErrorRateDetection = new Dynatrace.Inputs.AwsAnomaliesLambdaHighErrorRateDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.AwsAnomaliesLambdaHighErrorRateDetectionCustomThresholdsArgs
{
FailedInvocationsRate = 0,
},
DetectionMode = "string",
},
RdsHighCpuDetection = new Dynatrace.Inputs.AwsAnomaliesRdsHighCpuDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.AwsAnomaliesRdsHighCpuDetectionCustomThresholdsArgs
{
CpuUsage = 0,
},
DetectionMode = "string",
},
RdsHighMemoryDetection = new Dynatrace.Inputs.AwsAnomaliesRdsHighMemoryDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.AwsAnomaliesRdsHighMemoryDetectionCustomThresholdsArgs
{
FreeMemory = 0,
SwapUsage = 0,
},
DetectionMode = "string",
},
RdsHighWriteReadLatencyDetection = new Dynatrace.Inputs.AwsAnomaliesRdsHighWriteReadLatencyDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.AwsAnomaliesRdsHighWriteReadLatencyDetectionCustomThresholdsArgs
{
ReadWriteLatency = 0,
},
DetectionMode = "string",
},
RdsLowStorageDetection = new Dynatrace.Inputs.AwsAnomaliesRdsLowStorageDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.AwsAnomaliesRdsLowStorageDetectionCustomThresholdsArgs
{
FreeStoragePercentage = 0,
},
DetectionMode = "string",
},
RdsRestartsSequenceDetection = new Dynatrace.Inputs.AwsAnomaliesRdsRestartsSequenceDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.AwsAnomaliesRdsRestartsSequenceDetectionCustomThresholdsArgs
{
RestartsPerMinute = 0,
},
DetectionMode = "string",
},
});
example, err := dynatrace.NewAwsAnomalies(ctx, "awsAnomaliesResource", &dynatrace.AwsAnomaliesArgs{
Ec2CandidateHighCpuDetection: &dynatrace.AwsAnomaliesEc2CandidateHighCpuDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.AwsAnomaliesEc2CandidateHighCpuDetectionCustomThresholdsArgs{
CpuUsage: pulumi.Float64(0),
},
DetectionMode: pulumi.String("string"),
},
ElbHighConnectionErrorsDetection: &dynatrace.AwsAnomaliesElbHighConnectionErrorsDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.AwsAnomaliesElbHighConnectionErrorsDetectionCustomThresholdsArgs{
ConnectionErrorsPerMinute: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
LambdaHighErrorRateDetection: &dynatrace.AwsAnomaliesLambdaHighErrorRateDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.AwsAnomaliesLambdaHighErrorRateDetectionCustomThresholdsArgs{
FailedInvocationsRate: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
RdsHighCpuDetection: &dynatrace.AwsAnomaliesRdsHighCpuDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.AwsAnomaliesRdsHighCpuDetectionCustomThresholdsArgs{
CpuUsage: pulumi.Float64(0),
},
DetectionMode: pulumi.String("string"),
},
RdsHighMemoryDetection: &dynatrace.AwsAnomaliesRdsHighMemoryDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.AwsAnomaliesRdsHighMemoryDetectionCustomThresholdsArgs{
FreeMemory: pulumi.Float64(0),
SwapUsage: pulumi.Float64(0),
},
DetectionMode: pulumi.String("string"),
},
RdsHighWriteReadLatencyDetection: &dynatrace.AwsAnomaliesRdsHighWriteReadLatencyDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.AwsAnomaliesRdsHighWriteReadLatencyDetectionCustomThresholdsArgs{
ReadWriteLatency: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
RdsLowStorageDetection: &dynatrace.AwsAnomaliesRdsLowStorageDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.AwsAnomaliesRdsLowStorageDetectionCustomThresholdsArgs{
FreeStoragePercentage: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
RdsRestartsSequenceDetection: &dynatrace.AwsAnomaliesRdsRestartsSequenceDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.AwsAnomaliesRdsRestartsSequenceDetectionCustomThresholdsArgs{
RestartsPerMinute: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
})
var awsAnomaliesResource = new AwsAnomalies("awsAnomaliesResource", AwsAnomaliesArgs.builder()
.ec2CandidateHighCpuDetection(AwsAnomaliesEc2CandidateHighCpuDetectionArgs.builder()
.enabled(false)
.customThresholds(AwsAnomaliesEc2CandidateHighCpuDetectionCustomThresholdsArgs.builder()
.cpuUsage(0)
.build())
.detectionMode("string")
.build())
.elbHighConnectionErrorsDetection(AwsAnomaliesElbHighConnectionErrorsDetectionArgs.builder()
.enabled(false)
.customThresholds(AwsAnomaliesElbHighConnectionErrorsDetectionCustomThresholdsArgs.builder()
.connectionErrorsPerMinute(0)
.build())
.detectionMode("string")
.build())
.lambdaHighErrorRateDetection(AwsAnomaliesLambdaHighErrorRateDetectionArgs.builder()
.enabled(false)
.customThresholds(AwsAnomaliesLambdaHighErrorRateDetectionCustomThresholdsArgs.builder()
.failedInvocationsRate(0)
.build())
.detectionMode("string")
.build())
.rdsHighCpuDetection(AwsAnomaliesRdsHighCpuDetectionArgs.builder()
.enabled(false)
.customThresholds(AwsAnomaliesRdsHighCpuDetectionCustomThresholdsArgs.builder()
.cpuUsage(0)
.build())
.detectionMode("string")
.build())
.rdsHighMemoryDetection(AwsAnomaliesRdsHighMemoryDetectionArgs.builder()
.enabled(false)
.customThresholds(AwsAnomaliesRdsHighMemoryDetectionCustomThresholdsArgs.builder()
.freeMemory(0)
.swapUsage(0)
.build())
.detectionMode("string")
.build())
.rdsHighWriteReadLatencyDetection(AwsAnomaliesRdsHighWriteReadLatencyDetectionArgs.builder()
.enabled(false)
.customThresholds(AwsAnomaliesRdsHighWriteReadLatencyDetectionCustomThresholdsArgs.builder()
.readWriteLatency(0)
.build())
.detectionMode("string")
.build())
.rdsLowStorageDetection(AwsAnomaliesRdsLowStorageDetectionArgs.builder()
.enabled(false)
.customThresholds(AwsAnomaliesRdsLowStorageDetectionCustomThresholdsArgs.builder()
.freeStoragePercentage(0)
.build())
.detectionMode("string")
.build())
.rdsRestartsSequenceDetection(AwsAnomaliesRdsRestartsSequenceDetectionArgs.builder()
.enabled(false)
.customThresholds(AwsAnomaliesRdsRestartsSequenceDetectionCustomThresholdsArgs.builder()
.restartsPerMinute(0)
.build())
.detectionMode("string")
.build())
.build());
aws_anomalies_resource = dynatrace.AwsAnomalies("awsAnomaliesResource",
ec2_candidate_high_cpu_detection={
"enabled": False,
"custom_thresholds": {
"cpu_usage": 0,
},
"detection_mode": "string",
},
elb_high_connection_errors_detection={
"enabled": False,
"custom_thresholds": {
"connection_errors_per_minute": 0,
},
"detection_mode": "string",
},
lambda_high_error_rate_detection={
"enabled": False,
"custom_thresholds": {
"failed_invocations_rate": 0,
},
"detection_mode": "string",
},
rds_high_cpu_detection={
"enabled": False,
"custom_thresholds": {
"cpu_usage": 0,
},
"detection_mode": "string",
},
rds_high_memory_detection={
"enabled": False,
"custom_thresholds": {
"free_memory": 0,
"swap_usage": 0,
},
"detection_mode": "string",
},
rds_high_write_read_latency_detection={
"enabled": False,
"custom_thresholds": {
"read_write_latency": 0,
},
"detection_mode": "string",
},
rds_low_storage_detection={
"enabled": False,
"custom_thresholds": {
"free_storage_percentage": 0,
},
"detection_mode": "string",
},
rds_restarts_sequence_detection={
"enabled": False,
"custom_thresholds": {
"restarts_per_minute": 0,
},
"detection_mode": "string",
})
const awsAnomaliesResource = new dynatrace.AwsAnomalies("awsAnomaliesResource", {
ec2CandidateHighCpuDetection: {
enabled: false,
customThresholds: {
cpuUsage: 0,
},
detectionMode: "string",
},
elbHighConnectionErrorsDetection: {
enabled: false,
customThresholds: {
connectionErrorsPerMinute: 0,
},
detectionMode: "string",
},
lambdaHighErrorRateDetection: {
enabled: false,
customThresholds: {
failedInvocationsRate: 0,
},
detectionMode: "string",
},
rdsHighCpuDetection: {
enabled: false,
customThresholds: {
cpuUsage: 0,
},
detectionMode: "string",
},
rdsHighMemoryDetection: {
enabled: false,
customThresholds: {
freeMemory: 0,
swapUsage: 0,
},
detectionMode: "string",
},
rdsHighWriteReadLatencyDetection: {
enabled: false,
customThresholds: {
readWriteLatency: 0,
},
detectionMode: "string",
},
rdsLowStorageDetection: {
enabled: false,
customThresholds: {
freeStoragePercentage: 0,
},
detectionMode: "string",
},
rdsRestartsSequenceDetection: {
enabled: false,
customThresholds: {
restartsPerMinute: 0,
},
detectionMode: "string",
},
});
type: dynatrace:AwsAnomalies
properties:
ec2CandidateHighCpuDetection:
customThresholds:
cpuUsage: 0
detectionMode: string
enabled: false
elbHighConnectionErrorsDetection:
customThresholds:
connectionErrorsPerMinute: 0
detectionMode: string
enabled: false
lambdaHighErrorRateDetection:
customThresholds:
failedInvocationsRate: 0
detectionMode: string
enabled: false
rdsHighCpuDetection:
customThresholds:
cpuUsage: 0
detectionMode: string
enabled: false
rdsHighMemoryDetection:
customThresholds:
freeMemory: 0
swapUsage: 0
detectionMode: string
enabled: false
rdsHighWriteReadLatencyDetection:
customThresholds:
readWriteLatency: 0
detectionMode: string
enabled: false
rdsLowStorageDetection:
customThresholds:
freeStoragePercentage: 0
detectionMode: string
enabled: false
rdsRestartsSequenceDetection:
customThresholds:
restartsPerMinute: 0
detectionMode: string
enabled: false
AwsAnomalies 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 AwsAnomalies resource accepts the following input properties:
- Ec2Candidate
High Cpu Detection This property is required. Pulumiverse.Dynatrace. Inputs. Aws Anomalies Ec2Candidate High Cpu Detection - no documentation available
- Elb
High Connection Errors Detection This property is required. Pulumiverse.Dynatrace. Inputs. Aws Anomalies Elb High Connection Errors Detection - no documentation available
- Lambda
High Error Rate Detection This property is required. Pulumiverse.Dynatrace. Inputs. Aws Anomalies Lambda High Error Rate Detection - no documentation available
- Rds
High Cpu Detection This property is required. Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds High Cpu Detection - no documentation available
- Rds
High Memory Detection This property is required. Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds High Memory Detection - no documentation available
- Rds
High Write Read Latency Detection This property is required. Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds High Write Read Latency Detection - no documentation available
- Rds
Low Storage Detection This property is required. Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds Low Storage Detection - no documentation available
- Rds
Restarts Sequence Detection This property is required. Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds Restarts Sequence Detection - no documentation available
- Ec2Candidate
High Cpu Detection This property is required. AwsAnomalies Ec2Candidate High Cpu Detection Args - no documentation available
- Elb
High Connection Errors Detection This property is required. AwsAnomalies Elb High Connection Errors Detection Args - no documentation available
- Lambda
High Error Rate Detection This property is required. AwsAnomalies Lambda High Error Rate Detection Args - no documentation available
- Rds
High Cpu Detection This property is required. AwsAnomalies Rds High Cpu Detection Args - no documentation available
- Rds
High Memory Detection This property is required. AwsAnomalies Rds High Memory Detection Args - no documentation available
- Rds
High Write Read Latency Detection This property is required. AwsAnomalies Rds High Write Read Latency Detection Args - no documentation available
- Rds
Low Storage Detection This property is required. AwsAnomalies Rds Low Storage Detection Args - no documentation available
- Rds
Restarts Sequence Detection This property is required. AwsAnomalies Rds Restarts Sequence Detection Args - no documentation available
- ec2Candidate
High Cpu Detection This property is required. AwsAnomalies Ec2Candidate High Cpu Detection - no documentation available
- elb
High Connection Errors Detection This property is required. AwsAnomalies Elb High Connection Errors Detection - no documentation available
- lambda
High Error Rate Detection This property is required. AwsAnomalies Lambda High Error Rate Detection - no documentation available
- rds
High Cpu Detection This property is required. AwsAnomalies Rds High Cpu Detection - no documentation available
- rds
High Memory Detection This property is required. AwsAnomalies Rds High Memory Detection - no documentation available
- rds
High Write Read Latency Detection This property is required. AwsAnomalies Rds High Write Read Latency Detection - no documentation available
- rds
Low Storage Detection This property is required. AwsAnomalies Rds Low Storage Detection - no documentation available
- rds
Restarts Sequence Detection This property is required. AwsAnomalies Rds Restarts Sequence Detection - no documentation available
- ec2Candidate
High Cpu Detection This property is required. AwsAnomalies Ec2Candidate High Cpu Detection - no documentation available
- elb
High Connection Errors Detection This property is required. AwsAnomalies Elb High Connection Errors Detection - no documentation available
- lambda
High Error Rate Detection This property is required. AwsAnomalies Lambda High Error Rate Detection - no documentation available
- rds
High Cpu Detection This property is required. AwsAnomalies Rds High Cpu Detection - no documentation available
- rds
High Memory Detection This property is required. AwsAnomalies Rds High Memory Detection - no documentation available
- rds
High Write Read Latency Detection This property is required. AwsAnomalies Rds High Write Read Latency Detection - no documentation available
- rds
Low Storage Detection This property is required. AwsAnomalies Rds Low Storage Detection - no documentation available
- rds
Restarts Sequence Detection This property is required. AwsAnomalies Rds Restarts Sequence Detection - no documentation available
- ec2_
candidate_ high_ cpu_ detection This property is required. AwsAnomalies Ec2Candidate High Cpu Detection Args - no documentation available
- elb_
high_ connection_ errors_ detection This property is required. AwsAnomalies Elb High Connection Errors Detection Args - no documentation available
- lambda_
high_ error_ rate_ detection This property is required. AwsAnomalies Lambda High Error Rate Detection Args - no documentation available
- rds_
high_ cpu_ detection This property is required. AwsAnomalies Rds High Cpu Detection Args - no documentation available
- rds_
high_ memory_ detection This property is required. AwsAnomalies Rds High Memory Detection Args - no documentation available
- rds_
high_ write_ read_ latency_ detection This property is required. AwsAnomalies Rds High Write Read Latency Detection Args - no documentation available
- rds_
low_ storage_ detection This property is required. AwsAnomalies Rds Low Storage Detection Args - no documentation available
- rds_
restarts_ sequence_ detection This property is required. AwsAnomalies Rds Restarts Sequence Detection Args - no documentation available
- ec2Candidate
High Cpu Detection This property is required. Property Map - no documentation available
- elb
High Connection Errors Detection This property is required. Property Map - no documentation available
- lambda
High Error Rate Detection This property is required. Property Map - no documentation available
- rds
High Cpu Detection This property is required. Property Map - no documentation available
- rds
High Memory Detection This property is required. Property Map - no documentation available
- rds
High Write Read Latency Detection This property is required. Property Map - no documentation available
- rds
Low Storage Detection This property is required. Property Map - no documentation available
- rds
Restarts Sequence Detection This property is required. Property Map - no documentation available
Outputs
All input properties are implicitly available as output properties. Additionally, the AwsAnomalies 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 AwsAnomalies Resource
Get an existing AwsAnomalies 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?: AwsAnomaliesState, opts?: CustomResourceOptions): AwsAnomalies
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ec2_candidate_high_cpu_detection: Optional[AwsAnomaliesEc2CandidateHighCpuDetectionArgs] = None,
elb_high_connection_errors_detection: Optional[AwsAnomaliesElbHighConnectionErrorsDetectionArgs] = None,
lambda_high_error_rate_detection: Optional[AwsAnomaliesLambdaHighErrorRateDetectionArgs] = None,
rds_high_cpu_detection: Optional[AwsAnomaliesRdsHighCpuDetectionArgs] = None,
rds_high_memory_detection: Optional[AwsAnomaliesRdsHighMemoryDetectionArgs] = None,
rds_high_write_read_latency_detection: Optional[AwsAnomaliesRdsHighWriteReadLatencyDetectionArgs] = None,
rds_low_storage_detection: Optional[AwsAnomaliesRdsLowStorageDetectionArgs] = None,
rds_restarts_sequence_detection: Optional[AwsAnomaliesRdsRestartsSequenceDetectionArgs] = None) -> AwsAnomalies
func GetAwsAnomalies(ctx *Context, name string, id IDInput, state *AwsAnomaliesState, opts ...ResourceOption) (*AwsAnomalies, error)
public static AwsAnomalies Get(string name, Input<string> id, AwsAnomaliesState? state, CustomResourceOptions? opts = null)
public static AwsAnomalies get(String name, Output<String> id, AwsAnomaliesState state, CustomResourceOptions options)
resources: _: type: dynatrace:AwsAnomalies get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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.
- Ec2Candidate
High Pulumiverse.Cpu Detection Dynatrace. Inputs. Aws Anomalies Ec2Candidate High Cpu Detection - no documentation available
- Elb
High Pulumiverse.Connection Errors Detection Dynatrace. Inputs. Aws Anomalies Elb High Connection Errors Detection - no documentation available
- Lambda
High Pulumiverse.Error Rate Detection Dynatrace. Inputs. Aws Anomalies Lambda High Error Rate Detection - no documentation available
- Rds
High Pulumiverse.Cpu Detection Dynatrace. Inputs. Aws Anomalies Rds High Cpu Detection - no documentation available
- Rds
High Pulumiverse.Memory Detection Dynatrace. Inputs. Aws Anomalies Rds High Memory Detection - no documentation available
- Rds
High Pulumiverse.Write Read Latency Detection Dynatrace. Inputs. Aws Anomalies Rds High Write Read Latency Detection - no documentation available
- Rds
Low Pulumiverse.Storage Detection Dynatrace. Inputs. Aws Anomalies Rds Low Storage Detection - no documentation available
- Rds
Restarts Pulumiverse.Sequence Detection Dynatrace. Inputs. Aws Anomalies Rds Restarts Sequence Detection - no documentation available
- Ec2Candidate
High AwsCpu Detection Anomalies Ec2Candidate High Cpu Detection Args - no documentation available
- Elb
High AwsConnection Errors Detection Anomalies Elb High Connection Errors Detection Args - no documentation available
- Lambda
High AwsError Rate Detection Anomalies Lambda High Error Rate Detection Args - no documentation available
- Rds
High AwsCpu Detection Anomalies Rds High Cpu Detection Args - no documentation available
- Rds
High AwsMemory Detection Anomalies Rds High Memory Detection Args - no documentation available
- Rds
High AwsWrite Read Latency Detection Anomalies Rds High Write Read Latency Detection Args - no documentation available
- Rds
Low AwsStorage Detection Anomalies Rds Low Storage Detection Args - no documentation available
- Rds
Restarts AwsSequence Detection Anomalies Rds Restarts Sequence Detection Args - no documentation available
- ec2Candidate
High AwsCpu Detection Anomalies Ec2Candidate High Cpu Detection - no documentation available
- elb
High AwsConnection Errors Detection Anomalies Elb High Connection Errors Detection - no documentation available
- lambda
High AwsError Rate Detection Anomalies Lambda High Error Rate Detection - no documentation available
- rds
High AwsCpu Detection Anomalies Rds High Cpu Detection - no documentation available
- rds
High AwsMemory Detection Anomalies Rds High Memory Detection - no documentation available
- rds
High AwsWrite Read Latency Detection Anomalies Rds High Write Read Latency Detection - no documentation available
- rds
Low AwsStorage Detection Anomalies Rds Low Storage Detection - no documentation available
- rds
Restarts AwsSequence Detection Anomalies Rds Restarts Sequence Detection - no documentation available
- ec2Candidate
High AwsCpu Detection Anomalies Ec2Candidate High Cpu Detection - no documentation available
- elb
High AwsConnection Errors Detection Anomalies Elb High Connection Errors Detection - no documentation available
- lambda
High AwsError Rate Detection Anomalies Lambda High Error Rate Detection - no documentation available
- rds
High AwsCpu Detection Anomalies Rds High Cpu Detection - no documentation available
- rds
High AwsMemory Detection Anomalies Rds High Memory Detection - no documentation available
- rds
High AwsWrite Read Latency Detection Anomalies Rds High Write Read Latency Detection - no documentation available
- rds
Low AwsStorage Detection Anomalies Rds Low Storage Detection - no documentation available
- rds
Restarts AwsSequence Detection Anomalies Rds Restarts Sequence Detection - no documentation available
- ec2_
candidate_ Awshigh_ cpu_ detection Anomalies Ec2Candidate High Cpu Detection Args - no documentation available
- elb_
high_ Awsconnection_ errors_ detection Anomalies Elb High Connection Errors Detection Args - no documentation available
- lambda_
high_ Awserror_ rate_ detection Anomalies Lambda High Error Rate Detection Args - no documentation available
- rds_
high_ Awscpu_ detection Anomalies Rds High Cpu Detection Args - no documentation available
- rds_
high_ Awsmemory_ detection Anomalies Rds High Memory Detection Args - no documentation available
- rds_
high_ Awswrite_ read_ latency_ detection Anomalies Rds High Write Read Latency Detection Args - no documentation available
- rds_
low_ Awsstorage_ detection Anomalies Rds Low Storage Detection Args - no documentation available
- rds_
restarts_ Awssequence_ detection Anomalies Rds Restarts Sequence Detection Args - no documentation available
- ec2Candidate
High Property MapCpu Detection - no documentation available
- elb
High Property MapConnection Errors Detection - no documentation available
- lambda
High Property MapError Rate Detection - no documentation available
- rds
High Property MapCpu Detection - no documentation available
- rds
High Property MapMemory Detection - no documentation available
- rds
High Property MapWrite Read Latency Detection - no documentation available
- rds
Low Property MapStorage Detection - no documentation available
- rds
Restarts Property MapSequence Detection - no documentation available
Supporting Types
AwsAnomaliesEc2CandidateHighCpuDetection, AwsAnomaliesEc2CandidateHighCpuDetectionArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Aws Anomalies Ec2Candidate High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds AwsAnomalies Ec2Candidate High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Ec2Candidate High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Ec2Candidate High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - custom_
thresholds AwsAnomalies Ec2Candidate High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
AwsAnomaliesEc2CandidateHighCpuDetectionCustomThresholds, AwsAnomaliesEc2CandidateHighCpuDetectionCustomThresholdsArgs
- Cpu
Usage This property is required. double - CPU usage is higher than
- Cpu
Usage This property is required. float64 - CPU usage is higher than
- cpu
Usage This property is required. Double - CPU usage is higher than
- cpu
Usage This property is required. number - CPU usage is higher than
- cpu_
usage This property is required. float - CPU usage is higher than
- cpu
Usage This property is required. Number - CPU usage is higher than
AwsAnomaliesElbHighConnectionErrorsDetection, AwsAnomaliesElbHighConnectionErrorsDetectionArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Aws Anomalies Elb High Connection Errors Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds AwsAnomalies Elb High Connection Errors Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Elb High Connection Errors Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Elb High Connection Errors Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - custom_
thresholds AwsAnomalies Elb High Connection Errors Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
AwsAnomaliesElbHighConnectionErrorsDetectionCustomThresholds, AwsAnomaliesElbHighConnectionErrorsDetectionCustomThresholdsArgs
- Connection
Errors Per Minute This property is required. int - Number of backend connection errors is higher than
- Connection
Errors Per Minute This property is required. int - Number of backend connection errors is higher than
- connection
Errors Per Minute This property is required. Integer - Number of backend connection errors is higher than
- connection
Errors Per Minute This property is required. number - Number of backend connection errors is higher than
- connection_
errors_ per_ minute This property is required. int - Number of backend connection errors is higher than
- connection
Errors Per Minute This property is required. Number - Number of backend connection errors is higher than
AwsAnomaliesLambdaHighErrorRateDetection, AwsAnomaliesLambdaHighErrorRateDetectionArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Aws Anomalies Lambda High Error Rate Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds AwsAnomalies Lambda High Error Rate Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Lambda High Error Rate Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Lambda High Error Rate Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - custom_
thresholds AwsAnomalies Lambda High Error Rate Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
AwsAnomaliesLambdaHighErrorRateDetectionCustomThresholds, AwsAnomaliesLambdaHighErrorRateDetectionCustomThresholdsArgs
- Failed
Invocations Rate This property is required. int - Failed invocations rate is higher than
- Failed
Invocations Rate This property is required. int - Failed invocations rate is higher than
- failed
Invocations Rate This property is required. Integer - Failed invocations rate is higher than
- failed
Invocations Rate This property is required. number - Failed invocations rate is higher than
- failed_
invocations_ rate This property is required. int - Failed invocations rate is higher than
- failed
Invocations Rate This property is required. Number - Failed invocations rate is higher than
AwsAnomaliesRdsHighCpuDetection, AwsAnomaliesRdsHighCpuDetectionArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds AwsAnomalies Rds High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - custom_
thresholds AwsAnomalies Rds High Cpu Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
AwsAnomaliesRdsHighCpuDetectionCustomThresholds, AwsAnomaliesRdsHighCpuDetectionCustomThresholdsArgs
- Cpu
Usage This property is required. double - CPU usage is higher than
- Cpu
Usage This property is required. float64 - CPU usage is higher than
- cpu
Usage This property is required. Double - CPU usage is higher than
- cpu
Usage This property is required. number - CPU usage is higher than
- cpu_
usage This property is required. float - CPU usage is higher than
- cpu
Usage This property is required. Number - CPU usage is higher than
AwsAnomaliesRdsHighMemoryDetection, AwsAnomaliesRdsHighMemoryDetectionArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds High Memory Detection Custom Thresholds - Alert if both conditions is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds AwsAnomalies Rds High Memory Detection Custom Thresholds - Alert if both conditions is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds High Memory Detection Custom Thresholds - Alert if both conditions is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds High Memory Detection Custom Thresholds - Alert if both conditions is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - custom_
thresholds AwsAnomalies Rds High Memory Detection Custom Thresholds - Alert if both conditions is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if both conditions is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
AwsAnomaliesRdsHighMemoryDetectionCustomThresholds, AwsAnomaliesRdsHighMemoryDetectionCustomThresholdsArgs
- Free
Memory This property is required. double - Freeable memory is lower than
- Swap
Usage This property is required. double - Swap usage is higher than
- Free
Memory This property is required. float64 - Freeable memory is lower than
- Swap
Usage This property is required. float64 - Swap usage is higher than
- free
Memory This property is required. Double - Freeable memory is lower than
- swap
Usage This property is required. Double - Swap usage is higher than
- free
Memory This property is required. number - Freeable memory is lower than
- swap
Usage This property is required. number - Swap usage is higher than
- free_
memory This property is required. float - Freeable memory is lower than
- swap_
usage This property is required. float - Swap usage is higher than
- free
Memory This property is required. Number - Freeable memory is lower than
- swap
Usage This property is required. Number - Swap usage is higher than
AwsAnomaliesRdsHighWriteReadLatencyDetection, AwsAnomaliesRdsHighWriteReadLatencyDetectionArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds High Write Read Latency Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds AwsAnomalies Rds High Write Read Latency Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds High Write Read Latency Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds High Write Read Latency Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - custom_
thresholds AwsAnomalies Rds High Write Read Latency Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
AwsAnomaliesRdsHighWriteReadLatencyDetectionCustomThresholds, AwsAnomaliesRdsHighWriteReadLatencyDetectionCustomThresholdsArgs
- Read
Write Latency This property is required. int - Read/write latency is higher than
- Read
Write Latency This property is required. int - Read/write latency is higher than
- read
Write Latency This property is required. Integer - Read/write latency is higher than
- read
Write Latency This property is required. number - Read/write latency is higher than
- read_
write_ latency This property is required. int - Read/write latency is higher than
- read
Write Latency This property is required. Number - Read/write latency is higher than
AwsAnomaliesRdsLowStorageDetection, AwsAnomaliesRdsLowStorageDetectionArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds Low Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds AwsAnomalies Rds Low Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds Low Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds Low Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - custom_
thresholds AwsAnomalies Rds Low Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
AwsAnomaliesRdsLowStorageDetectionCustomThresholds, AwsAnomaliesRdsLowStorageDetectionCustomThresholdsArgs
- Free
Storage Percentage This property is required. int - Free storage space divided by allocated storage is lower than
- Free
Storage Percentage This property is required. int - Free storage space divided by allocated storage is lower than
- free
Storage Percentage This property is required. Integer - Free storage space divided by allocated storage is lower than
- free
Storage Percentage This property is required. number - Free storage space divided by allocated storage is lower than
- free_
storage_ percentage This property is required. int - Free storage space divided by allocated storage is lower than
- free
Storage Percentage This property is required. Number - Free storage space divided by allocated storage is lower than
AwsAnomaliesRdsRestartsSequenceDetection, AwsAnomaliesRdsRestartsSequenceDetectionArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Aws Anomalies Rds Restarts Sequence Detection Custom Thresholds - Alert if the condition is met in 2 out of 20 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds AwsAnomalies Rds Restarts Sequence Detection Custom Thresholds - Alert if the condition is met in 2 out of 20 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds Restarts Sequence Detection Custom Thresholds - Alert if the condition is met in 2 out of 20 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds AwsAnomalies Rds Restarts Sequence Detection Custom Thresholds - Alert if the condition is met in 2 out of 20 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - custom_
thresholds AwsAnomalies Rds Restarts Sequence Detection Custom Thresholds - Alert if the condition is met in 2 out of 20 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 2 out of 20 samples
- detection
Mode String - Possible Values:
Auto
,Custom
AwsAnomaliesRdsRestartsSequenceDetectionCustomThresholds, AwsAnomaliesRdsRestartsSequenceDetectionCustomThresholdsArgs
- Restarts
Per Minute This property is required. int - Number of restarts per minute is equal or higher than
- Restarts
Per Minute This property is required. int - Number of restarts per minute is equal or higher than
- restarts
Per Minute This property is required. Integer - Number of restarts per minute is equal or higher than
- restarts
Per Minute This property is required. number - Number of restarts per minute is equal or higher than
- restarts_
per_ minute This property is required. int - Number of restarts per minute is equal or higher than
- restarts
Per Minute This property is required. Number - Number of restarts per minute is equal or higher than
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.