
com.azure.resourcemanager.monitor.models.RuleManagementEventClaimsDataSource 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.fasterxml.jackson.annotation.JsonProperty;
/** The claims for a rule management event data source. */
@Fluent
public final class RuleManagementEventClaimsDataSource {
/*
* the email address.
*/
@JsonProperty(value = "emailAddress")
private String emailAddress;
/** Creates an instance of RuleManagementEventClaimsDataSource class. */
public RuleManagementEventClaimsDataSource() {
}
/**
* Get the emailAddress property: the email address.
*
* @return the emailAddress value.
*/
public String emailAddress() {
return this.emailAddress;
}
/**
* Set the emailAddress property: the email address.
*
* @param emailAddress the emailAddress value to set.
* @return the RuleManagementEventClaimsDataSource object itself.
*/
public RuleManagementEventClaimsDataSource withEmailAddress(String emailAddress) {
this.emailAddress = emailAddress;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy