Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.22 KB

File metadata and controls

28 lines (22 loc) · 1.22 KB

Akeyless::SAMLAccessRules

Properties

Name Type Description Notes
allowed_redirect_uris Array<String> Allowed redirect URIs after the authentication [optional]
bound_attributes Array<SAMLAttribute> The attributes that login is restricted to. [optional]
idp_metadata_url String IDP metadata url [optional]
idp_metadata_xml String IDP metadata XML [optional]
unique_identifier String A unique identifier to distinguish different users [optional]
use_dedicated_saml_urls Boolean When true, the login AuthnRequest is signed with this access method's dedicated SP identity (Entity ID https://<sp>/saml/sp/{access_id} and ACS https://<sp>/saml/acs/{access_id}) instead of the shared global identity. Default false keeps the legacy global identity for backward compatibility. [optional]

Example

require 'akeyless'

instance = Akeyless::SAMLAccessRules.new(
  allowed_redirect_uris: null,
  bound_attributes: null,
  idp_metadata_url: null,
  idp_metadata_xml: null,
  unique_identifier: null,
  use_dedicated_saml_urls: null
)