com.pulumi.azure.appservice.outputs.GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode 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 GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode {
/**
* @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 The status code or range for this rule.
*
*/
private String statusCodeRange;
/**
* @return The Request Sub Status of the Status Code.
*
*/
private Integer subStatus;
/**
* @return The Win32 Status Code of the Request.
*
*/
private Integer win32StatusCode;
private GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode() {}
/**
* @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 The status code or range for this rule.
*
*/
public String statusCodeRange() {
return this.statusCodeRange;
}
/**
* @return The Request Sub Status of the Status Code.
*
*/
public Integer subStatus() {
return this.subStatus;
}
/**
* @return The Win32 Status Code of the Request.
*
*/
public Integer win32StatusCode() {
return this.win32StatusCode;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Integer count;
private String interval;
private String path;
private String statusCodeRange;
private Integer subStatus;
private Integer win32StatusCode;
public Builder() {}
public Builder(GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode defaults) {
Objects.requireNonNull(defaults);
this.count = defaults.count;
this.interval = defaults.interval;
this.path = defaults.path;
this.statusCodeRange = defaults.statusCodeRange;
this.subStatus = defaults.subStatus;
this.win32StatusCode = defaults.win32StatusCode;
}
@CustomType.Setter
public Builder count(Integer count) {
if (count == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode", "count");
}
this.count = count;
return this;
}
@CustomType.Setter
public Builder interval(String interval) {
if (interval == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode", "interval");
}
this.interval = interval;
return this;
}
@CustomType.Setter
public Builder path(String path) {
if (path == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode", "path");
}
this.path = path;
return this;
}
@CustomType.Setter
public Builder statusCodeRange(String statusCodeRange) {
if (statusCodeRange == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode", "statusCodeRange");
}
this.statusCodeRange = statusCodeRange;
return this;
}
@CustomType.Setter
public Builder subStatus(Integer subStatus) {
if (subStatus == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode", "subStatus");
}
this.subStatus = subStatus;
return this;
}
@CustomType.Setter
public Builder win32StatusCode(Integer win32StatusCode) {
if (win32StatusCode == null) {
throw new MissingRequiredPropertyException("GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode", "win32StatusCode");
}
this.win32StatusCode = win32StatusCode;
return this;
}
public GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode build() {
final var _resultValue = new GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode();
_resultValue.count = count;
_resultValue.interval = interval;
_resultValue.path = path;
_resultValue.statusCodeRange = statusCodeRange;
_resultValue.subStatus = subStatus;
_resultValue.win32StatusCode = win32StatusCode;
return _resultValue;
}
}
}