/**
* Samples for Accounts Delete.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/datalake-store/resource-manager/Microsoft.DataLakeStore/stable/2016-11-01/examples/Accounts_Delete.
* json
*/
/**
* Sample code: Deletes the specified Data Lake Store account.
*
* @param manager Entry point to DataLakeStoreManager.
*/
public static void
deletesTheSpecifiedDataLakeStoreAccount(com.azure.resourcemanager.datalakestore.DataLakeStoreManager manager) {
manager.accounts().delete("contosorg", "contosoadla", com.azure.core.util.Context.NONE);
}
}
from azure.identity import DefaultAzureCredential
from azure.mgmt.datalake.store import DataLakeStoreAccountManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-datalake-store
# USAGE
python accounts_delete.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = DataLakeStoreAccountManagementClient(
credential=DefaultAzureCredential(),
subscription_id="34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
)
response = client.accounts.begin_delete(
resource_group_name="contosorg",
account_name="contosoadla",
).result()
print(response)
# x-ms-original-file: specification/datalake-store/resource-manager/Microsoft.DataLakeStore/stable/2016-11-01/examples/Accounts_Delete.json
if __name__ == "__main__":
main()