Class: Io::Flow::V0::Models::PermissionAudit

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Returns all known permissions, along with their authorization technique and all of the roles which contain them.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ PermissionAudit

Returns a new instance of PermissionAudit.



54970
54971
54972
54973
54974
54975
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54970

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:routes, :behaviors], 'PermissionAudit')
  @routes = HttpClient::Preconditions.assert_class('routes', opts.delete(:routes), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::RouteAudit) ? x : ::Io::Flow::V0::Models::RouteAudit.new(x)) }
  @behaviors = HttpClient::Preconditions.assert_class('behaviors', opts.delete(:behaviors), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::BehaviorAudit) ? x : ::Io::Flow::V0::Models::BehaviorAudit.new(x)) }
end

Instance Attribute Details

#behaviorsObject (readonly)

Returns the value of attribute behaviors.



54968
54969
54970
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54968

def behaviors
  @behaviors
end

#routesObject (readonly)

Returns the value of attribute routes.



54968
54969
54970
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54968

def routes
  @routes
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



54981
54982
54983
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54981

def copy(incoming={})
  PermissionAudit.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



54985
54986
54987
54988
54989
54990
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54985

def to_hash
  {
    :routes => routes.map { |o| o.to_hash },
    :behaviors => behaviors.map { |o| o.to_hash }
  }
end

#to_jsonObject



54977
54978
54979
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54977

def to_json
  JSON.dump(to_hash)
end