/// <summary> /// Initiates the asynchronous execution of the ListRuns operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListRuns operation.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// <returns>The task object representing the asynchronous operation.</returns> public Task<ListRunsResponse> ListRunsAsync(ListRunsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new ListRunsRequestMarshaller(); var unmarshaller = ListRunsResponseUnmarshaller.Instance; return InvokeAsync<ListRunsRequest,ListRunsResponse>(request, marshaller, unmarshaller, cancellationToken); }
/// <summary> /// Lists the assessment runs associated with the assessments specified by the assessment /// ARNs. /// </summary> /// <param name="assessmentArns">The ARNs specifying the assessments whose runs you want to list.</param> /// <param name="filter">You can use this parameter to specify a subset of data to be included in the action's response. For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListRuns service method, as returned by Inspector.</returns> /// <exception cref="Amazon.Inspector.Model.AccessDeniedException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InternalException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InvalidInputException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.NoSuchEntityException"> /// /// </exception> public Task<ListRunsResponse> ListRunsAsync(List<string> assessmentArns, RunsFilter filter, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var request = new ListRunsRequest(); request.AssessmentArns = assessmentArns; request.Filter = filter; return ListRunsAsync(request, cancellationToken); }
internal ListRunsResponse ListRuns(ListRunsRequest request) { var marshaller = new ListRunsRequestMarshaller(); var unmarshaller = ListRunsResponseUnmarshaller.Instance; return Invoke<ListRunsRequest,ListRunsResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the ListRuns operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListRuns operation on AmazonInspectorClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListRuns /// operation.</returns> public IAsyncResult BeginListRuns(ListRunsRequest request, AsyncCallback callback, object state) { var marshaller = new ListRunsRequestMarshaller(); var unmarshaller = ListRunsResponseUnmarshaller.Instance; return BeginInvoke<ListRunsRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Lists the assessment runs associated with the assessments specified by the assessment /// ARNs. /// </summary> /// <param name="assessmentArns">The ARNs specifying the assessments whose runs you want to list.</param> /// <param name="filter">You can use this parameter to specify a subset of data to be included in the action's response. For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match.</param> /// /// <returns>The response from the ListRuns service method, as returned by Inspector.</returns> /// <exception cref="Amazon.Inspector.Model.AccessDeniedException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InternalException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InvalidInputException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.NoSuchEntityException"> /// /// </exception> public ListRunsResponse ListRuns(List<string> assessmentArns, RunsFilter filter) { var request = new ListRunsRequest(); request.AssessmentArns = assessmentArns; request.Filter = filter; return ListRuns(request); }
/// <summary> /// Lists the assessment runs associated with the assessments specified by the assessment /// ARNs. /// </summary> /// <param name="assessmentArns">The ARNs specifying the assessments whose runs you want to list.</param> /// /// <returns>The response from the ListRuns service method, as returned by Inspector.</returns> /// <exception cref="Amazon.Inspector.Model.AccessDeniedException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InternalException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InvalidInputException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.NoSuchEntityException"> /// /// </exception> public ListRunsResponse ListRuns(List<string> assessmentArns) { var request = new ListRunsRequest(); request.AssessmentArns = assessmentArns; return ListRuns(request); }