/// <summary>
 /// Deletes the destination that you specify. The deleteDestination API is
 /// grantless. For more information, see "Grantless operations" in the Selling
 /// Partner API Developer Guide.
 ///
 /// **Usage Plan:**
 ///
 /// | Rate (requests per second) | Burst |
 /// | ---- | ---- |
 /// | 1 | 5 |
 ///
 /// For more information, see "Usage Plans and Rate Limits" in the Selling
 /// Partner API documentation.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='destinationId'>
 /// The identifier for the destination that you want to delete.
 /// </param>
 public static DeleteDestinationResponse DeleteDestination(this INotificationsClient operations, string destinationId)
 {
     return(operations.DeleteDestinationAsync(destinationId).GetAwaiter().GetResult());
 }