/// <summary> /// Paginator for ListDomainConfigurations operation ///</summary> public IListDomainConfigurationsPaginator ListDomainConfigurations(ListDomainConfigurationsRequest request) { return(new ListDomainConfigurationsPaginator(this.client, request)); }
private Amazon.IoT.Model.ListDomainConfigurationsResponse CallAWSServiceOperation(IAmazonIoT client, Amazon.IoT.Model.ListDomainConfigurationsRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS IoT", "ListDomainConfigurations"); try { #if DESKTOP return(client.ListDomainConfigurations(request)); #elif CORECLR return(client.ListDomainConfigurationsAsync(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; } }
internal ListDomainConfigurationsPaginator(IAmazonIoT client, ListDomainConfigurationsRequest request) { this._client = client; this._request = request; }
public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; var useParameterSelect = this.Select.StartsWith("^"); // create request and set iteration invariants var request = new Amazon.IoT.Model.ListDomainConfigurationsRequest(); if (cmdletContext.PageSize != null) { request.PageSize = cmdletContext.PageSize.Value; } if (cmdletContext.ServiceType != null) { request.ServiceType = cmdletContext.ServiceType; } // Initialize loop variant and commence piping var _nextToken = cmdletContext.Marker; var _userControllingPaging = this.NoAutoIteration.IsPresent || ParameterWasBound(nameof(this.Marker)); var client = Client ?? CreateClient(_CurrentCredentials, _RegionEndpoint); do { request.Marker = _nextToken; CmdletOutput output; try { var response = CallAWSServiceOperation(client, request); object pipelineOutput = null; if (!useParameterSelect) { pipelineOutput = cmdletContext.Select(response, this); } output = new CmdletOutput { PipelineOutput = pipelineOutput, ServiceResponse = response }; _nextToken = response.NextMarker; } catch (Exception e) { output = new CmdletOutput { ErrorResponse = e }; } ProcessOutput(output); } while (!_userControllingPaging && AutoIterationHelpers.HasValue(_nextToken)); if (useParameterSelect) { WriteObject(cmdletContext.Select(null, this)); } return(null); }