コード例 #1
0
        /// <summary>
        /// Initiates the asynchronous execution of the GetAssessmentTelemetry operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the GetAssessmentTelemetry 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<GetAssessmentTelemetryResponse> GetAssessmentTelemetryAsync(GetAssessmentTelemetryRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new GetAssessmentTelemetryRequestMarshaller();
            var unmarshaller = GetAssessmentTelemetryResponseUnmarshaller.Instance;

            return InvokeAsync<GetAssessmentTelemetryRequest,GetAssessmentTelemetryResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
コード例 #2
0
 /// <summary>
 /// Returns the metadata about the telemetry (application behavioral data) for the assessment
 /// specified by the assessment ARN.
 /// </summary>
 /// <param name="assessmentArn">The ARN specifying the assessment the telemetry of which you want to obtain.</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 GetAssessmentTelemetry 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<GetAssessmentTelemetryResponse> GetAssessmentTelemetryAsync(string assessmentArn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new GetAssessmentTelemetryRequest();
     request.AssessmentArn = assessmentArn;
     return GetAssessmentTelemetryAsync(request, cancellationToken);
 }
コード例 #3
0
        /// <summary>
        /// Initiates the asynchronous execution of the GetAssessmentTelemetry operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the GetAssessmentTelemetry 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 EndGetAssessmentTelemetry
        ///         operation.</returns>
        public IAsyncResult BeginGetAssessmentTelemetry(GetAssessmentTelemetryRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new GetAssessmentTelemetryRequestMarshaller();
            var unmarshaller = GetAssessmentTelemetryResponseUnmarshaller.Instance;

            return BeginInvoke<GetAssessmentTelemetryRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
コード例 #4
0
        internal GetAssessmentTelemetryResponse GetAssessmentTelemetry(GetAssessmentTelemetryRequest request)
        {
            var marshaller = new GetAssessmentTelemetryRequestMarshaller();
            var unmarshaller = GetAssessmentTelemetryResponseUnmarshaller.Instance;

            return Invoke<GetAssessmentTelemetryRequest,GetAssessmentTelemetryResponse>(request, marshaller, unmarshaller);
        }
コード例 #5
0
 /// <summary>
 /// Returns the metadata about the telemetry (application behavioral data) for the assessment
 /// specified by the assessment ARN.
 /// </summary>
 /// <param name="assessmentArn">The ARN specifying the assessment the telemetry of which you want to obtain.</param>
 /// 
 /// <returns>The response from the GetAssessmentTelemetry 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 GetAssessmentTelemetryResponse GetAssessmentTelemetry(string assessmentArn)
 {
     var request = new GetAssessmentTelemetryRequest();
     request.AssessmentArn = assessmentArn;
     return GetAssessmentTelemetry(request);
 }