com.microsoft.azure.management.monitor.DiagnosticSettings 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.
*/
package com.microsoft.azure.management.monitor;
import com.microsoft.azure.PagedList;
import com.microsoft.azure.management.apigeneration.Beta;
import com.microsoft.azure.management.apigeneration.Fluent;
import com.microsoft.azure.management.monitor.implementation.DiagnosticSettingsInner;
import com.microsoft.azure.management.monitor.implementation.MonitorManager;
import com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsBatchDeletion;
import com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingById;
import com.microsoft.azure.management.resources.fluentcore.arm.models.HasManager;
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsBatchCreation;
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsCreating;
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsDeletingById;
import com.microsoft.azure.management.resources.fluentcore.model.HasInner;
import com.microsoft.rest.ServiceCallback;
import com.microsoft.rest.ServiceFuture;
import rx.Completable;
import rx.Observable;
import java.util.List;
/**
* Entry point for diagnostic settings management API.
*/
@Beta(Beta.SinceVersion.V1_8_0)
@Fluent
public interface DiagnosticSettings extends
SupportsCreating,
SupportsBatchCreation,
SupportsGettingById,
SupportsDeletingById,
SupportsBatchDeletion,
HasManager,
HasInner {
/**
* Lists all the Diagnostic Settings categories for Log and Metric Settings for a specific resource.
*
* @param resourceId of the requested resource.
* @return list of Diagnostic Settings category available for the resource.
*/
List listCategoriesByResource(String resourceId);
/**
* Lists all the Diagnostic Settings categories for Log and Metric Settings for a specific resource.
*
* @param resourceId of the requested resource.
* @return list of Diagnostic Settings category available for the resource.
*/
Observable listCategoriesByResourceAsync(String resourceId);
/**
* Gets the information about Diagnostic Setting category for Log or Metric Setting for a specific resource.
*
* @param resourceId of the requested resource.
* @param name of the Log or Metric category.
* @return Diagnostic Setting category available for the resource.
*/
DiagnosticSettingsCategory getCategory(String resourceId, String name);
/**
* Gets the information about Diagnostic Setting category for Log or Metric Setting for a specific resource.
*
* @param resourceId of the requested resource.
* @param name of the Log or Metric category.
* @return Diagnostic Setting category available for the resource.
*/
Observable getCategoryAsync(String resourceId, String name);
/**
* Lists all the diagnostic settings in the currently selected subscription for a specific resource.
*
* @param resourceId that Diagnostic Setting is associated with.
* @return list of resources
*/
PagedList listByResource(String resourceId);
/**
* Lists all the diagnostic settings in the currently selected subscription for a specific resource.
*
* @param resourceId that Diagnostic Setting is associated with.
* @return list of resources
*/
Observable listByResourceAsync(String resourceId);
/**
* Deletes a Diagnostic Setting from Azure, identifying it by its resourceId and name.
*
* @param resourceId that Diagnostic Setting is associated with.
* @param name the name of Diagnostic Setting.
*/
void delete(String resourceId, String name);
/**
* Asynchronously delete a Diagnostic Setting from Azure, identifying it by its resourceId and name.
*
* @param resourceId that Diagnostic Setting is associated with.
* @param name the name of Diagnostic Setting.
* @param callback the callback on success or failure
* @return a handle to cancel the request
*/
ServiceFuture deleteAsync(String resourceId, String name, ServiceCallback callback);
/**
* Asynchronously delete a Diagnostic Setting from Azure, identifying it by its resourceId and name.
*
* @param resourceId that Diagnostic Setting is associated with.
* @param name the name of Diagnostic Setting.
* @return a representation of the deferred computation of this call
*/
Completable deleteAsync(String resourceId, String name);
/**
* Gets the information about Diagnostic Setting from Azure based on the resource id and setting name.
*
* @param resourceId that Diagnostic Setting is associated with.
* @param name the name of Diagnostic Setting.
* @return an immutable representation of the resource
*/
DiagnosticSetting get(String resourceId, String name);
/**
* Gets the information about Diagnostic Setting from Azure based on the resource id and setting name.
*
* @param resourceId that Diagnostic Setting is associated with.
* @param name the name of Diagnostic Setting.
* @return an immutable representation of the resource
*/
Observable getAsync(String resourceId, String name);
}