public async Task <T> InvokeAsync(CancellationToken ct)
        {
            if (_client == null)
            {
                throw new ObjectDisposedException(nameof(VeeamO365Client));
            }

            if (string.IsNullOrEmpty(Href))
            {
                throw new InvalidOperationException("Uri for this link was not provided.");
            }

            return(await _client.GetByFullUrlAsync <T>(Href, ct));
        }