Sha256: 43e72ffae7419a5a67075e03f9530aa8ea94461a9cd22a722e368cb6532ee25c
Contents?: true
Size: 776 Bytes
Versions: 32
Compression:
Stored size: 776 Bytes
Contents
# frozen_string_literal: true Puppet::DataTypes.create_type('Error') do interface <<-PUPPET type_parameters => { kind => Optional[Variant[String,Regexp,Type[Enum],Type[Pattern],Type[NotUndef],Type[Undef]]], issue_code => Optional[Variant[String,Regexp,Type[Enum],Type[Pattern],Type[NotUndef],Type[Undef]]] }, attributes => { msg => String[1], kind => { type => Optional[String[1]], value => undef }, details => { type => Optional[Hash[String[1],Data]], value => undef }, issue_code => { type => Optional[String[1]], value => undef }, }, functions => { message => Callable[[], String[1]] } PUPPET require_relative '../../puppet/datatypes/impl/error' implementation_class Puppet::DataTypes::Error end
Version data entries
32 entries across 32 versions & 1 rubygems