class RuboCop::Cop::Chef::Correctness::ResourceSetsInternalProperties

Chef Infra Client uses properties in several resources to track state. These should not be set in recipes as they break the internal workings of the Chef Infra Client

@example

### incorrect
service 'foo' do
  running true
  action [:start, :enable]
end

### correct
service 'foo' do
  action [:start, :enable]
end