* Added API to extract raw response. * Resolved API review comments and added FileClient and DirectoryClient for DataLake. * Added some blob/adls Gen2 interop functionality. * Resolved some issues/comments * Adds more interop, support retry and concurrent upload/download. * Added support for Azure Core's token credential to support bearer token credential. * Added integration on RawResponse/Response<T> and resolved some test issues. * Added validation for Client secret authentication. * Resolved some review comments and resolved CI issue. * Resolved a UT failure in Azure Core. * Resolved some further comments.
14 lines
424 B
C++
14 lines
424 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include "datalake/datalake.hpp"
|
|
#include "samples_common.hpp"
|
|
|
|
SAMPLE(DataLakeGettingStarted, DataLakeGettingStarted)
|
|
void DataLakeGettingStarted()
|
|
{
|
|
using namespace Azure::Storage::Files::DataLake;
|
|
auto client = ServiceClient::CreateFromConnectionString(GetConnectionString());
|
|
auto response = client.ListFileSystems();
|
|
}
|