Sha256: 900a8505083093e4bfef452912b964e374d0267c166c3df2152573ae53fb3c6b

Contents?: true

Size: 1.33 KB

Versions: 139

Compression:

Stored size: 1.33 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

139 entries across 139 versions & 1 rubygems

Version Path
chef-13.12.14 lib/chef/provider/resource_update.rb
chef-13.12.3 lib/chef/provider/resource_update.rb
chef-13.11.3 lib/chef/provider/resource_update.rb
chef-13.10.4 lib/chef/provider/resource_update.rb
chef-13.10.0 lib/chef/provider/resource_update.rb
chef-13.9.4 lib/chef/provider/resource_update.rb
chef-14.2.0 lib/chef/provider/resource_update.rb
chef-12.22.5 lib/chef/provider/resource_update.rb
chef-12.22.5-universal-mingw32 lib/chef/provider/resource_update.rb
chef-14.1.12 lib/chef/provider/resource_update.rb
chef-14.1.1 lib/chef/provider/resource_update.rb
chef-13.9.1 lib/chef/provider/resource_update.rb
chef-14.0.202-universal-mingw32 lib/chef/provider/resource_update.rb
chef-14.0.202 lib/chef/provider/resource_update.rb
chef-12.22.3 lib/chef/provider/resource_update.rb
chef-12.22.3-universal-mingw32 lib/chef/provider/resource_update.rb
chef-14.0.190 lib/chef/provider/resource_update.rb
chef-13.8.5 lib/chef/provider/resource_update.rb
chef-13.8.3 lib/chef/provider/resource_update.rb
chef-13.8.0 lib/chef/provider/resource_update.rb