private Amazon.IoT.Model.DeleteTopicRuleResponse CallAWSServiceOperation(IAmazonIoT client, Amazon.IoT.Model.DeleteTopicRuleRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS IoT", "DeleteTopicRule");
     try
     {
         #if DESKTOP
         return client.DeleteTopicRule(request);
         #elif CORECLR
         return client.DeleteTopicRuleAsync(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;
     }
 }
Beispiel #2
0
        /// <summary>
        /// Initiates the asynchronous execution of the DeleteTopicRule operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DeleteTopicRule 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<DeleteTopicRuleResponse> DeleteTopicRuleAsync(DeleteTopicRuleRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new DeleteTopicRuleRequestMarshaller();
            var unmarshaller = DeleteTopicRuleResponseUnmarshaller.Instance;

            return InvokeAsync<DeleteTopicRuleRequest,DeleteTopicRuleResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
Beispiel #3
0
 /// <summary>
 /// Deletes the specified rule.
 /// </summary>
 /// <param name="ruleName">The name of the rule.</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 DeleteTopicRule service method, as returned by IoT.</returns>
 /// <exception cref="Amazon.IoT.Model.InternalException">
 /// An unexpected error has occurred.
 /// </exception>
 /// <exception cref="Amazon.IoT.Model.InvalidRequestException">
 /// The request is not valid.
 /// </exception>
 /// <exception cref="Amazon.IoT.Model.ServiceUnavailableException">
 /// The service is temporarily unavailable.
 /// </exception>
 /// <exception cref="Amazon.IoT.Model.UnauthorizedException">
 /// You are not authorized to perform this operation.
 /// </exception>
 public Task<DeleteTopicRuleResponse> DeleteTopicRuleAsync(string ruleName, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new DeleteTopicRuleRequest();
     request.RuleName = ruleName;
     return DeleteTopicRuleAsync(request, cancellationToken);
 }
Beispiel #4
0
        /// <summary>
        /// Deletes the specified rule.
        /// </summary>
        /// <param name="request">Container for the necessary parameters to execute the DeleteTopicRule service method.</param>
        /// 
        /// <returns>The response from the DeleteTopicRule service method, as returned by IoT.</returns>
        /// <exception cref="Amazon.IoT.Model.InternalException">
        /// An unexpected error has occurred.
        /// </exception>
        /// <exception cref="Amazon.IoT.Model.InvalidRequestException">
        /// The request is not valid.
        /// </exception>
        /// <exception cref="Amazon.IoT.Model.ServiceUnavailableException">
        /// The service is temporarily unavailable.
        /// </exception>
        /// <exception cref="Amazon.IoT.Model.UnauthorizedException">
        /// You are not authorized to perform this operation.
        /// </exception>
        public DeleteTopicRuleResponse DeleteTopicRule(DeleteTopicRuleRequest request)
        {
            var marshaller = new DeleteTopicRuleRequestMarshaller();
            var unmarshaller = DeleteTopicRuleResponseUnmarshaller.Instance;

            return Invoke<DeleteTopicRuleRequest,DeleteTopicRuleResponse>(request, marshaller, unmarshaller);
        }
Beispiel #5
0
 /// <summary>
 /// Deletes the specified rule.
 /// </summary>
 /// <param name="ruleName">The name of the rule.</param>
 /// 
 /// <returns>The response from the DeleteTopicRule service method, as returned by IoT.</returns>
 /// <exception cref="Amazon.IoT.Model.InternalException">
 /// An unexpected error has occurred.
 /// </exception>
 /// <exception cref="Amazon.IoT.Model.InvalidRequestException">
 /// The request is not valid.
 /// </exception>
 /// <exception cref="Amazon.IoT.Model.ServiceUnavailableException">
 /// The service is temporarily unavailable.
 /// </exception>
 /// <exception cref="Amazon.IoT.Model.UnauthorizedException">
 /// You are not authorized to perform this operation.
 /// </exception>
 public DeleteTopicRuleResponse DeleteTopicRule(string ruleName)
 {
     var request = new DeleteTopicRuleRequest();
     request.RuleName = ruleName;
     return DeleteTopicRule(request);
 }
Beispiel #6
0
        /// <summary>
        /// Initiates the asynchronous execution of the DeleteTopicRule operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DeleteTopicRule operation on AmazonIoTClient.</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 EndDeleteTopicRule
        ///         operation.</returns>
        public IAsyncResult BeginDeleteTopicRule(DeleteTopicRuleRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new DeleteTopicRuleRequestMarshaller();
            var unmarshaller = DeleteTopicRuleResponseUnmarshaller.Instance;

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