Sha256: b9a384ae6477c1846cf944cecbf1cd0b89a3d939cdebb2fbfb9fc1bc29556743
Contents?: true
Size: 701 Bytes
Versions: 16
Compression:
Stored size: 701 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], value => 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
16 entries across 16 versions & 1 rubygems