public async Task <TableListResponse> ListNextAsync(string nextLink, CancellationToken cancellationToken)
        {
            // Validate
            Ensure.IsNotNull(nextLink, "nextLink");

            Core.Models.TableListResponse response =
                await this.Client.InternalClient.Tables.ListNextAsync(nextLink, cancellationToken);

            return(new TableListResponse(response, this.Client));
        }
        public async Task <TableListResponse> ListAsync(
            string resourceGroupName,
            string dataFactoryName,
            CancellationToken cancellationToken)
        {
            Core.Models.TableListResponse response = await this.Client.InternalClient.Tables.ListAsync(
                resourceGroupName,
                dataFactoryName,
                cancellationToken);

            return(new TableListResponse(response, this.Client));
        }