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

com.pulumi.azurenative.recoveryservices.outputs.MonitoringSettingsResponse Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.azurenative.recoveryservices.outputs;

import com.pulumi.azurenative.recoveryservices.outputs.AzureMonitorAlertSettingsResponse;
import com.pulumi.azurenative.recoveryservices.outputs.ClassicAlertSettingsResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class MonitoringSettingsResponse {
    /**
     * @return Settings for Azure Monitor based alerts
     * 
     */
    private @Nullable AzureMonitorAlertSettingsResponse azureMonitorAlertSettings;
    /**
     * @return Settings for classic alerts
     * 
     */
    private @Nullable ClassicAlertSettingsResponse classicAlertSettings;

    private MonitoringSettingsResponse() {}
    /**
     * @return Settings for Azure Monitor based alerts
     * 
     */
    public Optional azureMonitorAlertSettings() {
        return Optional.ofNullable(this.azureMonitorAlertSettings);
    }
    /**
     * @return Settings for classic alerts
     * 
     */
    public Optional classicAlertSettings() {
        return Optional.ofNullable(this.classicAlertSettings);
    }

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

    public static Builder builder(MonitoringSettingsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable AzureMonitorAlertSettingsResponse azureMonitorAlertSettings;
        private @Nullable ClassicAlertSettingsResponse classicAlertSettings;
        public Builder() {}
        public Builder(MonitoringSettingsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.azureMonitorAlertSettings = defaults.azureMonitorAlertSettings;
    	      this.classicAlertSettings = defaults.classicAlertSettings;
        }

        @CustomType.Setter
        public Builder azureMonitorAlertSettings(@Nullable AzureMonitorAlertSettingsResponse azureMonitorAlertSettings) {

            this.azureMonitorAlertSettings = azureMonitorAlertSettings;
            return this;
        }
        @CustomType.Setter
        public Builder classicAlertSettings(@Nullable ClassicAlertSettingsResponse classicAlertSettings) {

            this.classicAlertSettings = classicAlertSettings;
            return this;
        }
        public MonitoringSettingsResponse build() {
            final var _resultValue = new MonitoringSettingsResponse();
            _resultValue.azureMonitorAlertSettings = azureMonitorAlertSettings;
            _resultValue.classicAlertSettings = classicAlertSettings;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy