Sha256: 99c320a0fef3bdae732b05f843401fdc6fb931f366b2de7480556346096604f7
Contents?: true
Size: 700 Bytes
Versions: 46
Compression:
Stored size: 700 Bytes
Contents
module Scimitar module Schema # Represents the schema for the X509Certificate complex type. # The 'value' holds the certificate data. # # Similar to the Vdtp class, but the "value" field is of type "binary". # # See also Scimitar::ComplexTypes::X509Certificate # class X509Certificate < Base def self.scim_attributes @scim_attributes ||= [ Attribute.new(name: 'value', type: 'binary', required: true), Attribute.new(name: 'display', type: 'string', mutability: 'readOnly'), Attribute.new(name: 'type', type: 'string'), Attribute.new(name: 'primary', type: 'boolean'), ] end end end end
Version data entries
46 entries across 46 versions & 2 rubygems