Пример #1
0
        /// <summary>
        /// Initiates the asynchronous execution of the ListAssessments operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the ListAssessments 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<ListAssessmentsResponse> ListAssessmentsAsync(ListAssessmentsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new ListAssessmentsRequestMarshaller();
            var unmarshaller = ListAssessmentsResponseUnmarshaller.Instance;

            return InvokeAsync<ListAssessmentsRequest,ListAssessmentsResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
Пример #2
0
 /// <summary>
 /// Lists the assessments corresponding to applications specified by the applications'
 /// ARNs.
 /// </summary>
 /// <param name="applicationArns">A list of ARNs specifying the applications the assessments of which 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 ListAssessments 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<ListAssessmentsResponse> ListAssessmentsAsync(List<string> applicationArns, AssessmentsFilter filter, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new ListAssessmentsRequest();
     request.ApplicationArns = applicationArns;
     request.Filter = filter;
     return ListAssessmentsAsync(request, cancellationToken);
 }
        /// <summary>
        /// Initiates the asynchronous execution of the ListAssessments operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the ListAssessments 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 EndListAssessments
        ///         operation.</returns>
        public IAsyncResult BeginListAssessments(ListAssessmentsRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new ListAssessmentsRequestMarshaller();
            var unmarshaller = ListAssessmentsResponseUnmarshaller.Instance;

            return BeginInvoke<ListAssessmentsRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
Пример #4
0
        internal ListAssessmentsResponse ListAssessments(ListAssessmentsRequest request)
        {
            var marshaller = new ListAssessmentsRequestMarshaller();
            var unmarshaller = ListAssessmentsResponseUnmarshaller.Instance;

            return Invoke<ListAssessmentsRequest,ListAssessmentsResponse>(request, marshaller, unmarshaller);
        }
 /// <summary>
 /// Lists the assessments corresponding to applications specified by the applications'
 /// ARNs.
 /// </summary>
 /// <param name="applicationArns">A list of ARNs specifying the applications the assessments of which 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 ListAssessments 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 ListAssessmentsResponse ListAssessments(List<string> applicationArns, AssessmentsFilter filter)
 {
     var request = new ListAssessmentsRequest();
     request.ApplicationArns = applicationArns;
     request.Filter = filter;
     return ListAssessments(request);
 }