Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check if QueryTablesIncludeFlags are used within QueryTables operation #6154

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions sdk/tables/azure-data-tables/inc/azure/data/tables/models.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand All @@ -85,11 +75,6 @@ namespace Azure { namespace Data { namespace Tables {
* @brief Specifies the maximum number of tables to return.
*/
Azure::Nullable<std::int32_t> PageSizeHint;

/**
* @brief Specifies that the table's metadata be returned.
*/
Models::QueryTablesIncludeFlags Include = Models::QueryTablesIncludeFlags::None;
};

/**
Expand Down