Class: Telnyx::Models::Settings

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/telnyx/models/settings.rb

Defined Under Namespace

Modules: IdpCertFingerprintAlgorithm

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initialize(idp_cert_fingerprint:, idp_entity_id:, idp_sso_target_url:, idp_cert_fingerprint_algorithm: nil) ⇒ Object

Some parameter documentations has been truncated, see Telnyx::Models::Settings for more details.

The settings associated with the authentication provider.

Parameters:

  • idp_cert_fingerprint (String)

    The certificate fingerprint for the identity provider (IdP)

  • idp_entity_id (String)

    The Entity ID for the identity provider (IdP).

  • idp_sso_target_url (String)

    The SSO target url for the identity provider (IdP).

  • idp_cert_fingerprint_algorithm (Symbol, Telnyx::Models::Settings::IdpCertFingerprintAlgorithm) (defaults to: nil)

    The algorithm used to generate the identity provider’s (IdP) certificate fingerp



# File 'lib/telnyx/models/settings.rb', line 31

Instance Attribute Details

#idp_cert_fingerprintString

The certificate fingerprint for the identity provider (IdP)

Returns:

  • (String)


10
# File 'lib/telnyx/models/settings.rb', line 10

required :idp_cert_fingerprint, String

#idp_cert_fingerprint_algorithmSymbol, ...

The algorithm used to generate the identity provider’s (IdP) certificate fingerprint



29
# File 'lib/telnyx/models/settings.rb', line 29

optional :idp_cert_fingerprint_algorithm, enum: -> { Telnyx::Settings::IdpCertFingerprintAlgorithm }

#idp_entity_idString

The Entity ID for the identity provider (IdP).

Returns:

  • (String)


16
# File 'lib/telnyx/models/settings.rb', line 16

required :idp_entity_id, String

#idp_sso_target_urlString

The SSO target url for the identity provider (IdP).

Returns:

  • (String)


22
# File 'lib/telnyx/models/settings.rb', line 22

required :idp_sso_target_url, String