Sha256: 43ba0842eefd27f7d190288dab0ef218b584df46771f3f802c69c8d40dfa444d

Contents?: true

Size: 1.34 KB

Versions: 65

Compression:

Stored size: 1.34 KB

Contents

class Chef
  class Provider

    # {
    #    "run_id" : "1000",
    #    "resource" : {
    #         "type" : "file",
    #         "name" : "/etc/passwd",
    #         "start_time" : "2012-01-09T08:15:30-05:00",
    #         "end_time" : "2012-01-09T08:15:30-05:00",
    #         "status" : "modified",
    #         "initial_state" : "exists",
    #         "final_state" : "modified",
    #         "before" : {
    #              "group" : "root",
    #              "owner" : "root",
    #              "checksum" : "xyz"
    #         },
    #         "after" : {
    #              "group" : "root",
    #              "owner" : "root",
    #              "checksum" : "abc"
    #         },
    #         "delta" : "escaped delta goes here"
    #    },
    #    "event_data" : ""
    # }

    class ResourceUpdate

      attr_accessor :type
      attr_accessor :name
      attr_accessor :duration #ms
      attr_accessor :status
      attr_accessor :initial_state
      attr_accessor :final_state
      attr_accessor :initial_properties
      attr_accessor :final_properties
      attr_accessor :event_data # e.g., a diff.

      def initial_state_from_resource(resource)
        @initial_properties = resource.to_hash
      end

      def updated_state_from_resource(resource)
        @final_properties = resource.to_hash
      end

    end
  end
end



Version data entries

65 entries across 65 versions & 1 rubygems

Version Path
chef-11.18.12-x86-mingw32 lib/chef/provider/resource_update.rb
chef-11.18.12 lib/chef/provider/resource_update.rb
chef-11.18.6-x86-mingw32 lib/chef/provider/resource_update.rb
chef-11.18.6 lib/chef/provider/resource_update.rb
chef-11.18.0-x86-mingw32 lib/chef/provider/resource_update.rb
chef-11.18.0 lib/chef/provider/resource_update.rb
chef-11.16.4-x86-mingw32 lib/chef/provider/resource_update.rb
chef-11.16.4 lib/chef/provider/resource_update.rb
chef-11.16.2-x86-mingw32 lib/chef/provider/resource_update.rb
chef-11.16.2 lib/chef/provider/resource_update.rb
chef-11.16.0-x86-mingw32 lib/chef/provider/resource_update.rb
chef-11.16.0 lib/chef/provider/resource_update.rb
chef-11.16.0.rc.0 lib/chef/provider/resource_update.rb
chef-11.14.6-x86-mingw32 lib/chef/provider/resource_update.rb
chef-11.14.6 lib/chef/provider/resource_update.rb
chef-11.14.2-x86-mingw32 lib/chef/provider/resource_update.rb
chef-11.14.2 lib/chef/provider/resource_update.rb
chef-11.14.0.rc.2-x86-mingw32 lib/chef/provider/resource_update.rb
chef-11.14.0.rc.2 lib/chef/provider/resource_update.rb
chef-11.14.0.alpha.4 lib/chef/provider/resource_update.rb