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.



8001
8002
8003
8004
8005
8006
8007
8008
8009
8010
8011
8012
8013
8014
8015
8016
8017
# File 'lib/models/porcelain.rb', line 8001

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

#accessObject

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



7987
7988
7989
# File 'lib/models/porcelain.rb', line 7987

def access
  @access
end

#authenticationObject

The type of authentication for the resource



7989
7990
7991
# File 'lib/models/porcelain.rb', line 7989

def authentication
  @authentication
end

#healthyObject

The health check status of the reasource



7991
7992
7993
# File 'lib/models/porcelain.rb', line 7991

def healthy
  @healthy
end

#idObject

The resource id.



7993
7994
7995
# File 'lib/models/porcelain.rb', line 7993

def id
  @id
end

#nameObject

The resource name.



7995
7996
7997
# File 'lib/models/porcelain.rb', line 7995

def name
  @name
end

#tagsObject

Any tags attached to this resource



7997
7998
7999
# File 'lib/models/porcelain.rb', line 7997

def tags
  @tags
end

#typeObject

The resource type



7999
8000
8001
# File 'lib/models/porcelain.rb', line 7999

def type
  @type
end

Instance Method Details

#to_json(options = {}) ⇒ Object



8019
8020
8021
8022
8023
8024
8025
# File 'lib/models/porcelain.rb', line 8019

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