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.



8745
8746
8747
8748
8749
8750
8751
8752
8753
8754
8755
8756
8757
8758
8759
8760
8761
# File 'lib/models/porcelain.rb', line 8745

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



8731
8732
8733
# File 'lib/models/porcelain.rb', line 8731

def access
  @access
end

#authenticationObject

The type of authentication for the resource



8733
8734
8735
# File 'lib/models/porcelain.rb', line 8733

def authentication
  @authentication
end

#healthyObject

The health check status of the reasource



8735
8736
8737
# File 'lib/models/porcelain.rb', line 8735

def healthy
  @healthy
end

#idObject

The resource id.



8737
8738
8739
# File 'lib/models/porcelain.rb', line 8737

def id
  @id
end

#nameObject

The resource name.



8739
8740
8741
# File 'lib/models/porcelain.rb', line 8739

def name
  @name
end

#tagsObject

Any tags attached to this resource



8741
8742
8743
# File 'lib/models/porcelain.rb', line 8741

def tags
  @tags
end

#typeObject

The resource type



8743
8744
8745
# File 'lib/models/porcelain.rb', line 8743

def type
  @type
end

Instance Method Details

#to_json(options = {}) ⇒ Object



8763
8764
8765
8766
8767
8768
8769
# File 'lib/models/porcelain.rb', line 8763

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