All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.appservice.inputs.WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs extends com.pulumi.resources.ResourceArgs {

    public static final WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs Empty = new WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs();

    /**
     * The number of Slow Requests in the time `interval` to trigger this rule.
     * 
     */
    @Import(name="count", required=true)
    private Output count;

    /**
     * @return The number of Slow Requests in the time `interval` to trigger this rule.
     * 
     */
    public Output count() {
        return this.count;
    }

    /**
     * The time interval in the form `hh:mm:ss`.
     * 
     */
    @Import(name="interval", required=true)
    private Output interval;

    /**
     * @return The time interval in the form `hh:mm:ss`.
     * 
     */
    public Output interval() {
        return this.interval;
    }

    /**
     * The path for which this slow request rule applies.
     * 
     */
    @Import(name="path")
    private @Nullable Output path;

    /**
     * @return The path for which this slow request rule applies.
     * 
     */
    public Optional> path() {
        return Optional.ofNullable(this.path);
    }

    /**
     * The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
     * 
     */
    @Import(name="timeTaken", required=true)
    private Output timeTaken;

    /**
     * @return The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
     * 
     */
    public Output timeTaken() {
        return this.timeTaken;
    }

    private WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs() {}

    private WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs(WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs $) {
        this.count = $.count;
        this.interval = $.interval;
        this.path = $.path;
        this.timeTaken = $.timeTaken;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs $;

        public Builder() {
            $ = new WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs();
        }

        public Builder(WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs defaults) {
            $ = new WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param count The number of Slow Requests in the time `interval` to trigger this rule.
         * 
         * @return builder
         * 
         */
        public Builder count(Output count) {
            $.count = count;
            return this;
        }

        /**
         * @param count The number of Slow Requests in the time `interval` to trigger this rule.
         * 
         * @return builder
         * 
         */
        public Builder count(Integer count) {
            return count(Output.of(count));
        }

        /**
         * @param interval The time interval in the form `hh:mm:ss`.
         * 
         * @return builder
         * 
         */
        public Builder interval(Output interval) {
            $.interval = interval;
            return this;
        }

        /**
         * @param interval The time interval in the form `hh:mm:ss`.
         * 
         * @return builder
         * 
         */
        public Builder interval(String interval) {
            return interval(Output.of(interval));
        }

        /**
         * @param path The path for which this slow request rule applies.
         * 
         * @return builder
         * 
         */
        public Builder path(@Nullable Output path) {
            $.path = path;
            return this;
        }

        /**
         * @param path The path for which this slow request rule applies.
         * 
         * @return builder
         * 
         */
        public Builder path(String path) {
            return path(Output.of(path));
        }

        /**
         * @param timeTaken The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
         * 
         * @return builder
         * 
         */
        public Builder timeTaken(Output timeTaken) {
            $.timeTaken = timeTaken;
            return this;
        }

        /**
         * @param timeTaken The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
         * 
         * @return builder
         * 
         */
        public Builder timeTaken(String timeTaken) {
            return timeTaken(Output.of(timeTaken));
        }

        public WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs build() {
            if ($.count == null) {
                throw new MissingRequiredPropertyException("WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs", "count");
            }
            if ($.interval == null) {
                throw new MissingRequiredPropertyException("WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs", "interval");
            }
            if ($.timeTaken == null) {
                throw new MissingRequiredPropertyException("WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPathArgs", "timeTaken");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy