Exemplo n.º 1
0
        /// <summary>
        /// Initiates the asynchronous execution of the ListHsms operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the ListHsms 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<ListHsmsResponse> ListHsmsAsync(ListHsmsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new ListHsmsRequestMarshaller();
            var unmarshaller = ListHsmsResponseUnmarshaller.Instance;

            return InvokeAsync<ListHsmsRequest,ListHsmsResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Retrieves the identifiers of all of the HSMs provisioned for the current customer.
 /// 
 ///  
 /// <para>
 /// This operation supports pagination with the use of the <i>NextToken</i> member. If
 /// more results are available, the <i>NextToken</i> member of the response contains a
 /// token that you pass in the next call to <a>ListHsms</a> to retrieve the next set of
 /// items.
 /// </para>
 /// </summary>
 /// <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 ListHsms service method, as returned by CloudHSM.</returns>
 /// <exception cref="Amazon.CloudHSM.Model.CloudHsmInternalException">
 /// Indicates that an internal error occurred.
 /// </exception>
 /// <exception cref="Amazon.CloudHSM.Model.CloudHsmServiceException">
 /// Indicates that an exception occurred in the AWS CloudHSM service.
 /// </exception>
 /// <exception cref="Amazon.CloudHSM.Model.InvalidRequestException">
 /// Indicates that one or more of the request parameters are not valid.
 /// </exception>
 public Task<ListHsmsResponse> ListHsmsAsync(System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new ListHsmsRequest();
     return ListHsmsAsync(request, cancellationToken);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Retrieves the identifiers of all of the HSMs provisioned for the current customer.
 /// 
 ///  
 /// <para>
 /// This operation supports pagination with the use of the <i>NextToken</i> member. If
 /// more results are available, the <i>NextToken</i> member of the response contains a
 /// token that you pass in the next call to <a>ListHsms</a> to retrieve the next set of
 /// items.
 /// </para>
 /// </summary>
 /// 
 /// <returns>The response from the ListHsms service method, as returned by CloudHSM.</returns>
 /// <exception cref="Amazon.CloudHSM.Model.CloudHsmInternalException">
 /// Indicates that an internal error occurred.
 /// </exception>
 /// <exception cref="Amazon.CloudHSM.Model.CloudHsmServiceException">
 /// Indicates that an exception occurred in the AWS CloudHSM service.
 /// </exception>
 /// <exception cref="Amazon.CloudHSM.Model.InvalidRequestException">
 /// Indicates that one or more of the request parameters are not valid.
 /// </exception>
 public ListHsmsResponse ListHsms()
 {
     var request = new ListHsmsRequest();
     return ListHsms(request);
 }
Exemplo n.º 4
0
        internal ListHsmsResponse ListHsms(ListHsmsRequest request)
        {
            var marshaller = new ListHsmsRequestMarshaller();
            var unmarshaller = ListHsmsResponseUnmarshaller.Instance;

            return Invoke<ListHsmsRequest,ListHsmsResponse>(request, marshaller, unmarshaller);
        }
Exemplo n.º 5
0
        /// <summary>
        /// Initiates the asynchronous execution of the ListHsms operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the ListHsms operation on AmazonCloudHSMClient.</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 EndListHsms
        ///         operation.</returns>
        public IAsyncResult BeginListHsms(ListHsmsRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new ListHsmsRequestMarshaller();
            var unmarshaller = ListHsmsResponseUnmarshaller.Instance;

            return BeginInvoke<ListHsmsRequest>(request, marshaller, unmarshaller,
                callback, state);
        }