com.pulumi.azure.appservice.outputs.GetWindowsWebAppSiteConfigAutoHealSetting 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.azure.appservice.outputs.GetWindowsWebAppSiteConfigAutoHealSettingAction;
import com.pulumi.azure.appservice.outputs.GetWindowsWebAppSiteConfigAutoHealSettingTrigger;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetWindowsWebAppSiteConfigAutoHealSetting {
/**
* @return A `action` block as defined above.
*
*/
private List actions;
/**
* @return A `trigger` block as defined below.
*
*/
private List triggers;
private GetWindowsWebAppSiteConfigAutoHealSetting() {}
/**
* @return A `action` block as defined above.
*
*/
public List actions() {
return this.actions;
}
/**
* @return A `trigger` block as defined below.
*
*/
public List triggers() {
return this.triggers;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWindowsWebAppSiteConfigAutoHealSetting defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List actions;
private List triggers;
public Builder() {}
public Builder(GetWindowsWebAppSiteConfigAutoHealSetting defaults) {
Objects.requireNonNull(defaults);
this.actions = defaults.actions;
this.triggers = defaults.triggers;
}
@CustomType.Setter
public Builder actions(List actions) {
if (actions == null) {
throw new MissingRequiredPropertyException("GetWindowsWebAppSiteConfigAutoHealSetting", "actions");
}
this.actions = actions;
return this;
}
public Builder actions(GetWindowsWebAppSiteConfigAutoHealSettingAction... actions) {
return actions(List.of(actions));
}
@CustomType.Setter
public Builder triggers(List triggers) {
if (triggers == null) {
throw new MissingRequiredPropertyException("GetWindowsWebAppSiteConfigAutoHealSetting", "triggers");
}
this.triggers = triggers;
return this;
}
public Builder triggers(GetWindowsWebAppSiteConfigAutoHealSettingTrigger... triggers) {
return triggers(List.of(triggers));
}
public GetWindowsWebAppSiteConfigAutoHealSetting build() {
final var _resultValue = new GetWindowsWebAppSiteConfigAutoHealSetting();
_resultValue.actions = actions;
_resultValue.triggers = triggers;
return _resultValue;
}
}
}