com.pulumi.azure.appservice.outputs.GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.appservice.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath {
/**
* @return The number of occurrences of the defined `status_code` in the specified `interval` on which to trigger this rule.
*
*/
private Integer count;
/**
* @return The time interval in the form `hh:mm:ss`.
*
*/
private String interval;
/**
* @return The path to which this rule status code applies.
*
*/
private String path;
/**
* @return (Required) The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
*
*/
private String timeTaken;
private GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath() {}
/**
* @return The number of occurrences of the defined `status_code` in the specified `interval` on which to trigger this rule.
*
*/
public Integer count() {
return this.count;
}
/**
* @return The time interval in the form `hh:mm:ss`.
*
*/
public String interval() {
return this.interval;
}
/**
* @return The path to which this rule status code applies.
*
*/
public String path() {
return this.path;
}
/**
* @return (Required) The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
*
*/
public String timeTaken() {
return this.timeTaken;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Integer count;
private String interval;
private String path;
private String timeTaken;
public Builder() {}
public Builder(GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath defaults) {
Objects.requireNonNull(defaults);
this.count = defaults.count;
this.interval = defaults.interval;
this.path = defaults.path;
this.timeTaken = defaults.timeTaken;
}
@CustomType.Setter
public Builder count(Integer count) {
if (count == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath", "count");
}
this.count = count;
return this;
}
@CustomType.Setter
public Builder interval(String interval) {
if (interval == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath", "interval");
}
this.interval = interval;
return this;
}
@CustomType.Setter
public Builder path(String path) {
if (path == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath", "path");
}
this.path = path;
return this;
}
@CustomType.Setter
public Builder timeTaken(String timeTaken) {
if (timeTaken == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath", "timeTaken");
}
this.timeTaken = timeTaken;
return this;
}
public GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath build() {
final var _resultValue = new GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath();
_resultValue.count = count;
_resultValue.interval = interval;
_resultValue.path = path;
_resultValue.timeTaken = timeTaken;
return _resultValue;
}
}
}