public void GlacierListJobs() { #region to-list-jobs-for-a-vault-1481920530537 var response = client.ListJobs(new ListJobsRequest { AccountId = "-", VaultName = "my-vault" }); List <GlacierJobDescription> jobList = response.JobList; #endregion }
IEnumerable <ListJobsResponse> IPaginator <ListJobsResponse> .Paginate() { if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0) { throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance."); } var marker = _request.Marker; ListJobsResponse response; do { _request.Marker = marker; response = _client.ListJobs(_request); marker = response.Marker; yield return(response); }while (marker != null); }
private Amazon.Glacier.Model.ListJobsResponse CallAWSServiceOperation(IAmazonGlacier client, Amazon.Glacier.Model.ListJobsRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Glacier", "ListJobs"); try { #if DESKTOP return(client.ListJobs(request)); #elif CORECLR return(client.ListJobsAsync(request).GetAwaiter().GetResult()); #else #error "Unknown build edition" #endif } catch (AmazonServiceException exc) { var webException = exc.InnerException as System.Net.WebException; if (webException != null) { throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException); } throw; } }