pub struct SamlIdentityProvider {
pub id: String,
pub name: String,
pub description: String,
pub acs_url: String,
pub idp_entity_id: String,
pub public_cert: String,
pub slo_url: String,
pub sp_client_id: String,
pub technical_contact_email: String,
pub time_created: DisplayOptionDateTime,
pub time_modified: DisplayOptionDateTime,
}
Expand description
Identity-related metadata that’s included in nearly all public API objects
Fields§
§id: String
unique, immutable, system-controlled identifier for each resource
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: String
human-readable free-form text about a resource
acs_url: String
service provider endpoint where the response will be sent
idp_entity_id: String
idp’s entity id
public_cert: String
optional request signing public certificate (base64 encoded der file)
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
time_created: DisplayOptionDateTime
timestamp when this resource was created
time_modified: DisplayOptionDateTime
timestamp when this resource was last modified
Trait Implementations§
Source§impl Clone for SamlIdentityProvider
impl Clone for SamlIdentityProvider
Source§fn clone(&self) -> SamlIdentityProvider
fn clone(&self) -> SamlIdentityProvider
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SamlIdentityProvider
impl Debug for SamlIdentityProvider
Source§impl Default for SamlIdentityProvider
impl Default for SamlIdentityProvider
Source§fn default() -> SamlIdentityProvider
fn default() -> SamlIdentityProvider
Source§impl<'de> Deserialize<'de> for SamlIdentityProvider
impl<'de> Deserialize<'de> for SamlIdentityProvider
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl JsonSchema for SamlIdentityProvider
impl JsonSchema for SamlIdentityProvider
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more