Class: SDM::RequestableResource

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

RequestableResource is a resource that can be requested via an AccessRequestConfig

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(access: nil, authentication: nil, healthy: nil, id: nil, name: nil, tags: nil, type: nil) ⇒ RequestableResource

Returns a new instance of RequestableResource.



15953
15954
15955
15956
15957
15958
15959
15960
15961
15962
15963
15964
15965
15966
15967
15968
15969
# File 'lib/models/porcelain.rb', line 15953

def initialize(
  access: nil,
  authentication: nil,
  healthy: nil,
  id: nil,
  name: nil,
  tags: nil,
  type: nil
)
  @access = access == nil ? "" : access
  @authentication = authentication == nil ? "" : authentication
  @healthy = healthy == nil ? false : healthy
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
  @type = type == nil ? "" : type
end

Instance Attribute Details

#access ⇒ Object

The current state of the user's access to the resources



15939
15940
15941
# File 'lib/models/porcelain.rb', line 15939

def access
  @access
end

#authentication ⇒ Object

The type of authentication for the resource



15941
15942
15943
# File 'lib/models/porcelain.rb', line 15941

def authentication
  @authentication
end

#healthy ⇒ Object

The health check status of the reasource



15943
15944
15945
# File 'lib/models/porcelain.rb', line 15943

def healthy
  @healthy
end

#id ⇒ Object

The resource id.



15945
15946
15947
# File 'lib/models/porcelain.rb', line 15945

def id
  @id
end

#name ⇒ Object

The resource name.



15947
15948
15949
# File 'lib/models/porcelain.rb', line 15947

def name
  @name
end

#tags ⇒ Object

Any tags attached to this resource



15949
15950
15951
# File 'lib/models/porcelain.rb', line 15949

def tags
  @tags
end

#type ⇒ Object

The resource type



15951
15952
15953
# File 'lib/models/porcelain.rb', line 15951

def type
  @type
end

Instance Method Details

#to_json(options = {}) ⇒ Object



15971
15972
15973
15974
15975
15976
15977
# File 'lib/models/porcelain.rb', line 15971

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end