Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.monitor; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.monitor.implementation.MonitorManager; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasManager;
Entry point to Alert Rules management API.
/** * Entry point to Alert Rules management API. */
@Fluent public interface AlertRules extends HasManager<MonitorManager> {
Returns:the Azure Metric Alerts API entry point
/** * @return the Azure Metric Alerts API entry point */
MetricAlerts metricAlerts();
Returns:the Azure Activity Log Alerts API entry point
/** * @return the Azure Activity Log Alerts API entry point */
ActivityLogAlerts activityLogAlerts(); }