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

com.huaweicloud.sdk.aom.v2.model.Notifications Maven / Gradle / Ivy

There is a newer version: 3.1.114
Show newest version
package com.huaweicloud.sdk.aom.v2.model;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;

import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.function.Consumer;

/**
 * 发送结果
 */
public class Notifications {

    @JsonInclude(JsonInclude.Include.NON_NULL)
    @JsonProperty(value = "action_rule")

    private String actionRule;

    /**
     * 通知类型。SMN:消息通知服务
     */
    public static final class NotifierChannelEnum {

        /**
         * Enum SMN for value: "SMN"
         */
        public static final NotifierChannelEnum SMN = new NotifierChannelEnum("SMN");

        private static final Map STATIC_FIELDS = createStaticFields();

        private static Map createStaticFields() {
            Map map = new HashMap<>();
            map.put("SMN", SMN);
            return Collections.unmodifiableMap(map);
        }

        private String value;

        NotifierChannelEnum(String value) {
            this.value = value;
        }

        @JsonValue
        public String getValue() {
            return value;
        }

        @Override
        public String toString() {
            return String.valueOf(value);
        }

        @JsonCreator
        public static NotifierChannelEnum fromValue(String value) {
            if (value == null) {
                return null;
            }
            return java.util.Optional.ofNullable(STATIC_FIELDS.get(value)).orElse(new NotifierChannelEnum(value));
        }

        public static NotifierChannelEnum valueOf(String value) {
            if (value == null) {
                return null;
            }
            return java.util.Optional.ofNullable(STATIC_FIELDS.get(value))
                .orElseThrow(() -> new IllegalArgumentException("Unexpected value '" + value + "'"));
        }

        @Override
        public boolean equals(Object obj) {
            if (obj instanceof NotifierChannelEnum) {
                return this.value.equals(((NotifierChannelEnum) obj).value);
            }
            return false;
        }

        @Override
        public int hashCode() {
            return this.value.hashCode();
        }
    }

    @JsonInclude(JsonInclude.Include.NON_NULL)
    @JsonProperty(value = "notifier_channel")

    private NotifierChannelEnum notifierChannel;

    @JsonInclude(JsonInclude.Include.NON_NULL)
    @JsonProperty(value = "smn_channel")

    private SmnResponse smnChannel;

    public Notifications withActionRule(String actionRule) {
        this.actionRule = actionRule;
        return this;
    }

    /**
     * 告警行动规则名称
     * @return actionRule
     */
    public String getActionRule() {
        return actionRule;
    }

    public void setActionRule(String actionRule) {
        this.actionRule = actionRule;
    }

    public Notifications withNotifierChannel(NotifierChannelEnum notifierChannel) {
        this.notifierChannel = notifierChannel;
        return this;
    }

    /**
     * 通知类型。SMN:消息通知服务
     * @return notifierChannel
     */
    public NotifierChannelEnum getNotifierChannel() {
        return notifierChannel;
    }

    public void setNotifierChannel(NotifierChannelEnum notifierChannel) {
        this.notifierChannel = notifierChannel;
    }

    public Notifications withSmnChannel(SmnResponse smnChannel) {
        this.smnChannel = smnChannel;
        return this;
    }

    public Notifications withSmnChannel(Consumer smnChannelSetter) {
        if (this.smnChannel == null) {
            this.smnChannel = new SmnResponse();
            smnChannelSetter.accept(this.smnChannel);
        }

        return this;
    }

    /**
     * Get smnChannel
     * @return smnChannel
     */
    public SmnResponse getSmnChannel() {
        return smnChannel;
    }

    public void setSmnChannel(SmnResponse smnChannel) {
        this.smnChannel = smnChannel;
    }

    @Override
    public boolean equals(java.lang.Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || getClass() != obj.getClass()) {
            return false;
        }
        Notifications that = (Notifications) obj;
        return Objects.equals(this.actionRule, that.actionRule)
            && Objects.equals(this.notifierChannel, that.notifierChannel)
            && Objects.equals(this.smnChannel, that.smnChannel);
    }

    @Override
    public int hashCode() {
        return Objects.hash(actionRule, notifierChannel, smnChannel);
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class Notifications {\n");
        sb.append("    actionRule: ").append(toIndentedString(actionRule)).append("\n");
        sb.append("    notifierChannel: ").append(toIndentedString(notifierChannel)).append("\n");
        sb.append("    smnChannel: ").append(toIndentedString(smnChannel)).append("\n");
        sb.append("}");
        return sb.toString();
    }

    /**
     * Convert the given object to string with each line indented by 4 spaces
     * (except the first line).
     */
    private String toIndentedString(java.lang.Object o) {
        if (o == null) {
            return "null";
        }
        return o.toString().replace("\n", "\n    ");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy