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

com.azure.resourcemanager.costmanagement.models.AlertPropertiesDetails Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for CostManagement Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. CostManagement management client provides access to CostManagement resources for Azure Enterprise Subscriptions. Package tag package-2022-10.

There is a newer version: 1.0.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.costmanagement.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.math.BigDecimal;
import java.util.List;

/** Alert details. */
@Fluent
public final class AlertPropertiesDetails {
    /*
     * Type of timegrain cadence
     */
    @JsonProperty(value = "timeGrainType")
    private AlertTimeGrainType timeGrainType;

    /*
     * datetime of periodStartDate
     */
    @JsonProperty(value = "periodStartDate")
    private String periodStartDate;

    /*
     * notificationId that triggered this alert
     */
    @JsonProperty(value = "triggeredBy")
    private String triggeredBy;

    /*
     * array of resourceGroups to filter by
     */
    @JsonProperty(value = "resourceGroupFilter")
    private List resourceGroupFilter;

    /*
     * array of resources to filter by
     */
    @JsonProperty(value = "resourceFilter")
    private List resourceFilter;

    /*
     * array of meters to filter by
     */
    @JsonProperty(value = "meterFilter")
    private List meterFilter;

    /*
     * tags to filter by
     */
    @JsonProperty(value = "tagFilter")
    private Object tagFilter;

    /*
     * notification threshold percentage as a decimal which activated this alert
     */
    @JsonProperty(value = "threshold")
    private BigDecimal threshold;

    /*
     * operator used to compare currentSpend with amount
     */
    @JsonProperty(value = "operator")
    private AlertOperator operator;

    /*
     * budget threshold amount
     */
    @JsonProperty(value = "amount")
    private BigDecimal amount;

    /*
     * unit of currency being used
     */
    @JsonProperty(value = "unit")
    private String unit;

    /*
     * current spend
     */
    @JsonProperty(value = "currentSpend")
    private BigDecimal currentSpend;

    /*
     * list of emails to contact
     */
    @JsonProperty(value = "contactEmails")
    private List contactEmails;

    /*
     * list of action groups to broadcast to
     */
    @JsonProperty(value = "contactGroups")
    private List contactGroups;

    /*
     * list of contact roles
     */
    @JsonProperty(value = "contactRoles")
    private List contactRoles;

    /*
     * overriding alert
     */
    @JsonProperty(value = "overridingAlert")
    private String overridingAlert;

    /*
     * department name
     */
    @JsonProperty(value = "departmentName")
    private String departmentName;

    /*
     * company name
     */
    @JsonProperty(value = "companyName")
    private String companyName;

    /*
     * enrollment number
     */
    @JsonProperty(value = "enrollmentNumber")
    private String enrollmentNumber;

    /*
     * datetime of enrollmentStartDate
     */
    @JsonProperty(value = "enrollmentStartDate")
    private String enrollmentStartDate;

    /*
     * datetime of enrollmentEndDate
     */
    @JsonProperty(value = "enrollmentEndDate")
    private String enrollmentEndDate;

    /*
     * invoicing threshold
     */
    @JsonProperty(value = "invoicingThreshold")
    private BigDecimal invoicingThreshold;

    /** Creates an instance of AlertPropertiesDetails class. */
    public AlertPropertiesDetails() {
    }

    /**
     * Get the timeGrainType property: Type of timegrain cadence.
     *
     * @return the timeGrainType value.
     */
    public AlertTimeGrainType timeGrainType() {
        return this.timeGrainType;
    }

    /**
     * Set the timeGrainType property: Type of timegrain cadence.
     *
     * @param timeGrainType the timeGrainType value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withTimeGrainType(AlertTimeGrainType timeGrainType) {
        this.timeGrainType = timeGrainType;
        return this;
    }

    /**
     * Get the periodStartDate property: datetime of periodStartDate.
     *
     * @return the periodStartDate value.
     */
    public String periodStartDate() {
        return this.periodStartDate;
    }

    /**
     * Set the periodStartDate property: datetime of periodStartDate.
     *
     * @param periodStartDate the periodStartDate value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withPeriodStartDate(String periodStartDate) {
        this.periodStartDate = periodStartDate;
        return this;
    }

    /**
     * Get the triggeredBy property: notificationId that triggered this alert.
     *
     * @return the triggeredBy value.
     */
    public String triggeredBy() {
        return this.triggeredBy;
    }

    /**
     * Set the triggeredBy property: notificationId that triggered this alert.
     *
     * @param triggeredBy the triggeredBy value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withTriggeredBy(String triggeredBy) {
        this.triggeredBy = triggeredBy;
        return this;
    }

    /**
     * Get the resourceGroupFilter property: array of resourceGroups to filter by.
     *
     * @return the resourceGroupFilter value.
     */
    public List resourceGroupFilter() {
        return this.resourceGroupFilter;
    }

    /**
     * Set the resourceGroupFilter property: array of resourceGroups to filter by.
     *
     * @param resourceGroupFilter the resourceGroupFilter value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withResourceGroupFilter(List resourceGroupFilter) {
        this.resourceGroupFilter = resourceGroupFilter;
        return this;
    }

    /**
     * Get the resourceFilter property: array of resources to filter by.
     *
     * @return the resourceFilter value.
     */
    public List resourceFilter() {
        return this.resourceFilter;
    }

    /**
     * Set the resourceFilter property: array of resources to filter by.
     *
     * @param resourceFilter the resourceFilter value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withResourceFilter(List resourceFilter) {
        this.resourceFilter = resourceFilter;
        return this;
    }

    /**
     * Get the meterFilter property: array of meters to filter by.
     *
     * @return the meterFilter value.
     */
    public List meterFilter() {
        return this.meterFilter;
    }

    /**
     * Set the meterFilter property: array of meters to filter by.
     *
     * @param meterFilter the meterFilter value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withMeterFilter(List meterFilter) {
        this.meterFilter = meterFilter;
        return this;
    }

    /**
     * Get the tagFilter property: tags to filter by.
     *
     * @return the tagFilter value.
     */
    public Object tagFilter() {
        return this.tagFilter;
    }

    /**
     * Set the tagFilter property: tags to filter by.
     *
     * @param tagFilter the tagFilter value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withTagFilter(Object tagFilter) {
        this.tagFilter = tagFilter;
        return this;
    }

    /**
     * Get the threshold property: notification threshold percentage as a decimal which activated this alert.
     *
     * @return the threshold value.
     */
    public BigDecimal threshold() {
        return this.threshold;
    }

    /**
     * Set the threshold property: notification threshold percentage as a decimal which activated this alert.
     *
     * @param threshold the threshold value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withThreshold(BigDecimal threshold) {
        this.threshold = threshold;
        return this;
    }

    /**
     * Get the operator property: operator used to compare currentSpend with amount.
     *
     * @return the operator value.
     */
    public AlertOperator operator() {
        return this.operator;
    }

    /**
     * Set the operator property: operator used to compare currentSpend with amount.
     *
     * @param operator the operator value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withOperator(AlertOperator operator) {
        this.operator = operator;
        return this;
    }

    /**
     * Get the amount property: budget threshold amount.
     *
     * @return the amount value.
     */
    public BigDecimal amount() {
        return this.amount;
    }

    /**
     * Set the amount property: budget threshold amount.
     *
     * @param amount the amount value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withAmount(BigDecimal amount) {
        this.amount = amount;
        return this;
    }

    /**
     * Get the unit property: unit of currency being used.
     *
     * @return the unit value.
     */
    public String unit() {
        return this.unit;
    }

    /**
     * Set the unit property: unit of currency being used.
     *
     * @param unit the unit value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withUnit(String unit) {
        this.unit = unit;
        return this;
    }

    /**
     * Get the currentSpend property: current spend.
     *
     * @return the currentSpend value.
     */
    public BigDecimal currentSpend() {
        return this.currentSpend;
    }

    /**
     * Set the currentSpend property: current spend.
     *
     * @param currentSpend the currentSpend value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withCurrentSpend(BigDecimal currentSpend) {
        this.currentSpend = currentSpend;
        return this;
    }

    /**
     * Get the contactEmails property: list of emails to contact.
     *
     * @return the contactEmails value.
     */
    public List contactEmails() {
        return this.contactEmails;
    }

    /**
     * Set the contactEmails property: list of emails to contact.
     *
     * @param contactEmails the contactEmails value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withContactEmails(List contactEmails) {
        this.contactEmails = contactEmails;
        return this;
    }

    /**
     * Get the contactGroups property: list of action groups to broadcast to.
     *
     * @return the contactGroups value.
     */
    public List contactGroups() {
        return this.contactGroups;
    }

    /**
     * Set the contactGroups property: list of action groups to broadcast to.
     *
     * @param contactGroups the contactGroups value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withContactGroups(List contactGroups) {
        this.contactGroups = contactGroups;
        return this;
    }

    /**
     * Get the contactRoles property: list of contact roles.
     *
     * @return the contactRoles value.
     */
    public List contactRoles() {
        return this.contactRoles;
    }

    /**
     * Set the contactRoles property: list of contact roles.
     *
     * @param contactRoles the contactRoles value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withContactRoles(List contactRoles) {
        this.contactRoles = contactRoles;
        return this;
    }

    /**
     * Get the overridingAlert property: overriding alert.
     *
     * @return the overridingAlert value.
     */
    public String overridingAlert() {
        return this.overridingAlert;
    }

    /**
     * Set the overridingAlert property: overriding alert.
     *
     * @param overridingAlert the overridingAlert value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withOverridingAlert(String overridingAlert) {
        this.overridingAlert = overridingAlert;
        return this;
    }

    /**
     * Get the departmentName property: department name.
     *
     * @return the departmentName value.
     */
    public String departmentName() {
        return this.departmentName;
    }

    /**
     * Set the departmentName property: department name.
     *
     * @param departmentName the departmentName value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withDepartmentName(String departmentName) {
        this.departmentName = departmentName;
        return this;
    }

    /**
     * Get the companyName property: company name.
     *
     * @return the companyName value.
     */
    public String companyName() {
        return this.companyName;
    }

    /**
     * Set the companyName property: company name.
     *
     * @param companyName the companyName value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withCompanyName(String companyName) {
        this.companyName = companyName;
        return this;
    }

    /**
     * Get the enrollmentNumber property: enrollment number.
     *
     * @return the enrollmentNumber value.
     */
    public String enrollmentNumber() {
        return this.enrollmentNumber;
    }

    /**
     * Set the enrollmentNumber property: enrollment number.
     *
     * @param enrollmentNumber the enrollmentNumber value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withEnrollmentNumber(String enrollmentNumber) {
        this.enrollmentNumber = enrollmentNumber;
        return this;
    }

    /**
     * Get the enrollmentStartDate property: datetime of enrollmentStartDate.
     *
     * @return the enrollmentStartDate value.
     */
    public String enrollmentStartDate() {
        return this.enrollmentStartDate;
    }

    /**
     * Set the enrollmentStartDate property: datetime of enrollmentStartDate.
     *
     * @param enrollmentStartDate the enrollmentStartDate value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withEnrollmentStartDate(String enrollmentStartDate) {
        this.enrollmentStartDate = enrollmentStartDate;
        return this;
    }

    /**
     * Get the enrollmentEndDate property: datetime of enrollmentEndDate.
     *
     * @return the enrollmentEndDate value.
     */
    public String enrollmentEndDate() {
        return this.enrollmentEndDate;
    }

    /**
     * Set the enrollmentEndDate property: datetime of enrollmentEndDate.
     *
     * @param enrollmentEndDate the enrollmentEndDate value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withEnrollmentEndDate(String enrollmentEndDate) {
        this.enrollmentEndDate = enrollmentEndDate;
        return this;
    }

    /**
     * Get the invoicingThreshold property: invoicing threshold.
     *
     * @return the invoicingThreshold value.
     */
    public BigDecimal invoicingThreshold() {
        return this.invoicingThreshold;
    }

    /**
     * Set the invoicingThreshold property: invoicing threshold.
     *
     * @param invoicingThreshold the invoicingThreshold value to set.
     * @return the AlertPropertiesDetails object itself.
     */
    public AlertPropertiesDetails withInvoicingThreshold(BigDecimal invoicingThreshold) {
        this.invoicingThreshold = invoicingThreshold;
        return this;
    }

    /**
     * Validates the instance.
     *
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
    }
}