Sha256: f987b066fd248425d129f88fe5c6dc3fb2ec7bc0c682f062880482bc8404387b
Contents?: true
Size: 667 Bytes
Versions: 28
Compression:
Stored size: 667 Bytes
Contents
# frozen_string_literal: true Puppet::DataTypes.create_type('ApplyResult') do interface <<-PUPPET attributes => { 'report' => Hash[String[1], Data], 'target' => Target }, functions => { error => Callable[[], Optional[Error]], ok => Callable[[], Boolean], message => Callable[[], Optional[String]], action => Callable[[], String], to_data => Callable[[], Hash], } PUPPET load_file('bolt/apply_result') # Needed for Puppet to recognize Bolt::ApplyResult as a Puppet object when deserializing Bolt::ApplyResult.include(Puppet::Pops::Types::PuppetObject) implementation_class Bolt::ApplyResult end
Version data entries
28 entries across 28 versions & 1 rubygems