From 03786320fa5dd3efd8fc84ff0c524e99aa34a215 Mon Sep 17 00:00:00 2001 From: gearama <50641385+gearama@users.noreply.github.com> Date: Wed, 30 Oct 2024 14:24:15 -0700 Subject: [PATCH] remove Include options from query tablesinclude (#6156) --- .../inc/azure/data/tables/models.hpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/sdk/tables/azure-data-tables/inc/azure/data/tables/models.hpp b/sdk/tables/azure-data-tables/inc/azure/data/tables/models.hpp index dab31fb14..9289119ac 100644 --- a/sdk/tables/azure-data-tables/inc/azure/data/tables/models.hpp +++ b/sdk/tables/azure-data-tables/inc/azure/data/tables/models.hpp @@ -50,16 +50,6 @@ namespace Azure { namespace Data { namespace Tables { std::string Id; }; - /** - * @brief Include this parameter to specify that the tables' metadata be returned as part of - * the response body. - */ - enum class QueryTablesIncludeFlags - { - None = 0, - Metadata = 1, - }; - /** * @brief Query Tables options. * @@ -85,11 +75,6 @@ namespace Azure { namespace Data { namespace Tables { * @brief Specifies the maximum number of tables to return. */ Azure::Nullable PageSizeHint; - - /** - * @brief Specifies that the table's metadata be returned. - */ - Models::QueryTablesIncludeFlags Include = Models::QueryTablesIncludeFlags::None; }; /**