com.microsoft.azure.management.resources.ResourceGroups Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-resources Show documentation
Show all versions of azure-mgmt-resources Show documentation
This package contains Microsoft Azure Resource Management SDK.
/**
* 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.resources;
import com.microsoft.azure.management.apigeneration.Beta;
import com.microsoft.azure.management.apigeneration.Beta.SinceVersion;
import com.microsoft.azure.management.apigeneration.Fluent;
import com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingByName;
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsBatchCreation;
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsBeginDeletingByName;
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsCreating;
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsDeletingByName;
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsListing;
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsListingByTag;
/**
* Entry point to resource group management API.
*/
@Fluent
public interface ResourceGroups extends
SupportsListing,
SupportsListingByTag,
SupportsGettingByName,
SupportsCreating,
SupportsDeletingByName,
SupportsBeginDeletingByName,
SupportsBatchCreation {
/**
* Checks whether resource group exists.
*
* @param name The name of the resource group to check. The name is case insensitive
* @return true if the resource group exists; false otherwise
* @deprecated Use contain() instead.
*/
@Deprecated
boolean checkExistence(String name);
/**
* Checks whether resource group exists.
*
* @param name the name (case insensitive) of the resource group to check for
* @return true of exists, otherwise false
*/
@Beta(SinceVersion.V1_4_0)
boolean contain(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy