remove Include options from query tablesinclude (#6156)

This commit is contained in:
gearama 2024-10-30 14:24:15 -07:00 committed by GitHub
parent c441880042
commit 03786320fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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<std::int32_t> PageSizeHint;
/**
* @brief Specifies that the table's metadata be returned.
*/
Models::QueryTablesIncludeFlags Include = Models::QueryTablesIncludeFlags::None;
};
/**