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.
/** * 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.List; import com.fasterxml.jackson.annotation.JsonProperty;
An Activity Log alert condition that is met when all its member conditions are met.
/** * An Activity Log alert condition that is met when all its member conditions * are met. */
public class ActivityLogAlertAllOfCondition {
The list of activity log alert conditions.
/** * The list of activity log alert conditions. */
@JsonProperty(value = "allOf", required = true) private List<ActivityLogAlertLeafCondition> allOf;
Get the list of activity log alert conditions.
Returns:the allOf value
/** * Get the list of activity log alert conditions. * * @return the allOf value */
public List<ActivityLogAlertLeafCondition> allOf() { return this.allOf; }
Set the list of activity log alert conditions.
Params:
  • allOf – the allOf value to set
Returns:the ActivityLogAlertAllOfCondition object itself.
/** * Set the list of activity log alert conditions. * * @param allOf the allOf value to set * @return the ActivityLogAlertAllOfCondition object itself. */
public ActivityLogAlertAllOfCondition withAllOf(List<ActivityLogAlertLeafCondition> allOf) { this.allOf = allOf; return this; } }