pub struct BlocksApi {
    pub client: Client,
}

Fields

client: Client

Implementations

Retrieve all blocks.

This function performs a GET to the /suppression/blocks endpoint.

This endpoint allows you to retrieve all email addresses that are currently on your blocks list.

Parameters:

  • start_time: i64 – The start of the time range when a blocked email was created (inclusive). This is a unix timestamp.
  • end_time: i64 – The end of the time range when a blocked email was created (inclusive). This is a unix timestamp.
  • limit: i64 – Limit the number of results to be displayed per page.
  • offset: i64 – The point in the list to begin displaying results.
  • on_behalf_of: &str – The license key provided with your New Relic account.

Retrieve all blocks.

This function performs a GET to the /suppression/blocks endpoint.

As opposed to get_suppression_blocks, this function returns all the pages of the request at once.

This endpoint allows you to retrieve all email addresses that are currently on your blocks list.

Delete blocks.

This function performs a DELETE to the /suppression/blocks endpoint.

This endpoint allows you to delete all email addresses on your blocks list.

There are two options for deleting blocked emails:

  1. You can delete all blocked emails by setting delete_all to true in the request body.
  2. You can delete a selection of blocked emails by specifying the email addresses in the emails array of the request body.

Parameters:

  • on_behalf_of: &str – The license key provided with your New Relic account.

Retrieve a specific block.

This function performs a GET to the /suppression/blocks/{email} endpoint.

This endpoint allows you to retrieve a specific email address from your blocks list.

Parameters:

  • on_behalf_of: &str – The license key provided with your New Relic account.

Retrieve a specific block.

This function performs a GET to the /suppression/blocks/{email} endpoint.

As opposed to get_suppression_blocks_email, this function returns all the pages of the request at once.

This endpoint allows you to retrieve a specific email address from your blocks list.

Delete a specific block.

This function performs a DELETE to the /suppression/blocks/{email} endpoint.

This endpoint allows you to delete a specific email address from your blocks list.

Parameters:

  • on_behalf_of: &str – The license key provided with your New Relic account.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Attaches the current Context to this type, returning a WithContext wrapper. Read more
Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more