pub struct SingleSignOnSettings {
    pub client: Client,
}

Fields

client: Client

Implementations

Get All SSO Integrations.

This function performs a GET to the /sso/integrations endpoint.

This endpoint allows you to retrieve all SSO integrations tied to your Twilio SendGrid account.

The IDs returned by this endpoint can be used by the APIs additional endpoints to modify your SSO integrations.

Parameters:

  • si: bool – If this parameter is set to true, the response will include the completed_integration field.

Get All SSO Integrations.

This function performs a GET to the /sso/integrations endpoint.

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

This endpoint allows you to retrieve all SSO integrations tied to your Twilio SendGrid account.

The IDs returned by this endpoint can be used by the APIs additional endpoints to modify your SSO integrations.

Create an SSO Integration.

This function performs a POST to the /sso/integrations endpoint.

This endpoint allows you to create an SSO integration.

Get an SSO Integration.

This function performs a GET to the /sso/integrations/{id} endpoint.

This endpoint allows you to retrieve an SSO integration by ID.

You can retrieve the IDs for your configurations from the response provided by the “Get All SSO Integrations” endpoint.

Parameters:

  • si: bool – If this parameter is set to true, the response will include the completed_integration field.

Delete an SSO Integration.

This function performs a DELETE to the /sso/integrations/{id} endpoint.

This endpoint allows you to delete an IdP configuration by ID.

You can retrieve the IDs for your configurations from the response provided by the “Get All SSO Integrations” endpoint.

Update an SSO Integration.

This function performs a PATCH to the /sso/integrations/{id} endpoint.

This endpoint allows you to modify an exisiting SSO integration.

You can retrieve the IDs for your configurations from the response provided by the “Get All SSO Integrations” endpoint.

Parameters:

  • si: bool – If this parameter is set to true, the response will include the completed_integration field.

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