Class: Clerk::Models::Operations::UpdateSAMLConnectionRequestBody

Inherits:
Object
  • Object
show all
Includes:
Crystalline::MetadataFields
Defined in:
lib/clerk/models/operations/updatesamlconnection_requestbody.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(force_authn: nil, name: nil, domain: nil, domains: nil, idp_entity_id: nil, idp_sso_url: nil, idp_certificate: nil, idp_metadata_url: nil, idp_metadata: nil, organization_id: nil, attribute_mapping: nil, active: nil, sync_user_attributes: nil, allow_subdomains: nil, allow_idp_initiated: nil, disable_additional_identifications: nil) ⇒ UpdateSAMLConnectionRequestBody

Returns a new instance of UpdateSAMLConnectionRequestBody.



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/clerk/models/operations/updatesamlconnection_requestbody.rb', line 51

def initialize(force_authn: nil, name: nil, domain: nil, domains: nil, idp_entity_id: nil, idp_sso_url: nil, idp_certificate: nil, idp_metadata_url: nil, idp_metadata: nil, organization_id: nil, attribute_mapping: nil, active: nil, sync_user_attributes: nil, allow_subdomains: nil, allow_idp_initiated: nil, disable_additional_identifications: nil)
  @force_authn = force_authn
  @name = name
  @domain = domain
  @domains = domains
  @idp_entity_id = idp_entity_id
  @idp_sso_url = idp_sso_url
  @idp_certificate = idp_certificate
   = 
   = 
  @organization_id = organization_id
  @attribute_mapping = attribute_mapping
  @active = active
  @sync_user_attributes = sync_user_attributes
  @allow_subdomains = allow_subdomains
  @allow_idp_initiated = allow_idp_initiated
  @disable_additional_identifications = disable_additional_identifications
end

Instance Method Details

#==(other) ⇒ Object



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/clerk/models/operations/updatesamlconnection_requestbody.rb', line 71

def ==(other)
  return false unless other.is_a? self.class
  return false unless @force_authn == other.force_authn
  return false unless @name == other.name
  return false unless @domain == other.domain
  return false unless @domains == other.domains
  return false unless @idp_entity_id == other.idp_entity_id
  return false unless @idp_sso_url == other.idp_sso_url
  return false unless @idp_certificate == other.idp_certificate
  return false unless  == other.
  return false unless  == other.
  return false unless @organization_id == other.organization_id
  return false unless @attribute_mapping == other.attribute_mapping
  return false unless @active == other.active
  return false unless @sync_user_attributes == other.sync_user_attributes
  return false unless @allow_subdomains == other.allow_subdomains
  return false unless @allow_idp_initiated == other.allow_idp_initiated
  return false unless @disable_additional_identifications == other.disable_additional_identifications
  true
end