com.azure.resourcemanager.monitor.models.ArmRoleReceiver Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.monitor.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonProperty;
/** An arm role receiver. */
@Fluent
public final class ArmRoleReceiver {
/*
* The name of the arm role receiver. Names must be unique across all receivers within an action group.
*/
@JsonProperty(value = "name", required = true)
private String name;
/*
* The arm role id.
*/
@JsonProperty(value = "roleId", required = true)
private String roleId;
/*
* Indicates whether to use common alert schema.
*/
@JsonProperty(value = "useCommonAlertSchema")
private Boolean useCommonAlertSchema;
/** Creates an instance of ArmRoleReceiver class. */
public ArmRoleReceiver() {
}
/**
* Get the name property: The name of the arm role receiver. Names must be unique across all receivers within an
* action group.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the arm role receiver. Names must be unique across all receivers within an
* action group.
*
* @param name the name value to set.
* @return the ArmRoleReceiver object itself.
*/
public ArmRoleReceiver withName(String name) {
this.name = name;
return this;
}
/**
* Get the roleId property: The arm role id.
*
* @return the roleId value.
*/
public String roleId() {
return this.roleId;
}
/**
* Set the roleId property: The arm role id.
*
* @param roleId the roleId value to set.
* @return the ArmRoleReceiver object itself.
*/
public ArmRoleReceiver withRoleId(String roleId) {
this.roleId = roleId;
return this;
}
/**
* Get the useCommonAlertSchema property: Indicates whether to use common alert schema.
*
* @return the useCommonAlertSchema value.
*/
public Boolean useCommonAlertSchema() {
return this.useCommonAlertSchema;
}
/**
* Set the useCommonAlertSchema property: Indicates whether to use common alert schema.
*
* @param useCommonAlertSchema the useCommonAlertSchema value to set.
* @return the ArmRoleReceiver object itself.
*/
public ArmRoleReceiver withUseCommonAlertSchema(Boolean useCommonAlertSchema) {
this.useCommonAlertSchema = useCommonAlertSchema;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (name() == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException("Missing required property name in model ArmRoleReceiver"));
}
if (roleId() == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException("Missing required property roleId in model ArmRoleReceiver"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(ArmRoleReceiver.class);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy