com.microsoft.azure.management.monitor.ActivityLogAlertPatchBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-monitor Show documentation
Show all versions of azure-mgmt-monitor Show documentation
This package contains Microsoft Azure Monitor SDK. This package has been deprecated. A replacement package com.azure.resourcemanager:azure-resourcemanager-monitor is available as of 31-March-2022. We strongly encourage you to upgrade to continue receiving updates. See Migration Guide https://aka.ms/java-track2-migration-guide for guidance on upgrading. Refer to our deprecation policy https://azure.github.io/azure-sdk/policies_support.html for more details.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.monitor;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
/**
* An activity log alert object for the body of patch operations.
*/
@JsonFlatten
public class ActivityLogAlertPatchBody {
/**
* Resource tags.
*/
@JsonProperty(value = "tags")
private Map tags;
/**
* Indicates whether this activity log alert is enabled. If an activity log
* alert is not enabled, then none of its actions will be activated.
*/
@JsonProperty(value = "properties.enabled")
private Boolean enabled;
/**
* Get resource tags.
*
* @return the tags value
*/
public Map tags() {
return this.tags;
}
/**
* Set resource tags.
*
* @param tags the tags value to set
* @return the ActivityLogAlertPatchBody object itself.
*/
public ActivityLogAlertPatchBody withTags(Map tags) {
this.tags = tags;
return this;
}
/**
* Get indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated.
*
* @return the enabled value
*/
public Boolean enabled() {
return this.enabled;
}
/**
* Set indicates whether this activity log alert is enabled. If an activity log alert is not enabled, then none of its actions will be activated.
*
* @param enabled the enabled value to set
* @return the ActivityLogAlertPatchBody object itself.
*/
public ActivityLogAlertPatchBody withEnabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
}