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.



8827
8828
8829
8830
8831
8832
8833
8834
8835
8836
8837
8838
8839
8840
8841
8842
8843
# File 'lib/models/porcelain.rb', line 8827

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



8813
8814
8815
# File 'lib/models/porcelain.rb', line 8813

def access
  @access
end

#authenticationObject

The type of authentication for the resource



8815
8816
8817
# File 'lib/models/porcelain.rb', line 8815

def authentication
  @authentication
end

#healthyObject

The health check status of the reasource



8817
8818
8819
# File 'lib/models/porcelain.rb', line 8817

def healthy
  @healthy
end

#idObject

The resource id.



8819
8820
8821
# File 'lib/models/porcelain.rb', line 8819

def id
  @id
end

#nameObject

The resource name.



8821
8822
8823
# File 'lib/models/porcelain.rb', line 8821

def name
  @name
end

#tagsObject

Any tags attached to this resource



8823
8824
8825
# File 'lib/models/porcelain.rb', line 8823

def tags
  @tags
end

#typeObject

The resource type



8825
8826
8827
# File 'lib/models/porcelain.rb', line 8825

def type
  @type
end

Instance Method Details

#to_json(options = {}) ⇒ Object



8845
8846
8847
8848
8849
8850
8851
# File 'lib/models/porcelain.rb', line 8845

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