pub struct SamlIdentityProviderCreate {
    pub name: String,
    pub description: String,
    pub acs_url: String,
    pub group_attribute_name: String,
    pub idp_entity_id: String,
    pub idp_metadata_source: IdpMetadataSource,
    pub signing_keypair: Option<DerEncodedKeyPair>,
    pub slo_url: String,
    pub sp_client_id: String,
    pub technical_contact_email: String,
}
Expand description

Create-time identity-related parameters

Fields

name: String

Names must begin with a lower case ASCII letter, be composed exclusively of lowercase ASCII, uppercase ASCII, numbers, and ‘-’, and may not end with a ‘-’. Names cannot be a UUID though they may contain a UUID.

description: Stringacs_url: String

service provider endpoint where the response will be sent

group_attribute_name: String

If set, SAML attributes with this name will be considered to denote a user’s group membership, where the attribute value(s) should be a comma-separated list of group names.

idp_entity_id: String

idp’s entity id

idp_metadata_source: IdpMetadataSourcesigning_keypair: Option<DerEncodedKeyPair>

optional request signing key pair

slo_url: String

service provider endpoint where the idp should send log out requests

sp_client_id: String

sp’s client id

technical_contact_email: String

customer’s technical contact for saml configuration

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

The name of the generated JSON Schema. Read more

Generates a JSON Schema for this type. Read more

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Serialize this value into the given Serde serializer. Read more

A length of fields and headers, which must be the same. Read more

Fields method must return a list of cells. Read more

Headers must return a list of column names.

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.

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.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

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