com.azure.resourcemanager.managementgroups.fluent.ManagementGroupsApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-managementgroups Show documentation
Show all versions of azure-resourcemanager-managementgroups Show documentation
This package contains Microsoft Azure SDK for ManagementGroups Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Azure Management Groups API enables consolidation of multiple
subscriptions/resources into an organizational hierarchy and centrally
manage access control, policies, alerting and reporting for those resources.
. Package tag package-2021-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.managementgroups.fluent;
import com.azure.core.http.HttpPipeline;
import java.time.Duration;
/** The interface for ManagementGroupsApi class. */
public interface ManagementGroupsApi {
/**
* Gets server parameter.
*
* @return the endpoint value.
*/
String getEndpoint();
/**
* Gets Api Version.
*
* @return the apiVersion value.
*/
String getApiVersion();
/**
* Gets The HTTP pipeline to send requests through.
*
* @return the httpPipeline value.
*/
HttpPipeline getHttpPipeline();
/**
* Gets The default poll interval for long-running operation.
*
* @return the defaultPollInterval value.
*/
Duration getDefaultPollInterval();
/**
* Gets the ManagementGroupsClient object to access its operations.
*
* @return the ManagementGroupsClient object.
*/
ManagementGroupsClient getManagementGroups();
/**
* Gets the ManagementGroupSubscriptionsClient object to access its operations.
*
* @return the ManagementGroupSubscriptionsClient object.
*/
ManagementGroupSubscriptionsClient getManagementGroupSubscriptions();
/**
* Gets the HierarchySettingsOperationsClient object to access its operations.
*
* @return the HierarchySettingsOperationsClient object.
*/
HierarchySettingsOperationsClient getHierarchySettingsOperations();
/**
* Gets the OperationsClient object to access its operations.
*
* @return the OperationsClient object.
*/
OperationsClient getOperations();
/**
* Gets the ResourceProvidersClient object to access its operations.
*
* @return the ResourceProvidersClient object.
*/
ResourceProvidersClient getResourceProviders();
/**
* Gets the EntitiesClient object to access its operations.
*
* @return the EntitiesClient object.
*/
EntitiesClient getEntities();
}